summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrescue/drvinst73
-rw-r--r--rescue/list5
-rw-r--r--rescue/list.i3862
-rwxr-xr-xrescue/make_rescue_img9
4 files changed, 87 insertions, 2 deletions
diff --git a/rescue/drvinst b/rescue/drvinst
new file mode 100755
index 000000000..5abd220b1
--- /dev/null
+++ b/rescue/drvinst
@@ -0,0 +1,73 @@
+#!/usr/bin/perl
+
+#
+# Guillaume Cottenceau (gc@mandrakesoft.com)
+#
+# Copyright 2000 MandrakeSoft
+#
+# This software may be freely redistributed under the terms of the GNU
+# public license.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+#
+
+local $_ = join '', @ARGV;
+
+"@ARGV" =~ /-h/ and die "usage: drivers_install [drivertype1 drivertype2..]\n";
+
+
+sub pci_probe {
+ my @pci;
+ foreach (`/usr/bin/lspcidrake`) {
+ my %pci_entry;
+ if (/^(\S+)\s*: (.+) \[([^\]]+)/) {
+ $pci_entry{driver} = $1;
+ $pci_entry{description} = $2;
+ $pci_entry{type} = $3;
+ } elsif (/^(\S+)\s*: (.+)/) {
+ $pci_entry{driver} = $1;
+ $pci_entry{description} = $2;
+ $pci_entry{type} = "NOT_DEFINED";
+ } else {
+ next;
+ }
+ push @pci, \%pci_entry;
+ }
+ \@pci;
+}
+
+sub install_module($$) {
+ my ($driver, $descr) = @_;
+ print "Installing driver $driver (for \"$descr\")\n";
+ system("/sbin/modprobe $driver") and print "\tfailed\n";
+}
+
+
+#- start
+
+my $pci = pci_probe();
+
+foreach $pci_card (@$pci) {
+
+ $pci_card->{type} eq "DISPLAY_VGA" and next;
+ $pci_card->{driver} eq "unknown" and next;
+
+ if ($#ARGV != -1) {
+ $pci_card->{type} =~ /$_/i and install_module($pci_card->{driver}, $pci_card->{description}) foreach (@ARGV);
+ } else {
+ install_module($pci_card->{driver}, $pci_card->{description});
+ }
+}
+
+
+
+#-------------------------------------------------
+#- $Log$
+#- Revision 1.1 2001/02/12 14:31:10 uid535
+#- - add lspci, lspcidrake, vim-minimal
+#- - better /etc/issue
+#- - better PS1
+#- - write embryonic tool (installation of detected drivers according to pci cards)
+#-
diff --git a/rescue/list b/rescue/list
index d0d59bb8c..c9a28ec86 100644
--- a/rescue/list
+++ b/rescue/list
@@ -131,3 +131,8 @@
/usr/lib/perl5/5.6.0/warnings.pm
/usr/lib/perl5/5.6.0/Carp.pm
/usr/lib/perl5/5.6.0/Exporter.pm
+/usr/bin/lspci
+/usr/share/pci.ids
+/usr/bin/lspcidrake
+/usr/share/ldetect-lst/pcitable
+/bin/vim-minimal
diff --git a/rescue/list.i386 b/rescue/list.i386
index de2ee38c1..0170ca4d9 100644
--- a/rescue/list.i386
+++ b/rescue/list.i386
@@ -1,8 +1,6 @@
/usr/sbin/ext2resize
/usr/sbin/rescuept
/sbin/mkreiserfs
-/usr/bin/lspci
-/usr/share/pci.ids
/boot/grub/stage[12]
/usr/lib/perl5/5.6.0/i386-linux/CORE/libperl.so
/usr/lib/perl5/site_perl/5.6.0/i386-linux/packdrake.pm
diff --git a/rescue/make_rescue_img b/rescue/make_rescue_img
index a26fa7f2c..8d35efe5a 100755
--- a/rescue/make_rescue_img
+++ b/rescue/make_rescue_img
@@ -31,6 +31,13 @@ sub install_ {
sub install { install_($_[0], "-a") }
sub install_lib { install_($_[0], "") }
+sub installown($$) {
+ my ($own, $dir) = @_;
+ return if -e "$tmp$dir$own";
+ commands::mkdir_("-p", "$tmp$dir") unless -d "$tmp$dir";
+ _ "$sudo cp -a $own $tmp$dir";
+}
+
_ "$sudo rm -rf $tmp" if -e $tmp;
_ "mkdir $tmp";
_ 'find . -name "*~" | xargs rm -f';
@@ -58,6 +65,8 @@ foreach (cat_("aliases")) {
}
_ "cp ../modules/modules.{cz*,dep} $tmp/modules";
+installown("drvinst", "/usr/bin");
+
_ "install -s kernel_read_part $tmp/sbin" if $arch =~ /i.86/;
__ "$sudo strip $tmp/{lib,bin,sbin}/* $tmp/usr/{bin,sbin}/* 2>/dev/null";
e4da2db04cfd190f4ac913a0d7ead0024'>perl-install/share/po/eu.po2993
-rw-r--r--perl-install/share/po/fi.po1818
-rw-r--r--perl-install/share/po/ga.po1802
-rw-r--r--perl-install/share/po/gl.po1819
-rw-r--r--perl-install/share/po/hr.po1816
-rw-r--r--perl-install/share/po/id.po2762
-rw-r--r--perl-install/share/po/is.po1818
-rw-r--r--perl-install/share/po/it.po1851
-rw-r--r--perl-install/share/po/ja.po3557
-rw-r--r--perl-install/share/po/ko.po2494
-rw-r--r--perl-install/share/po/lt.po1823
-rw-r--r--perl-install/share/po/lv.po1820
-rw-r--r--perl-install/share/po/nl.po2884
-rw-r--r--perl-install/share/po/no.po6
-rw-r--r--perl-install/share/po/pt.po2283
-rw-r--r--perl-install/share/po/pt_BR.po1820
-rw-r--r--perl-install/share/po/ro.po1814
-rw-r--r--perl-install/share/po/ru.po4329
-rw-r--r--perl-install/share/po/sk.po2035
-rw-r--r--perl-install/share/po/sl.po1807
-rw-r--r--perl-install/share/po/sp.po6
-rw-r--r--perl-install/share/po/sr.po1842
-rw-r--r--perl-install/share/po/sv.po1856
-rw-r--r--perl-install/share/po/ta.po1832
-rw-r--r--perl-install/share/po/th.po1820
-rw-r--r--perl-install/share/po/uk.po1818
-rw-r--r--perl-install/share/po/wa.po1904
-rw-r--r--perl-install/share/po/zh_CN.po1854
-rw-r--r--perl-install/share/po/zh_TW.po1854
43 files changed, 45109 insertions, 36793 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index 27f15028d..cbb4b8881 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -8359,7 +8359,7 @@ msgstr ""
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8399,7 +8399,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8414,7 +8414,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 6d0e74db9..539d53dcd 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -91,24 +91,24 @@ msgstr "Konfigureer skyfkoppe afsonderlik"
msgid "Use Xinerama extension"
msgstr "Gebruik Xinerama-ekstensies"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigureer net die \"%s\" kaart (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,13 +150,13 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installasievertoondrywer)"
#
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Aangepaste"
@@ -177,32 +177,32 @@ msgstr "Resolusie"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlaat"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr "Kies die resolusie en kleurdiepte"
msgid "Graphics card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Kanselleer"
@@ -394,11 +394,11 @@ msgstr "XFree86 bediener: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X met herlaai"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Watter tipe is u ISDN-konneksie?"
@@ -492,7 +492,7 @@ msgstr "Kompak"
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Videomodus"
@@ -500,17 +500,17 @@ msgstr "Videomodus"
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Wagwoord (weer)"
@@ -545,14 +545,14 @@ msgid ""
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
@@ -589,7 +589,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -597,156 +597,156 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Verander"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ander bedryfstelsel (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grootte"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Geen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "U moet oor 'n ruilpartisie beskik"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -757,17 +757,17 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Module opsies:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -783,15 +783,15 @@ msgstr ""
"rekenaar self daarvoor aftas. In uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -800,63 +800,63 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s alreeds bygevoeg)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Die wagwoorde is te eenvoudig"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Gee asb. 'n gebruikerskode"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Hierdie genruikerskode bestaan alreeds"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Voeg gebruiker by"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Tik 'n gebruiker in\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aanvaar gebruiker"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Regte naam"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikerskode"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Dop"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Outointeken"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -898,60 +898,60 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
"Verlang u hierdie funksionaliteit?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Kies die verstek gebruiker:"
#
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Kies die vensterbestuurder om te loop:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Voeg 'n gebruiker by"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS word gelaai"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Krakers welkom"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Swak"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Hoog"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoďes"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1007,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1015,7 +1015,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1025,13 +1025,13 @@ msgstr ""
"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1045,7 +1045,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
"af kan aanvaar."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opsies"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Selekteer opsies vir bediener"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1119,13 +1119,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1134,45 +1134,45 @@ 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:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Werkskerm"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Gee hulp beskikbaar nie (nog nie).\n"
@@ -1224,106 +1224,106 @@ msgstr "LILO/GRUB metode"
msgid "Yaboot mode"
msgstr "Yaboot metode"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Installeer stelsel"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Kies 'n nuwe grootte"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Geen video"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Kies installasieklas"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1332,22 +1332,22 @@ msgstr ""
"U gebruik huidig %s as herlaaibestuurder.\n"
"Kliek op Konfigureer om opstelassistent te laai."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigureer"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Stoor pakketseleksie"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1356,44 +1356,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Stelselmode"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Laai X-Windowstelsel met herlaai"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nee, ek verlang outo-aanteken"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ek verlang outoaanteken met hierdie (gebruiker,werkskerm)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan nie /etc/inittab oopmaak vir lees nie: %s"
@@ -1497,26 +1497,34 @@ msgstr "seriaal"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nuut"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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
@@ -1524,27 +1532,27 @@ msgid "Mount point"
msgstr "Hegpunt"
#
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Toets asb. die muis"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Bediener"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opsies: %s"
@@ -1633,7 +1641,7 @@ msgstr "Leeg"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ander"
@@ -1781,7 +1789,7 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Waarskuwing"
@@ -2343,7 +2351,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:3529
#, fuzzy
msgid "Username"
msgstr "Gebruikerskode"
@@ -2358,23 +2366,23 @@ msgstr "NIS-domein"
msgid "Search servers"
msgstr "DNS bediener"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
@@ -2460,47 +2468,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Konfigurasie"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Drywer"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Wag asb... Konfigurasie word toegpas"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Wag asb."
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Onbekende model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2627,7 +2698,8 @@ msgid "/_Quit"
msgstr "Verlaat"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Help"
@@ -2647,76 +2719,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Help/_Aangaande..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Aftas"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Hardeskyfdeteksie."
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Sien hardeware inligting"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Vertoon inligting"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Stel muistoestel op"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Op poort %s bespeur"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Wag asb."
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Drukkerdata word gelees..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekondes"
@@ -3854,7 +3927,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3869,7 +3942,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3878,20 +3951,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sit 'n FAT-geformatteerde skyf in aandrywer %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Hierdie floppie is nie in FAT-formaat nie"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3899,12 +3972,12 @@ msgstr ""
"Om hierdie gestoorde pakketkeuse te gebruik, herlaai die installasie met "
"\"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../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
+#: ../../install_any.pm_.c:1030
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"
@@ -4146,7 +4219,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
@@ -4179,11 +4252,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuele pakketseleksie"
@@ -4263,7 +4336,7 @@ msgstr "Wys outogeselekteerde pakkette."
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installasie"
@@ -4283,7 +4356,7 @@ msgstr "Minimale installasie"
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Besig met installasie"
@@ -4311,18 +4384,18 @@ msgstr "Installeer pakket %s"
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aanvaar "
#
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Weier"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4338,16 +4411,16 @@ msgstr ""
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
@@ -4444,7 +4517,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4522,7 +4595,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Sleutelbord"
@@ -4733,31 +4806,31 @@ msgstr "Sit 'n floppie met die pakketkeuse in aandrywer "
msgid "Selected size is larger than available space"
msgstr "Geselekteerde grootte is groter as beskikbare spasie."
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Kies pakket om te installeer"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Wag"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4767,16 +4840,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4785,21 +4858,21 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4869,7 +4942,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4881,159 +4954,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
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:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardewareklok gestel vir GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Outotydsinkronisasie met NTP"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-bediener"
#
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Geen drukker"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Beskik u oor nog?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Opsomming"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tydsone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Klankkaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kaaer"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "KDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Plaaslike lęers"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Kies 'root' se wagwoord"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Geen wagwoord"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Magtiging"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Basis-dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-bediener"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS-magtiging"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5049,21 +5122,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP-magtiging"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeinnaam"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5090,19 +5163,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5126,7 +5199,7 @@ msgstr ""
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5135,28 +5208,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5164,11 +5237,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5176,15 +5249,15 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Herlaaistelselinstallasie"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5195,17 +5268,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5215,7 +5288,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5247,15 +5320,15 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Skep outoinstallasieskyf"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5264,15 +5337,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Outomaties"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Herspeel"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Stoor pakketseleksie"
@@ -5308,14 +5381,14 @@ msgstr "Gevorderd"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Teks"
@@ -5763,7 +5836,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Sirkulęre heg %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Verwyder eers die logiese volumes\n"
@@ -5903,16 +5976,16 @@ msgid "No mouse"
msgstr "Geen muis"
#
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Om die muis te aktiveer"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEEG DIE WIEL!"
@@ -5949,11 +6022,11 @@ msgstr "Maak boom toe"
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -5963,24 +6036,20 @@ msgstr ""
"Daar is wel sekere konneksie wat pptp of DHCP gebruik.\n"
"Indien u nie weet nie, kies 'gebruik pppoe'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "Alcatel speedtouch usb"
msgstr "speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "gebruik dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "gebruik pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "gebruik pptp"
@@ -6075,7 +6144,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:362
msgid "Configuring network"
msgstr "Stel netwerk op"
@@ -6092,15 +6161,15 @@ 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:367
msgid "Host name"
msgstr "Rekenaarnaam"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netwerkkonfigurasie-assistent"
@@ -6138,8 +6207,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Ou konfigurasie (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Konfigurasie"
@@ -6176,23 +6245,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Watter protokol verlang u?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Oor watter tipe kaart beskik u?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ek weet nie"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6206,19 +6280,19 @@ msgstr ""
"\n"
"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Aborteer"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Gaan voort"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Wat is u ISDN-kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6226,7 +6300,7 @@ msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
@@ -6278,7 +6352,7 @@ msgstr "Eerste DNS-bediener (opsioneel)"
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-bediener (opsioneel)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6286,7 +6360,7 @@ msgstr ""
"\n"
"U kan diskonnekteer or herkonfigureer."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6294,11 +6368,11 @@ msgstr ""
"\n"
"U kan u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "U is tans aan die internet gekonnekteer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6306,33 +6380,33 @@ msgstr ""
"\n"
"U kan aan die internet konnekter of u konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "U is nie tans aan die internet gekonnekteer nie."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konnekteer"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Diskonnekteer"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Stel netwerk op"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ons gaan nou die %s konneksie herkonfigureer."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6351,12 +6425,12 @@ msgstr ""
"\n"
"Drk OK om voort te gaan."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6367,7 +6441,7 @@ msgstr ""
"Kliek op OK om hierdee konfigurasie te behou, of op Kanselleer om u Internet "
"& Netwerkkonneksie te herkonfigureer.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6379,72 +6453,72 @@ msgstr ""
"Ons gaan nou u internet/netwerkkonneksie konfigureer.\n"
"Iniden u nie outobespeuring verlang nie, deselekteer die opsie.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Kies die profiel om te konfigureer"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Gebruik outobespeuring"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Toestel word afgetas..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale modemkonneksie"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "Op poort %s bespeur"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konneksie"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s bespeur"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konneksie"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "op koppelvlak %s bespeur"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelkonneksie"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabelkonneksie bespeur"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN konneksie"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(e) bespeur"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Kies die konneksie wat u wil konfigureer"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6454,23 +6528,23 @@ msgstr ""
"Kies die een wat u verlang.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internetkonneksie"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Wil u die konneksie met herlaaityd aanskakel?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6481,7 +6555,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6491,7 +6565,7 @@ msgstr ""
"\n"
"Die kongiurasie gaan op u stelsel toegepas word.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6499,14 +6573,14 @@ msgstr ""
"Nadat dit klaar is, sal dit beter wes om u X-omgewing te herlaai\n"
"om die rekenaarnaamveranderingprobleem te voorkom."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6518,7 +6592,7 @@ msgstr ""
"U kan die toestel net so aanvaar.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6528,45 +6602,45 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(drywer %s)"
#
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Outomatiese IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Gelaai tydens herlaaityd"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6578,42 +6652,53 @@ 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:368
msgid "DNS server"
msgstr "DNS bediener"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-adres moet in 1.2.3.4. formaat wees"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Volg netwerkkart ID. (nuttig vir skootrekenaars)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Instaanbediener moet begin met ftp://"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Instaanbediener moet begin met http://"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8018,7 +8103,7 @@ msgstr "Netwerk op pad af"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8526,11 +8611,6 @@ msgstr ""
"Vul asb. die FTP-instaanbediener inligting in\n"
"Los dit oop indien u nie FTP-instaanbediener verlang nie"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Instaanbediener moet begin met http://"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8576,6 +8656,43 @@ msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Eksterne lpd drukkeropsies"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Verstek)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Sekuriteitsvlak word gestel."
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Wag asb. installasie word voorberei"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Loop die ALSA (Gevorderde Linux Klankargitektuur) klankstelsel"
@@ -8874,7 +8991,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Stelselmode"
@@ -8968,7 +9085,7 @@ msgstr "Konnekteer aan die internet"
#: ../../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"
msgstr ""
@@ -9015,7 +9132,7 @@ msgstr "Netwerkkoppelvlak"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9040,7 +9157,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9056,7 +9173,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9071,7 +9188,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9120,8 +9237,8 @@ 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 your 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
@@ -9158,11 +9275,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installeer pakket %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
@@ -9210,16 +9327,6 @@ msgstr "Voeg gebruiker by"
msgid "Add/Del Clients"
msgstr "DHCP-Kliënt"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9272,53 +9379,68 @@ msgstr "Voeg gebruiker by"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-Kliënt"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurasie in aabou..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Sluit konfigurasie af"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "herkonfigureer"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Sit 'n herlaaiskyf wat gebruik is, in aandrywer %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9441,13 +9563,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Toetsbladsye"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9456,41 +9578,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Kan nie %s oopmaak nie: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9501,68 +9623,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9570,831 +9692,833 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Fout met die les van lęer %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakketkeuse"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, 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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Verwyder Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Probeer asb. weer"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Geen wagwoord"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Wat is u sleutelborduitleg?"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Oordrag"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kliek asb. op 'n partisie"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Selekteer lOer"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Netwerkkoppelvlak"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipe"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Wag"
#
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wiel"
#
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wiel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Module opsies:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Stel lęerstelsels op"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Muistoestel: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opsies"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Korrupte rugsteunlęer"
#
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Toets asb. die muis"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN konneksie"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Ander"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Installeer stelsel"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Wat is u muistoestel?"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Verwyder tou"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Herstel vanaf floppie"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Rekenaarnaam"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Wagwoord"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Gebruikerskode"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Bedienernaam:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Aangepaste"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Reddingspartisietabel"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Vorige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Toestand"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Herstel vanaf lęer"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10402,102 +10526,102 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Korrupte rugsteunlęer"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Stoor in lęer"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netwerkkonfigurasie"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Konfigurasie"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Sluit konfigurasie af"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Stel lęerstelsels op"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10529,7 +10653,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10538,7 +10662,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10579,7 +10703,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10607,17 +10731,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10634,7 +10758,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10674,7 +10798,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10685,7 +10809,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10698,7 +10822,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10780,8 +10904,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsole hulpprogramme"
@@ -10858,28 +10982,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Poort"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Verlaay installasie"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
@@ -10979,10 +11103,6 @@ msgstr "Assistent..."
msgid "Apply"
msgstr "Pas toe"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Wag asb... Konfigurasie word toegpas"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Gekonnekteer"
@@ -11096,7 +11216,7 @@ msgstr "Modulenaam"
msgid "Size"
msgstr "Grootte"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11161,12 +11281,12 @@ msgstr "Uitset"
msgid "Build the disk"
msgstr "Bou die skyf"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "versker asb dat die regte mediatipe vir toestel %s beskikbaar is"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11175,12 +11295,12 @@ msgstr ""
"Daar is geen medium for toestel %s nie.\n"
"Sit asb. een in."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kon nie vurk nie: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11662,157 +11782,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Werkgroep:"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partisie %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Uitwis"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Klaar"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Voeg module by"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Voeg drukker by"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Verwyder tou"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Aanvaar gebruiker"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Weergawe: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Poort"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Gebruik outobespeuring"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Stoor pakketseleksie"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Gebruikerskode"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Werkgroep:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nie gekonnekteer nieKabelkonneksie"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11824,137 +11944,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "herlaaiskyfskepping"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolusie"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Kies 'n lęer"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Drukkernaam:"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Teruglus"
+msgid "Preview"
+msgstr "toestel"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "toestel"
+msgid "Save theme"
+msgstr "Installeer stelsel"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Kies 'n monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Drukkermodelkeuse"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Tik drukkertoestel URI in"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Toestel word afgetas..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12095,6 +12225,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "gebruik: keyboarddrake [--expert] [SleutelbordNaam]\n"
@@ -12125,11 +12262,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Kon nie die intydse opgradering begin nie !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12413,16 +12550,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12498,7 +12632,7 @@ msgstr "Installeer stelsel"
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12750,6 +12884,21 @@ msgstr "Multimedia - CD Sny"
msgid "Scientific Workstation"
msgstr "Wetenskaplike werkstasie"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Postinstallasiekonfigurasie"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Teruglus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Instaanbediener moet begin met ftp://"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Verlaat"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (werk nie op 'n ou BIOS'e nie)"
@@ -12875,9 +13024,6 @@ msgstr "Wetenskaplike werkstasie"
#~ msgid "Test again"
#~ msgstr "Toets weer"
-#~ msgid "Setting security level"
-#~ msgstr "Sekuriteitsvlak word gestel."
-
#~ msgid "Select a graphics card"
#~ msgstr "Selekteer 'n videokaart"
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index 63f9c0c05..621bd9f70 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-5-12 HO:MI+ZONE\n"
"Last-Translator: Mohammed Gamal <f2c2001@yahoo.com>\n"
"Language-Team: Arabic \n"
@@ -90,24 +90,24 @@ msgstr "اعداد كل الرؤوس بشكل مستقل"
msgid "Use Xinerama extension"
msgstr "استخدام امتداد Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "قم بإعداد البطاقة \"%s\" فقط (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s مع تسريع ثلاثي الأبعاد"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "يمكن لبطاقتك الحصول على دعم للتسريع ثلاثي الأبعاد مع XFree %s"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s مع دعم تجريبي للرسوم ثلاثية الأبعاد"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,12 +148,12 @@ msgstr ""
"يمكن لبطاقتك التمتع بدعم للرسوم ثلاثية الأبعاد مع XFree %s, \n"
"لاحظ أن هذا الدعم تجريبي و قد يتسبب في ايقاف جهازك."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (مشغل عرض التثبيت)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "مخصص"
@@ -174,32 +174,32 @@ msgstr "دقة العرض"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "موافق"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "؎عو؏"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -295,25 +295,25 @@ msgstr "اختر دقة العرض و عمق الألوام"
msgid "Graphics card: %s"
msgstr "بطاقة الشاشة: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "الغاء"
@@ -390,11 +390,11 @@ msgstr "خادم XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "مشغل XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "واجهة رسومية عند بدء التشغيل"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"يمكنني جعل جهازك يبدأ X بشكل آلي بعد الإقلاع.\n"
"هل تريد X أن بيدأ بعد إعادة تشغيل جهازك؟"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -415,7 +415,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr ""
@@ -487,7 +487,7 @@ msgstr "مدمج"
msgid "compact"
msgstr "مدمج"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "وضعية الفيدية"
@@ -495,17 +495,17 @@ msgstr "وضعية الفيدية"
msgid "Delay before booting default image"
msgstr "توقيت ما قبل اقلاع الصورة الافتراضية"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "كلمة المرور"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "كلمة المرور (ثانية)"
@@ -539,14 +539,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "خيار ``تشديد خيارات سطر الأوامر`` بدون قائدة من دون كلمة مرور"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "رجاء جاول مرة أخرى"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "كلمات المرور غير متطابقة"
@@ -583,7 +583,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -591,155 +591,155 @@ msgstr ""
"ها هنا المدخلات المختلفة.\n"
"يمكنك اضافة مدخلات أخرى أو تغيير الموجودين."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ا؜اف؊"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "انتهى"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "تعديل"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "ما نوع المدخل الذي تريد اضافته؟"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "لينكس"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "نظام آخر (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "نظام آخر (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "نظام آخر (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "ؾوع؊"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "الجذر"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "الحاق"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "للقراءة و الكتابة"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "الجدول"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "غير آمن"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "عنوان"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "الإفتراضي"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "حجم Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "لا فيديو"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "ازل المدخل"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "غير مسموح بالعلامات الفارغة"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "يجب أن تحدد صورة النواة"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "يجب عليك تحديد تقسيم جذر"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "هذه العلامة مستخدمة مسبقا"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "تم ايجاد %s %s واجهات"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "هل عندك واحدة أخرى؟"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "هل لديك أي واجهات %s؟"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "لا"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "نعم"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "عرض معلومات العتاد"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "جاري تثبيت مشغل %s للبطاقة %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(الوحدة %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"الخيارات في هيئة ``name=value name2=value2 ...'' \n"
"مثلا, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "خيارات الوحدة:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "أي مشغل %s يجب أن استخدمه؟"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -778,15 +778,15 @@ msgstr ""
"لكن\n"
"لا يجب أن يتسبب ذلك في أي مشاكل."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "تحقق آلي"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "حدد الخيارات"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -795,64 +795,64 @@ msgstr ""
"فشل تحميل الوحدة %s.\n"
"هل تريد المحاولة ثانية بمعاملات أخرى؟"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "الوصول الى برامج X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "اسمح بـ\"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "الوصول الى ملفات الإدارة"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "الوصول الى أدوات rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(تم اضافة %s مسبقا)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "كلمة المرور هذه بسيطة جدا"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "رجاءً قم بإعطاء اسم مستخدم"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "اسم المستخدم يجب أن يحتوي فقط على الحروف الصغيرة, الأرقام, `-' و `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "اسم المستخدم مُضاف مسبقا"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "اضف مستخدم"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -861,32 +861,32 @@ msgstr ""
"أدخل مستخدم\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "وافق على المستخدم"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "الاسم الحقيقي"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "اسم المستخدم"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "الغلاف"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "أيقونة"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "دخول آلي"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -894,54 +894,54 @@ msgstr ""
"يمكنني اعداد جهازك لتسجيل الدخول آليل لمستخدم ما.\n"
"هل تريد استخدام هذه الميزة؟"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "اختر المستخدم الافتراضي:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "اختر مدير النوافذ الذي سيتم تشغيله:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "رجاء اختر لغة الاستخدام."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "الكل"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "اسمح لكل المستخدمين"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "لا مشاركة"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "يمكنك التصدير باستخدام NFS أو Samba. أي منهما تريد"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "الحزمة الضرورية %s مفقودة"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,11 +950,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "شغّل userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -962,56 +962,56 @@ msgstr ""
"المشاركة لكل مستخدم تستخدم المجموعة \"fileshare\".\n"
"يمكنك أن تستخدم userdrake لإضافة مستخدم في هذه المجموعة."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "مرحبا بالمخترقين"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "فقير"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "القياسي"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "مرتفع"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "مرتفع أكثر"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "مرتفع جدا"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1021,40 +1021,40 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
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:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "خيارات"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "مستوى الأمن"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "إستخدم libsafe للملقمات"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1062,7 +1062,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1079,58 +1079,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "سطح المكتب"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "يمكنك تثبيت محمّل الإقلاع على التجزئة %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "لا توجد مساعدة لهذا حتى الآن.\n"
@@ -1182,106 +1182,106 @@ msgstr "و؜ؚ Lilo/grub"
msgid "Yaboot mode"
msgstr "و؜ؚ Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "تثبيت النظام"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "اعمل تجزئة جديدة"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "؎ءأ"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "جاري نسخ %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "لا فيديو"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "اختر نوع التثبيت"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1290,21 +1290,21 @@ msgstr ""
"أنت تستخدم %s كمدير اقلاع حاليا.\n"
"اضغط على تهيئة لتشغيل معالج الإعداد"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "ؼؚداد"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr ""
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1313,44 +1313,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "وضع النظام"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "شغّل X-Window عند بدء التشغيل"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "لا, لا أريد دخولا أليا"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "نعم, أريد دخولا آليا مع هذا )المستخدم, سطح المكتب("
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "موافق"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "لم يمكن فتح /etc/inittab للقراءة: %s"
@@ -1447,53 +1447,61 @@ msgstr "النمسا"
msgid "United States"
msgstr "الولايات المتحدة"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "جديد"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "جهز"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "رجاء أدخل سرعة سواقة كتابة الأقراص"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "خادم"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "نقطة التجهيز: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "الخيارات: %s"
@@ -1584,7 +1592,7 @@ msgstr "فاعغ"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "أخرى"
@@ -1724,7 +1732,7 @@ msgstr ""
"جدول التقسيم المحفوظ ليس بنفس الحجم\n"
"لا زلت تريد الإكمال؟"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "تحذير"
@@ -2254,7 +2262,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:3529
#, fuzzy
msgid "Username"
msgstr "اسم المستخدم"
@@ -2268,23 +2276,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "ابحث في أجهزة الخادم"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s تجهيز %s قد فشل"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "لا أعرف كيف أجهز %s في النوع %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2362,48 +2370,111 @@ msgstr "لا شيئ للعمل"
msgid "Error opening %s for writing: %s"
msgstr " فتحة الخطإ %s للكتابة :%s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr " CUPS اؚدادات"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "المحرك"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "مساعدة"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "من فضلك انتظر"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "مشغل X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "غير معروف"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2528,7 +2599,8 @@ msgid "/_Quit"
msgstr "؎عو؏"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_مساعدة"
@@ -2548,75 +2620,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_تقرير خطأ"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/مساعدة/_حول البرنامج..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "تحقق آلي"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "التحقق من الأقراص الصلبة"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "عرض معلومات العتاد"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "اعرض المعلومات"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "إعداد الفأرة"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "من فضلك انتظر"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "جاري ازالة الطابعة \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d ثوان"
@@ -3719,7 +3792,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3734,7 +3807,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3743,31 +3816,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS لا تسطيع ا ستعمال هذ ا البرنامج مع"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr ""
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -3977,7 +4050,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr ""
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr ""
@@ -4003,11 +4076,11 @@ msgstr ""
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr ""
@@ -4081,7 +4154,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr ""
@@ -4101,7 +4174,7 @@ msgstr ""
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr ""
@@ -4128,17 +4201,17 @@ msgid "Installing package %s"
msgstr ""
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "قبول"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4149,16 +4222,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr ""
@@ -4254,7 +4327,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4332,7 +4405,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "لوحة المفاتيح"
@@ -4532,66 +4605,66 @@ msgstr ""
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4630,7 +4703,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4642,155 +4715,155 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "خادم NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "بطاقة الصّوت ISA هل عندك عند"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "الفأرة"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "ءابؚ؊"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "احصل على خطوط Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "خادم LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr " الخادم NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -4806,21 +4879,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "التحقق"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domain name"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -4838,19 +4911,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "المدخل المرن الثّاني"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "تخطي"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4866,7 +4939,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -4875,28 +4948,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "آسف , لا مدخل مرن متاح"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr " إنشاء قرص الا قلا ع "
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr " bootloader ؼؚداد "
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4904,25 +4977,25 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr " aboot هل تريد أن تستخدم "
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "bootloader التّركيب "
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4933,24 +5006,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4969,16 +5042,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4987,15 +5060,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr ""
@@ -5030,14 +5103,14 @@ msgstr "متقدم"
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "التالي"
@@ -5480,7 +5553,7 @@ msgstr "Right \"Windows\" key"
msgid "Circular mounts %s\n"
msgstr "Circular mounts %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5618,15 +5691,15 @@ msgstr "ولا واحد"
msgid "No mouse"
msgstr "No mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "من فضلك اختبر الفأرة"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "To activate the mouse,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr " WHEEL! حرّك "
@@ -5663,34 +5736,30 @@ msgstr "Collapse Tree"
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "وصّل إلى الإنترنت "
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "use dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "use pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "use pptp"
@@ -5789,7 +5858,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:362
msgid "Configuring network"
msgstr "ا ؚداد شبك؊"
@@ -5801,15 +5870,15 @@ 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:367
msgid "Host name"
msgstr "Host اسم "
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "معالج إعداد الشبكة"
@@ -5847,8 +5916,8 @@ msgid "Old configuration (isdn4net)"
msgstr "إعداد قديم (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN ؼؚداد "
@@ -5880,23 +5949,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr ""
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "لا أعرف "
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5905,25 +5979,25 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "إنهاء"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "تابؚ"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ISDN ما هية بطاقتك"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -5975,54 +6049,54 @@ msgstr "( خادم ا الأوّل ( اختياريّ "
msgid "Second DNS Server (optional)"
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr ""
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "اتصل"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "اقطع الإتصال"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "قم بإعداد الإتصال"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6034,12 +6108,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr ""
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6047,7 +6121,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6055,95 +6129,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN connection"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detected %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "وصلة ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "وصلة LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "وصلة انترنت"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "ا عداد الشّبكة "
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6151,27 +6225,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6179,49 +6253,49 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr ""
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP address"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatic IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "ابدأ عند الإقلاع"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6229,41 +6303,49 @@ 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:368
msgid "DNS server"
msgstr "الخادم DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway device"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxies اؚداد"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../network/shorewall.pm_.c:24
@@ -7584,7 +7666,7 @@ msgstr "جاري الطباعة على الطابعة \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8060,10 +8142,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr ""
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8109,6 +8187,42 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "مستوى الأمن"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "مستوى الأمن"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr ""
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "المرجع"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "جاري ضبط مستوى الأمن"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "رجاء انتظر أثناء عملية ttmkfdir..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8341,7 +8455,7 @@ msgstr "إنترنت"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "نظام"
@@ -8428,7 +8542,7 @@ 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"
msgstr ""
@@ -8476,7 +8590,7 @@ msgstr "واجهات الإستخدام"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8501,7 +8615,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"حوّل ماكينتك إلى خادم قويّ مع/ب فقط نقرات قليلة من ال الفأرة : خادم الويب , "
@@ -8519,7 +8633,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8534,7 +8648,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8583,8 +8697,8 @@ 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 your 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
@@ -8620,11 +8734,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "تركيب طرود ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "يرجى تسجيل الخروج ثم استخدم Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "يرجى اعادة تسجيل الدخول الى %s لتنشيط التغييرات"
@@ -8672,16 +8786,6 @@ msgstr "اضف مستخدم"
msgid "Add/Del Clients"
msgstr "DHCP العميل"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "مساعدة"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -8735,53 +8839,68 @@ msgstr "اضف مستخدم"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP العميل"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "جاري الإعداد..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "إعداد متقدم"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "إعداة الإعداد"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "أدخل قرص مرن بالدّاخل %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "آسف , لا مدخل مرن متاح"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -8898,13 +9017,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8913,41 +9032,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "لا يمكن أن ينفتح %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -8958,64 +9077,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9023,297 +9142,299 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr ""
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "رجاء اختر كل المستخدمين الذين تريد تضمينهم في النسخ الإحتياطي."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "المستخدمون"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "فضلا أدخل اسم المستضيف أو عنوان IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "رجاء أدخل اسم الدخول"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "رجاء كلمة المرور"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "تذكّر كلمة السّرّ هذه "
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "إلى المساعد CD/DVDROM الاستعمال "
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "رجاء اختر مساحة القرص المدمج"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "فضلا قم بالتأشير هنا اذا كنت تستخدم وسيط CDRW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "اختر ملف"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "فيما مضى CDRW من فضلك فحص ,إذا أردت أن تمحو "
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "الشبكة"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "النوع"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "كلّ ساعة "
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "يوميًّا "
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "أسبوعيّا"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "شهريا"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "استخدم المراقب"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -9321,7 +9442,7 @@ msgstr ""
"فضلا اختر الفترة \n"
"ما بين كل عملية نسخ احتياطي"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -9329,78 +9450,78 @@ msgstr ""
"ع؏اإ ا؎تع\n"
"وسيط النسخ الاحتياطي"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "ماذا "
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "أين"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "متى "
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "خيارات أكثر"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "ؼؚدادات Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "رجاء اختر أين تريد النسخ الاحتياطي."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "على القرص الصّلب"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "عبر الشّبكة"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "رجاء اختر ما تريد نسخه احتياطياً"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "نظام المساعد"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "مستخدمو المساعد"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "اخترالمستخدم يدويًّا"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -9408,7 +9529,7 @@ msgstr ""
"\n"
"مصادر المساعد :\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -9416,7 +9537,7 @@ msgstr ""
"\n"
"-ملفّات النّظام :\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -9424,7 +9545,7 @@ msgstr ""
"\n"
"-ملفّات المستخدم:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -9432,7 +9553,7 @@ msgstr ""
"\n"
"-الملفّات الأخرى:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -9441,32 +9562,32 @@ msgstr ""
"\n"
"- احفد القرص الصّلب على الطّريق :%s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "جهاز الفأرة: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -9475,12 +9596,12 @@ msgstr ""
"\n"
"-FTP و على host احفد على: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -9489,14 +9610,14 @@ msgstr ""
"\n"
"-FTP و على host احفد على: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -9504,19 +9625,19 @@ msgstr ""
"\n"
"- خيارات:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackups use tar and bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackups use tar and gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -9525,332 +9646,332 @@ msgstr ""
"\n"
"-Daemon (%s) include :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Network by SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Network by FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr ""
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "اضغط موافق لاستعادة ملفات اخرى"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "قائمة المستخدمين الذين سيتم استعادتهم"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "انسخ ملفات النظام قبل:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "رجاء اختر تاريخ الإستعادة"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "استخدم القرص الصلب للنسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "وصلة FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "وصلة آمنة"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "فضلاً أدخل الدليل الموجودة فيه النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "اختر وسيط آخر للاستعادة منه"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "وسيط آخر"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "استعد النّظام"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "استؚد آ؎ع"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "اختر مسار الإستعادة (بدلاً من / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "قم بنسخ احتياطي جديد فبل الإستعادة (فقط للنسخ الإحتياطية المتدرجة)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "أزل أدلة المستخدمين قبل الإستعادة"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "استؚد آ؎ع"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "استعد من القرص الصلب"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "استعادة جدول التقسيم"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host اسم "
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "كلمة المرور"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "اسم المستخدم"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "اسم المستضيف :"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "استؚد آ؎ع"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "استعد كل النسخ الإحتياطية"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "استعادة مخصصة"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "استعادة جدول التقسيم"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "أعد المستخدمين "
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "السابق"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "حفظ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "ابني النسخة الإحتياطية"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "استؚاد؊"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "الحزمة %s يجب أن تُثبّت. هل تريد تثبيتها؟"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "رجاء اختر تاريخ الإستعادة..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "رجاء اختر وسيط النسخ الإحتياطي..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "رجاء اختر البيانات المطلوب نسخها احتياطيا..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -9858,59 +9979,59 @@ msgstr ""
"لم يتم ايجاد ملف تهيئة \n"
"فضلا اضغط معالج لأو متقدم."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "تحت التطوير ... انتظر فضلا"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "انسخ ملفات النظام"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "انسخ ملفات المستخدم"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "انسخ ملفات أخرى"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "اجمالي التقدم"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "ارسال الملفات عن طريق FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "جاري ارسال الملفات..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "قم بالنسخ الآن من ملف التهيئة"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "اعرض تهيئة النسخ الإحتياطي"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "إعدادات المعالج"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "إعداد متقدم"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "قم بالنسخ الإحتياطي الآن"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -9942,7 +10063,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -9951,7 +10072,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -9992,7 +10113,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10020,19 +10141,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
" جميع الحقوق محفوظة (C) 2001 MandrakeSoft من دوبون سيباستيان <dupont_s"
"\\@epita.fr>"
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10065,7 +10186,7 @@ msgstr ""
"02111-1307,\n"
" USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10105,7 +10226,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10116,7 +10237,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10129,7 +10250,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10211,8 +10332,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "أدوات سطر الأوامر"
@@ -10287,28 +10408,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "استؚاد؊"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "ما بعد ازالة التثبيت"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "ستكون لقطات الشاشة موجودة بعد التثبيت في %s"
@@ -10409,10 +10530,6 @@ msgstr "المعالج..."
msgid "Apply"
msgstr "تطبيق"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "يرجى الإنتظار... جاري تطبيق الإعدادات"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "متّصل "
@@ -10532,7 +10649,7 @@ msgstr "اسم الوحدة"
msgid "Size"
msgstr "حجم"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "دريك للاقراص المرنة"
@@ -10597,12 +10714,12 @@ msgstr "الناتج"
msgid "Build the disk"
msgstr "جهز القرص"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "تأكد من وجود الوسيط للوحدة %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10611,12 +10728,12 @@ msgstr ""
"لا يوجد وسط أو ربما يكون الوسط محمي من القراءة للجهاز %s.\n"
"فضلاً ادخل وسط فى الوحدة."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "تعذر تنفيذ: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11061,154 +11178,154 @@ msgstr ""
"\n"
"اضغط على تهيئة لتشغيل معالج الإعداد."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "مجموعة العمل"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "المستخدم"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "إلغاء"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "انتهى"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "ا؜اف؊ وحد؊"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "أضف طابعة جديدة"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "تم ازالة اختيار الكل"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "ازل المادة المختارة"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "وافق على المستخدم"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr ""
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "البوابة"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "المستخدم"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "مجموعة العمل"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "لم يتم ايجاد بطاقة تلفاز!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -11229,136 +11346,146 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "صنع قرص مرن لبدء النظام"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "دقة العرض"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "إختر ملف"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "اسم المستخدم"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "وحد؊"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "وحد؊"
+msgid "Save theme"
+msgstr "تثبيت النظام"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "ؼ؎تع شاش؊"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "إختيار وحدات الطابعة"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr ""
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "جاري التحقق من الأجهزة ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11502,6 +11629,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "الاستعمال: keyboarddrake [--expert][لوحة المفاتيح]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "الاستعمال: keyboarddrake [--expert][لوحة المفاتيح]\n"
@@ -11530,11 +11664,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "لم أتمكن من بدء الترقية الحية !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "تم عمل التغيير, و لكن ليتم تفعيله يجب عليك الخروج"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -11815,16 +11949,13 @@ msgstr ""
"يمكنك الآن مسح المستندات باستخدام ``XSane'' من فرع وسائط متعددة/برامج رسومية "
"في قائمة التطبيقات."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -11899,7 +12030,7 @@ msgstr "تثبيت تحديثات النظام"
msgid "Exit install"
msgstr "الخروج من التثبيت"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12146,6 +12277,18 @@ msgstr "وسائط متعددة - نسخ أقراص"
msgid "Scientific Workstation"
msgstr "محطة عمل علمية"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Proxies اؚداد"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "؎عو؏"
+
#~ msgid ""
#~ "tinyfirewall configurator\n"
#~ "\n"
@@ -12507,9 +12650,6 @@ msgstr "محطة عمل علمية"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "جاري ضبط مستوى الأمن"
-
#~ msgid "Select a graphics card"
#~ msgstr "اختر بطاقة شاشة"
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 197fab395..57ae9d501 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -91,24 +91,24 @@ msgstr "Bütün başlıqları ayrı ayrı quraşdır"
msgid "Use Xinerama extension"
msgstr "Xinerama ifadələrini işlət"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Təkcə \"%s\" kartını qur (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, 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:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -144,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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -153,12 +153,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "XĂźsusi"
@@ -179,32 +179,32 @@ msgstr "Rezolyusiya"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Oldu"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Çıx"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -297,25 +297,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Ləğv et"
@@ -392,11 +392,11 @@ msgstr "XFree86 verici: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sĂźrĂźcĂź: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ilə Açılış"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -405,7 +405,7 @@ msgstr ""
"Kompüterinizi avtomatik olaraq X ilə açılması üçün qura bilərəm.\n"
"Açılışda X Window ilə başlamaq istəyirsiniz?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -417,7 +417,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "ISDN bağlantınızın növü nədir?"
@@ -490,7 +490,7 @@ msgstr "Bəsit"
msgid "compact"
msgstr "bəsit"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Ekran modu"
@@ -498,17 +498,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Parol (təkrar)"
@@ -543,14 +543,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Parollar uyğun gəlmir"
@@ -587,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -595,156 +595,156 @@ 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:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Əlavə et"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "QurtardÄą"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Təkmilləşdir"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linuks"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Digər sistemlər (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Digər sistemlər (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Digər sistemlər (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Əks"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "KĂśk"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Sonuna əlavə et"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Cədvəl"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "E'tibarsÄąz"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Əsas"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd bĂśyĂźklĂźyĂź"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVÄ°deo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Girişi sil"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Boş etiket qəbul edilə bilməz"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Bir swap sahəsinə ehtiyacınız var"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Bu etiket istifadə edilməz"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ara ĂźzĂź tapÄąldÄą"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Başqa var?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heç %s ara ßzß var?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bəli"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Avadanlıq mə'lumatına bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartı (%s) üçün sürücü yüklənir"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Parametrlər``ad=qiymət ad2=qiymət2...'' şəklində olmalıdır.\n"
"Məsələn ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modul seçənəkləri:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "HansÄą %s sĂźrĂźcĂźsĂź sÄąnansÄąn?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -782,15 +782,15 @@ msgstr ""
"Bə'zən tanımlama kompüterinizi dondura bilər amma donduğu üçün\n"
"kompüterinizə heç bir şey olmaz."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Seçənəkləri göstər"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -799,64 +799,64 @@ msgstr ""
"%s modulunun yüklənməsi iflas etdi.\n"
"Yenidən başqa bir parametr ilə sınamaq istəyirsiniz?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s artıq əlavə edilmişdir)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Zəif parol seçdiniz!"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Xahiş edirik bir istifadəçi adı alın"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Bu istifadəçi adı artıq vardır"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "İstifadəçini əlavə et"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Bir istifadəçi girin\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "İstifadəçini qəbul et"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Həqiqi adı"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "İstifadəçi adı"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "QabÄąq"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Timsal"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Avtomatik Giriş"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -899,59 +899,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:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Əsas istifadəçini seçin:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "İstifadə etmək istədiyiniz pəncərə idarəçisini seçin:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "HamÄąsÄą"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "İstifadəçi əlavə et"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS başlayır"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Krakerlərə xoşgəlmişsiniz"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Zəif"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standart"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Yüksək"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Yüksək"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Şübhəci"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1006,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1014,7 +1014,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:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1023,13 +1023,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1044,7 +1044,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:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1054,36 +1054,36 @@ msgstr ""
"tamamilə qapalıdır.\n"
"Təhlükəsizlik səviyyəsi indi ən üstdədir."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Seçənəklər"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Təhlükəsizlik səviyyəsini seçin"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "X verici üçün seçənəkləri göstərin"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1096,7 +1096,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1121,7 +1121,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:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Emeliyyat sistemi secici GRUB'a xos gəlmissiniz!"
@@ -1135,7 +1135,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:941
+#: ../../bootloader.pm_.c:992
#, 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"
@@ -1150,7 +1150,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:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Sistemi secili emeliyyat sistemiyle acmaq ucun entere,"
@@ -1164,7 +1164,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:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
"acilisdan evvel emrleri duzeltmək ucun 'e', emr setiri ucun ise 'c' basin"
@@ -1179,33 +1179,33 @@ 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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Masa Üstü"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Başlama Menyusu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "hələlik yardım sistemi mövcud deyildir.\n"
@@ -1257,106 +1257,106 @@ msgstr "Lilo/grub modu"
msgid "Yaboot mode"
msgstr "Yaboot modu"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistemi qur"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Yeni bölmə yarat"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Xəta"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVÄ°deo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Quruluş sinifini seçin"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1365,22 +1365,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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Qur"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Paket seçkilərini saxla"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1389,45 +1389,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistem modu"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Açılışda X-Window sistemini başlat"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Xeyr, Avtomatik giriş istəmirəm"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
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:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Oldu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab oxunmaq ßçßn açĹla bilmir: %s"
@@ -1533,53 +1533,61 @@ msgstr "serial"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "yeni"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Bağla"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Verici"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Seçənəklər: %s"
@@ -1669,7 +1677,7 @@ msgstr "Boş"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Digər"
@@ -1820,7 +1828,7 @@ 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:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Xəbərdarlıq"
@@ -2391,7 +2399,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:3529
#, fuzzy
msgid "Username"
msgstr "İstifadəçi adı"
@@ -2406,23 +2414,23 @@ msgstr "NIS sahəsi"
msgid "Search servers"
msgstr "DNS verici"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s şəkilləndirilməsində %s bölmə xətası"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrılırkən xəta oldu: %s"
@@ -2512,46 +2520,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açılan %s'də xəta: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "SĂźrĂźcĂź"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_YardÄąm"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Xahiş edirik gözləyin"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2678,7 +2750,8 @@ msgid "/_Quit"
msgstr "Çıx"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Kömək"
@@ -2698,76 +2771,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Kömək/_Haqqında..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Avtomatik yoxla"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Sabit disk seçkisi"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Avadanlıq mə'lumatına bax"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mə'lumatı göstər"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Siçan qurğuları"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "%s qapÄąsÄąnda tapÄąldÄą"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Xahiş edirik gözləyin"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "CUPS sĂźrĂźcĂź datasÄą oxunur..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d saniyə sonra çıxılacaq"
@@ -4231,7 +4305,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4255,7 +4329,7 @@ msgstr ""
"\n"
"Bu vericiləri qurmaq istəyirsiniz?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4264,20 +4338,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NİS domeyni olmadan translasiya işlədilə bilməz"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Bu floppi FAT şəklində deyildir"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4285,12 +4359,12 @@ msgstr ""
"Bu saxlanmış paketlər seçkisini işlətmək üçün qurulumu ``linux "
"defcfg=floppy''ilə başladın."
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4536,7 +4610,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%s Sisteminə Xoşgəlmişsiniz"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disket sĂźrĂźcĂź yoxdur"
@@ -4568,11 +4642,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Fərdi paket seçkisi"
@@ -4648,7 +4722,7 @@ msgstr "Avtomatik seçili paketləri göstər"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Qurulum"
@@ -4671,7 +4745,7 @@ msgstr "Qurulumdan çĹx"
msgid "Choose the packages you want to install"
msgstr "Qurmaq istədiyiniz paketləri seçin"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Qurulur"
@@ -4698,17 +4772,17 @@ msgid "Installing package %s"
msgstr "%s paketi qurulur"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Qəbul Et"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rədd Et"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4723,16 +4797,16 @@ msgstr ""
"Əgər Cd-Rom əlinizdə deyilsə bu Cd-Rom'dan qurmamaq üçün İMTİNA ET'ə basın."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Yenə də davam edək?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Paketləri istərkən bir xəta oldu:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Paketlər qurulurkən bir xəta oldu:"
@@ -4857,7 +4931,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4975,7 +5049,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5052,7 +5126,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatura"
@@ -5265,29 +5339,29 @@ msgstr "%s sürücüsünə bir disket taxın"
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:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5298,16 +5372,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" adlÄą Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Qurulum hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5316,21 +5390,21 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Qurulum sonrası qurğular"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5400,7 +5474,7 @@ msgstr ""
"USA\n"
"ĂźnvanÄąna yazÄąnÄąz."
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5412,164 +5486,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Paketleri almaq üçün bir əks ünvanı seçin"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Əks ünvanına bağlantı qurulur"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Sisteminiz hansı məqsədlə istifadə ediləcək?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Avadanlıq saatınız GMT-yə göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Başqa var?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Mündəricat"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartÄą"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Səs kartı"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartÄą"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "NIS istifadə et"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Yerli Çap Edici"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root parolunu qur"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Parolsuz"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "TanÄątma"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "TanÄątma"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "Verici"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS sahəsi"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5585,21 +5659,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "TanÄątma"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Sahə(domain) adı"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5630,19 +5704,19 @@ msgstr ""
"yerləşdirin\n"
"və \"OLDU\" basın."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ä°lk disket sĂźrĂźcĂź"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Ä°kinci disket sĂźrĂźcĂź"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Nəzərə Alma"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5672,7 +5746,7 @@ msgstr ""
"və \"OLDU\" basın.\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5681,28 +5755,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Bağışlayın, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, 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:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Açılış disketi yaradılır"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Açılış yükləyici hazırlanır"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5710,11 +5784,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot istifadə etmək istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5722,16 +5796,16 @@ msgstr ""
"aboot qurulumunda xata, \n"
"ilk disk bölməsini yox etsə belə yenə də qurulmasını istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Sistem yükləyicini qur"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5748,17 +5822,17 @@ msgstr ""
" 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:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5768,7 +5842,7 @@ msgstr ""
"\n"
"Həqiqətən də çıxmaq istəyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5794,15 +5868,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Avtomatik qurulum disketi hazÄąrlanÄąr"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5816,15 +5890,15 @@ msgstr ""
"\n"
"Bu qurulumu takrar etmək istəyə bilərsiniz axı.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Avtomatlaşdırılmış"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Təkrarla"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Paket seçkilərini saxla"
@@ -5861,14 +5935,14 @@ msgstr "Ətraflı"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "SonrakÄą ->"
@@ -6323,7 +6397,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Dairəvi bağlama %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Məntiqi ciltləri birinci olaraq sil\n"
@@ -6461,15 +6535,15 @@ msgstr "heç biri"
msgid "No mouse"
msgstr "SiçansĹzs"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Siçanınızı işə salmaq üçün,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "TƏKƏRİ OYNADIN!"
@@ -6505,11 +6579,11 @@ msgstr "Ağacı Qapat"
msgid "Toggle between flat and group sorted"
msgstr "Otaq və grup sıralaması arasında gəz"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "İnternetə bağlan"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6519,23 +6593,19 @@ msgstr ""
"Bəzi bağlantılar pptp istifadə edir, çox azı isə dhcp işlədir.\n"
"Bilmirsiniz isə 'pppop istifadə et'i seçin"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp istifadə et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe istifadə et"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptpe istifadə et"
@@ -6637,7 +6707,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:362
msgid "Configuring network"
msgstr "Şəbəkə Qurğuları"
@@ -6652,15 +6722,15 @@ 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:367
msgid "Host name"
msgstr "Ev sahibi adÄą"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Şəbəkə Quraşdırılması Sehirbazı"
@@ -6700,8 +6770,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Oddan divar (Firewall) quruluşu tapıldı!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN quraşdırılması"
@@ -6741,23 +6811,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hansı protokolu istifadə etmək istəyirsiniz?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "HansÄą nĂśv kartÄąnÄąz var?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Bilmirəm"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6770,19 +6845,19 @@ msgstr ""
"\n"
"PCMCIA kartınız var isə kartınızın irq və ya io'sunu bilməlisiniz.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "DayandÄąr"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Davam et"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "HansÄąsÄą sizin ISDN kartÄąnÄązdÄąr?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6790,7 +6865,7 @@ msgstr ""
"ISDN PCI kart tapdım, amma növünü bilmirəm. Xahiş edirik sonrakı ekrandakı "
"kartlardan birini seçin."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heç bir ISDN PCI kart tapĹlmaĹ. SonrakĹ ekrandakĹlardan seçin."
@@ -6842,7 +6917,7 @@ msgstr "Birinci DNS Vericisi (arzuya görə)"
msgid "Second DNS Server (optional)"
msgstr "İkinci DNS Vericisi (arzuya görə)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6851,7 +6926,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6859,11 +6934,11 @@ msgstr ""
"\n"
"Bağlantınızı yenidən quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Artıq İnternetə bağlısınız."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6871,28 +6946,28 @@ msgstr ""
"\n"
"İstəsəniz İnternetə bağlana bilərsiniz ya da yeniden quraşdıra bilərsiniz."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Hələ İnternetə bağlı deyilsiniz."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Bağlan"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Bağlantını kəs"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Şəbəkəni qur"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "İnternet bağlantısı & quraşdırılması"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
@@ -6900,7 +6975,7 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6915,12 +6990,12 @@ msgstr ""
"Bağlantınızı kəsə bilərsiniz. Ya da bağlantını yenidən də quraşdıra "
"bilərsiniz."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6931,7 +7006,7 @@ msgstr ""
"Şəbəkə/İnternet bağlantınızı yenidən quraşdırmaq üçün Oldu'ya yoxsa Ləğv "
"et'ə basın.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6943,99 +7018,99 @@ msgstr ""
"İnternet/Şəbəkə qurğularınızı edəcəyik.\n"
"Avtomatik təsbit istəmirsiniz isə işarəti qaldırın.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Qurulacaq profili seçin"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Avtomatik təsbit işlət"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "AvadanlÄąqlar tanÄąnÄąr..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normal modem təsbiti"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s qapÄąsÄąnda tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN Bağlantısı"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "%s ara üzündə tapıldı"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kabel bağlantısı"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "eternet kart tapÄąldÄą"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "İstifadə edəcəyiniz vasitəni seçin"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "İnternet Bağlantısı Bölüşdürülməsi"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Bağlantınızı açılışda başlatmaq istəyirsiniz?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7046,7 +7121,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7056,7 +7131,7 @@ msgstr ""
"\n"
"Qurğular indi sisteminizə əlavə ediləcək.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7064,14 +7139,14 @@ msgstr ""
"Bu edildikdən sonra Xdən çıxmağınızı tövsiyyə edirik, yoxsa\n"
"verici adı xəsarətləri meydana gələ bilər."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7083,50 +7158,50 @@ msgstr ""
"OLDU ya basÄąn.\n"
"Aşağıdakı girişləri düzəltməniz özünü əvvəlki qurğuların üstünə yazacaqdır."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr "Xahiş edirik bu kompüter üçün IP qurğularını girin"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "%s şəbəkə avadanlığı qurulur"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (sĂźrĂźcĂź %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ĂźnvanÄą"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Avtomatlaşdırılmış IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Açılışda başladılır"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7137,42 +7212,53 @@ 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:368
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Keçit avadanlığı"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ünvanı 1.2.3.4 şəklində olmalıdır"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Vəkil vericilər quraşdırılması"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP vəkil verici"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP vəkil verici"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Vəkil verici http://... şəklində olmalıdır."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Vəkil verici ftp://... olmalıdır."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vəkil verici http://... şəklində olmalıdır."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8571,7 +8657,7 @@ msgstr "Şəbəkə dayandırılır"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9082,11 +9168,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Vəkil verici http://... şəklində olmalıdır."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9136,6 +9217,43 @@ msgstr "mkraid iflas etdi (raidtools əksik ola bilər mi?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d səviyyə RAID üçün çatmayan sayda disk bölməsi\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Uzaq Çap Edici (lpd) Seçənəkləri"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Əsas)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Xahiş edirik gözləyin, qurulum hazırlanır"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA səs sistemini (Advanced Linux Sound Architecture) başlat"
@@ -9447,7 +9565,7 @@ msgstr "Ä°nternet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistem modu"
@@ -9543,7 +9661,7 @@ msgstr "İnternetə bağlan"
#: ../../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"
msgstr ""
@@ -9590,7 +9708,7 @@ msgstr "Şəbəkə ara üzü"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9615,7 +9733,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9631,7 +9749,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9646,7 +9764,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9695,8 +9813,8 @@ 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 your 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
@@ -9733,11 +9851,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "%s paketi qurulur"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, 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"
@@ -9785,17 +9903,6 @@ msgstr "İstifadəçini əlavə et"
msgid "Add/Del Clients"
msgstr "DHCP AlÄącÄąsÄą"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_YardÄąm"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9848,53 +9955,68 @@ msgstr "İstifadəçini əlavə et"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP AlÄącÄąsÄą"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Quraşdırılır..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Yerli Şəbəkə Quraşdırılması"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "yenidən quraşdır"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "%s sürücüsünə bir disket taxın"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disket sĂźrĂźcĂź yoxdur"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10018,13 +10140,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "QapÄąlarÄą sÄąna"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10033,41 +10155,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "%s açĹla bilmir: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10078,68 +10200,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10147,923 +10269,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "%s faylı oxunurkan xəta oldu"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paket Qrup Seçkisi"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, 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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "\"Windows\"u sil"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Xahiş edirik təkrar sınayın"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Parolsuz"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Klaviatura quruluşunu seçiniz."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Xahiş edirik bir bölmə üstünə tıqlayın"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, 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:1952
+#: ../../standalone/drakbackup_.c:1956
#, 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:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Fayl seç"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Şəbəkə ara üzü"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "NĂśv"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Çərx"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modul seçənəkləri:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Xahiş edirik qurmaq istədiyiniz paketləri seçin."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Siçan avadanlığı: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Seçənəklər"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, 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:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Xahiş edirik siçanınızı seçin"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Yerli Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Çap Edici Bağlantısı Seçin"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Digər"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Sistemi qur"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Xahiş edirik siçanınızın növünü seçin."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Növbəni sil"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Disketdən geri çağır"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Ev sahibi adÄą"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Parol"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ev sahibi adÄą:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "XĂźsusi"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Bölmə cədvəlini qurtar"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Əvvəlki"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Hal:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Fayldan geri çağır"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Xahiş edirik istifadə üçün bir dil seçin."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Xətalı yedəkləmə faylı"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Fayla qeyd et"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Şəbəkə quraşdırılması"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Yerli Şəbəkə Quraşdırılması"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Fayl sistemi qurğuları"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11095,7 +11219,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11104,7 +11228,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11145,7 +11269,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11173,17 +11297,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11200,7 +11324,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11240,7 +11364,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11251,7 +11375,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11264,7 +11388,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11346,8 +11470,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsol Vasitələri"
@@ -11423,28 +11547,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "QapÄą"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Qurulumdan çĹx"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Qurulumdan sonra istifadə edə biləcəyiniz başqa dillər seçə bilərsiniz"
@@ -11545,10 +11669,6 @@ msgstr "Sehirbaz..."
msgid "Apply"
msgstr "Əlavə Et"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Lütdən Gözləyin... Qurğular əlavə edilir"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Bağlandı"
@@ -11668,7 +11788,7 @@ msgstr "Modul adÄą"
msgid "Size"
msgstr "BĂśyĂźklĂźk"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11733,12 +11853,12 @@ msgstr "Nəticə"
msgid "Build the disk"
msgstr "Diski yarat"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "%s avadanlığında medya olduğundan əmin olun"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11747,12 +11867,12 @@ msgstr ""
"%s avadanlığında medya yoxdur.\n"
"Xahiş edirik. birini taxın."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork edilə bilmir: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12236,157 +12356,157 @@ msgstr ""
"\n"
"Quraşdırma sehirbazını açmaq üçün Quraşdıra tıqlayın."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "İş qrupu"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "bölmə %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Sil"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "QurtardÄą"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Modul əlavə et"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Çap Edicisiz"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Növbəni sil"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "İstifadəçini qəbul et"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Buraxılış: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "QapÄą"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Avtomatik təsbit işlət"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Paket seçkilərini saxla"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "İstifadəçi adı"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "İş qrupu"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Bağlı deyil"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12398,137 +12518,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "açılış disketi yaradılması"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolyusiya"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Paylaşdırma adı"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "avadanlÄąq"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "avadanlÄąq"
+msgid "Save theme"
+msgstr "Sistemi qur"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Monitorunuzu seçin"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Çap Edici Bağlantısı"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Çap Edici avadanlığı URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "AvadanlÄąqlar tanÄąnÄąr..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12669,6 +12799,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "istifadə qaydası: keyboarddrake [--expert] [klavatura]\n"
@@ -12697,11 +12834,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Təkmilləşdirmə işi başlaya bilmir !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12982,16 +13119,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13067,7 +13201,7 @@ msgstr "Sistemi qur"
msgid "Exit install"
msgstr "Qurulumdan çĹx"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13313,6 +13447,21 @@ msgstr "Multimedya - CD YandÄąrma"
msgid "Scientific Workstation"
msgstr "Elmi iş stansiyası"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Qurulum sonrası qurğular"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Vəkil verici ftp://... olmalıdır."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Çıx"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (köhnə BIOSlarda işləməz)"
@@ -13565,9 +13714,6 @@ msgstr "Elmi iş stansiyası"
#~ msgid "Test again"
#~ msgstr "Yenidən sına"
-#~ msgid "Setting security level"
-#~ msgstr "Təhlükəsizlik səviyyəsinin quraşdırılması"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ekran kartĹnĹzĹ seçin"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 3c41b2038..8a9393b7f 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-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Ńĺđâĺđ XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ç ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ç ýęńďĺđűěĺíňŕëüíŕé ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,12 +150,12 @@ msgstr ""
"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Ďŕ âűáŕđó"
@@ -176,32 +176,32 @@ msgstr "Ďŕěĺđű ýęđŕíó"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Îę"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Âűőŕä"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ msgstr "Âűáŕđ ďŕěĺđࢠýęđŕíó i ăëűáiíi ęîëĺđó"
msgid "Graphics card: %s"
msgstr "Âiäýŕęŕđňŕ: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Ŕäěĺíŕ"
@@ -394,11 +394,11 @@ msgstr "Ńĺđâĺđ XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Çŕďóńę X ďđű ńňŕđöĺ ńińňýěű"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ çŕďóńęó X ďŕńë˙ ńňŕđňó ńińňýěű.\n"
"Ćŕäŕĺöĺ, ęŕá X ńňŕđňŕâࢠďđű đýńňŕđöĺ?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
@@ -493,7 +493,7 @@ msgstr "Ęŕěďŕęňíŕ"
msgid "compact"
msgstr "ęŕěďŕęňíŕ"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Âiäýŕ-đýćűě"
@@ -501,17 +501,17 @@ msgstr "Âiäýŕ-đýćűě"
msgid "Delay before booting default image"
msgstr "Çŕňđűěęŕ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ďŕđîëü"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Ďŕ˘ňŕđűöĺ ďŕđîëü"
@@ -546,14 +546,14 @@ msgid ""
msgstr ""
"Îďöű˙ ``Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęó'' íĺ âűęŕđűńňî˘âŕĺööŕ áĺç ďŕđîë˙"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,158 +599,158 @@ msgstr ""
"Ó ěĺíţ ěŕţööŕ íŕńňóďíű˙ ďóíęňű.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äŕäŕöü"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Çđîáëĺíŕ"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Çě˙íiöü RAID"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "ßęi ňűď ďóíęňŕ ćŕäŕĺöĺ äŕäŕöü?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Iířŕ˙ ŔŃ (SunOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Iířŕ˙ ŔŃ (MacOS,...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Iířŕ˙ ŔŃ (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Âîáđŕç"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Äŕëó÷űöü"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "×űňŕííĺ-çŕďiń"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Ňŕáëiöŕ"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Íĺíŕäçĺéíŕ"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Ěĺňęŕ"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Âűäŕëiöü çŕďiń"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Ďóńňŕ˙ ěĺňęŕ íĺ äŕçâŕë˙ĺööŕ"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Âű ďŕâiííű ěĺöü đŕçäçĺë swap"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ăýňŕ˙ ěĺňęŕ ˘ćî âűęŕđűńňî˘âŕĺööŕ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Çíîéäçĺíű %s %s iíňýđôĺéńű"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Öi ¸ńöü ó âŕń iířű?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Öi ¸ńöü ó âŕń %s iíňýđôĺéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ňŕę"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Ăë. ŕďińŕííĺ ŕáńňŕë˙âŕíí˙"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Óńňŕë˙âŕííĺ äđŕéâĺđó äë˙ %s ęŕđňű %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(ěîäóëü %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -761,17 +761,17 @@ msgstr ""
"Îďöűi - ó ôŕđěŕöĺ ``iě˙=çíŕ÷ýííĺ iě˙2=çíŕ÷ýííĺ2 ...''.\n"
"Íŕďđűęëŕä, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Îďöűi ěîäóëţ:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "ßęi äđŕéâĺđ %s ďŕńďđŕáŕâŕöü?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
"˘ ďîřóęŕő íĺŕáőîäíŕé iíôŕđěŕöűi? Ěŕă÷űěŕ, ňýńöiđŕâŕííĺ ďđűâ˙äçĺ\n"
"äŕ ńďűíĺíí˙ ęŕěď'ţňýđó, ŕëĺ ˙íî íi÷îăŕ íĺ ńŕďńóĺ."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Ŕ˘ňŕďîřóę"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Ďŕçíŕ÷öĺ ďŕđŕěĺňđű"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,64 +805,64 @@ msgstr ""
"Çŕăđóçęŕ ěîäóëţ %s íĺ ďđŕéřëŕ.\n"
"Ćŕäŕĺöĺ ďŕńďđŕáŕâŕöü ç iířűěi ďŕđŕěĺňđŕěi?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(óćî äŕäŕäçĺíŕ %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Ęŕëi ëŕńęŕ, óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -871,32 +871,32 @@ msgstr ""
"Óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Ďđűí˙öü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Óëŕńíŕĺ iě˙"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Ŕáŕëîíęŕ:"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ďięňŕăđŕěŕ"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Ŕ˘ňŕěŕňű÷íű ˘âŕőîä ó ńińňýěó"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -905,57 +905,57 @@ msgstr ""
"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ ˘âŕőîäó ˘ ńińňýěó äë˙\n"
"ŕäíŕăî ęŕđűńňŕëüíięŕ. Ęŕëi Âű íĺ ćŕäŕĺöĺ ăýňŕăŕ, íŕöińíiöĺ \"Ŕäěĺíŕ\"."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Ŕá˙đűöĺ ěýíýäćŕđ âîęíŕ˘:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Óń¸"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "×ŕęŕĺööŕ"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -964,42 +964,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Ńŕđäý÷íŕ çŕďđŕřŕĺě ó Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Çóńłě ńëŕáű"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ńňŕíäŕđňíű"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Âűńîęi"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Âűńîęi"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Ďŕđŕíŕiäŕëüíű"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1011,7 +1011,7 @@ msgstr ""
"íŕ ěŕřűíŕő, ˙ęi˙ äŕëó÷ŕíű äŕ ńĺňęi öi äŕ Internet. Óâŕőîä íĺ ŕáŕđîíĺíű "
"ďŕđîëĺě."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1019,7 +1019,7 @@ msgstr ""
"Ďŕđîëü çŕđŕç óęëţ÷ŕíű, ŕëĺ âűęŕđűńňŕííĺ ęŕěď'ţňýđó ˘ ˙ęŕńöi ńĺňęŕâŕăŕ\n"
"ňŕęńŕěŕ íĺ đýęŕěĺíäŕâŕíŕ."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1029,13 +1029,13 @@ msgstr ""
"˙ęi äŕëó÷ŕíű äŕ Internet ó ˙ęŕńöi ęëiĺíňó. Äŕäŕíű˙ íîâű˙ ďđŕâĺđęi\n"
"á˙ńďĺęi."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
"ńĺđâĺđó. Óçđîâĺíü á˙ńďĺęi äŕńňŕňęîâŕ âűńîęi äë˙ đŕáîňű\n"
"ńĺđâĺđó, ˙ęi äŕďóńęŕĺ çëó÷ýííi ńŕ řěŕňëięiěi ęëiĺíňŕěi."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
"Ďđűěŕţööŕ ˘ëŕńöiâŕńöi 4 óçđî˘í˙, ŕëĺ çŕđŕç ńińňýěŕ ďî˘íŕńöţ çŕ÷űíĺíŕ.\n"
"Ďŕđŕěĺňđű á˙ńďĺęi ˘ńňŕíî˘ëĺíű íŕ ěŕęńiěóě."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îďöűi"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Óçđîâĺíü á˙ńďĺęi"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1095,7 +1095,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1107,58 +1107,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Ďđŕöî˘íű ńňîë"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ęóäű âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ďŕ÷ŕňęîâű çŕăđóç÷űę?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1216,130 +1216,130 @@ msgstr "Đýćűě çëó÷ýíí˙"
msgid "Yaboot mode"
msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ďŕěűëęŕ"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "Ńĺđâĺđ XFree86 %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "ăŕëüřňóę"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Ęëŕń óńňŕë˙âŕíí˙"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, 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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Íŕńňđîéęŕ X Window"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Äđýâŕ"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1348,44 +1348,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1489,53 +1489,61 @@ msgstr "ďŕńë˙äî˘íŕ˙"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Íîâű"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ěŕíöiđŕâŕííĺ"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr "ńĺđâĺđ"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "ńĺđâĺđ"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ďóíęň ěŕíöiđŕâŕíí˙:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îďöűi: %s"
@@ -1624,7 +1632,7 @@ msgstr "Ďóńňŕ"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "˛ířű˙"
@@ -1776,7 +1784,7 @@ msgstr ""
"Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ đýçĺđâîâŕăŕ äűńęó ěŕĺ iířű ďŕěĺđ\n"
"Ďđŕö˙ăâŕöü äŕëĺé?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Óâŕăŕ!"
@@ -2335,7 +2343,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:3529
#, fuzzy
msgid "Username"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
@@ -2350,23 +2358,23 @@ msgstr "NIS Domain"
msgid "Search servers"
msgstr "DNS ńĺđâĺđ"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ďŕěűëęŕ ôŕđěŕňŕâŕíí˙ %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Íĺ âĺäŕţ ˙ę ŕäôŕđěŕňŕâŕöü %s ç ňűďŕě %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ďŕěűëęŕ đŕçěŕíöiđŕâŕíí˙ %s: %s"
@@ -2458,46 +2466,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "ńĺđâĺđ"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2624,7 +2696,8 @@ msgid "/_Quit"
msgstr "Âűőŕä"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr ""
@@ -2643,76 +2716,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "Ŕäě˙íiöü"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Ŕ˘ňŕďîřóę"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Âűçíŕ÷ýííĺ ćîđńňęŕăŕ äűńęó"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Ăë. ŕďińŕííĺ ŕáńňŕë˙âŕíí˙"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Iíôŕđěŕöű˙"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Íŕńňđîéęŕ ěűřű"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d ńĺęóíäŕ˘"
@@ -3972,7 +4046,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3987,7 +4061,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3996,31 +4070,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Íĺěŕă÷űěŕ âűęŕđűńňî˘âŕöü broadcast áĺç äŕěĺíŕ NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4268,7 +4342,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Äűńęŕâîä íĺäŕńňóďíű"
@@ -4299,11 +4373,11 @@ msgstr "Ęëŕń Óńňŕë˙âŕíí˙"
msgid "Please choose one of the following classes of installation:"
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ŕäçií ç ęëŕńࢠóńňŕë˙âŕíí˙:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
@@ -4380,7 +4454,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Óńňŕ븢ęŕ"
@@ -4403,7 +4477,7 @@ msgstr "Âűäŕëiöü ç ńińňýěű"
msgid "Choose the packages you want to install"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Óńňŕ븢âŕĺě"
@@ -4431,17 +4505,17 @@ msgid "Installing package %s"
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ďđűí˙öü"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Ŕäęŕçŕöü"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4458,16 +4532,16 @@ msgstr ""
"Cd."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Óń¸ đî˘íŕ ďđŕö˙ăâŕöü?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
@@ -4564,7 +4638,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4642,7 +4716,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ęëŕâi˙ňóđŕ"
@@ -4855,31 +4929,31 @@ msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ óńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "×ŕęŕéöĺ"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4889,16 +4963,16 @@ msgstr ""
"Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
"Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ Îę."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ďŕçíŕ÷ŕíű \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4907,21 +4981,21 @@ msgstr ""
"Óńňŕë˙âŕííĺ ďŕęĺňó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, fuzzy, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4999,7 +5073,7 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5011,169 +5085,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Âűáŕđ ëţńňđŕ äë˙ ŕňđűěŕíí˙ ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "ßęi âŕř ÷ŕńŕâű ďî˙ń?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Âŕř ńińňýěíű ăŕäçiííię óńňŕë˙âŕíű íŕ GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS ńĺđâĺđ:"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
#, fuzzy
msgid "No printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Öi ¸ńöü ó âŕń iířű?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
#, fuzzy
msgid "Mouse"
msgstr "Ďîđň ěűřű"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ďđűíňýđ"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "ISDN card"
msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy
msgid "Sound card"
msgstr "Ńňŕíäŕđňíű"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Âűęŕđűńňî˘âŕöü NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ďŕđîëü äë˙ root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Í˙ěŕ ďŕđîëţ"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "ńĺđâĺđ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Ŕ˘ňýíňűôięŕöű˙ NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS ńĺđâĺđ:"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5189,22 +5263,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Iě˙ äŕěĺíó"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Domain Admin Password"
msgstr "Ďŕäöâĺđäçiöü ďŕđîëü"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5231,19 +5305,19 @@ msgstr ""
"Ęŕëi ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç, óńňŕ˘öĺ äűńęĺňó ˘ ďĺđřű\n"
"äűńęŕâîä i íŕöińíiöĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ďĺđřű äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Äđóăi äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ďđŕďóńöiöü"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5269,7 +5343,7 @@ msgstr ""
"Ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5278,28 +5352,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Âűáŕ÷ŕéöĺ, ŕëĺ äűńęŕâîä íĺäŕńňóďíű"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Ŕá˙đűöĺ äűńęŕâîä, ó ˙ęiě áóäçĺ ńňâŕđŕööŕ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Ńňâŕđýííĺ çŕăđóçŕ÷íŕé äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ďŕäđűőňî˘ęŕ çŕăđóç÷űęŕ"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5307,11 +5381,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5319,16 +5393,16 @@ msgstr ""
"Ďŕěűëęŕ ˘ńňŕë˙âŕíí˙ ŕboot, \n"
"ńďđŕáŕâŕöü óńňŕ븢âŕöü, íĺăëĺäç˙÷ű íŕ ěŕă÷űěŕńöü ďŕđóřýíí˙ ďĺđřŕăŕ đŕçäĺëó?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Ďđŕöýń óńňŕë˙âŕíí˙ çŕăđóç÷űęŕ íĺ ŕňđűěŕ˘ń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5339,17 +5413,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5358,7 +5432,7 @@ msgstr ""
"Íĺęŕňîđű˙ ęđîęi íĺ çŕâĺđřŕíű.\n"
"Âű ńŕďđŕ˘äű ćŕäŕĺöĺ âűéńöi çŕđŕç?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5390,16 +5464,16 @@ msgstr ""
"Iíôŕđěŕöű˙ ďŕ íŕńňđîéęĺ âŕřŕé ńińňýěű ¸ńňü ˘ ďŕńë˙-˘ńňŕë¸âŕ÷íŕé\n"
"ăëŕâĺ âŕřŕăŕ Äŕďŕěîćíięŕ Ęŕđűńňŕëüíięó ç Ŕôiöűéíŕăŕ Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5408,16 +5482,16 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Ŕ˘ňŕěŕňű÷íű"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Replay"
msgstr "Ďĺđŕçŕăđóçiöü"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
@@ -5455,14 +5529,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Ňýęńň"
@@ -5919,7 +5993,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Ěŕíöiđŕâŕííĺ äűńęó %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -6060,16 +6134,16 @@ msgstr "í˙ěŕ"
msgid "No mouse"
msgstr "Í˙ěŕ ěűřű"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "Đóřöĺ ęîëŕě ěűřű!"
@@ -6106,34 +6180,30 @@ msgstr "Çăŕđíóöü äđýâŕ"
msgid "Toggle between flat and group sorted"
msgstr "Ďĺđŕęëţ÷ýííĺ ďŕěić óďŕđŕäęŕâŕííĺě ďŕ ăđóďĺ i ŕńîáęŕő"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "âűęŕđűńňî˘âŕöü pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
#, fuzzy
msgid "use pptp"
msgstr "âűęŕđűńňî˘âŕöü pppoe"
@@ -6233,7 +6303,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:362
msgid "Configuring network"
msgstr "Íŕńňđîéęŕ ńĺňęi"
@@ -6249,15 +6319,15 @@ 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:367
msgid "Host name"
msgstr "Iě˙ ěŕřűíű"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
@@ -6299,8 +6369,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Íŕńňđîéęŕ ISDN"
@@ -6339,23 +6409,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "ßęi ďđŕňŕęîë âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "ßęi ňűď ęŕđňű âű ěŕĺöĺ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Íĺ â˙äîěŕ"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6369,19 +6444,19 @@ msgstr ""
"\n"
"Ęŕëi âű ěŕĺöĺ PCMCIA ęŕđňó, âű ďŕâiííű âĺäŕöü irq i io âŕřŕé ęŕđňű.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Ŕäě˙íiöü"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Ďđŕö˙ăíóöü"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ßęŕ˙ ˘ âŕń ISDN ęŕđňŕ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6389,7 +6464,7 @@ msgstr ""
"Âűçíŕ÷ŕíŕ ISDN PCI ęŕđňŕ, ŕëĺ íĺâ˙äîěű ˙ĺ ňűď. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ PCI "
"ęŕđňó íŕ íŕńňóďíűě ýęđŕíĺ."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ęŕđňŕ ISDN PCI íĺ çíîéäçĺíŕ. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ íŕ íŕńňóďíűě ýęđŕíĺ."
@@ -6443,7 +6518,7 @@ msgstr "Ďĺđřű ńĺđâĺđ DNS"
msgid "Second DNS Server (optional)"
msgstr "Äđóăi ńĺđâĺđ DNS:"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6451,7 +6526,7 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6460,12 +6535,12 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
@@ -6474,38 +6549,38 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6519,12 +6594,12 @@ msgstr ""
"\n"
"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6532,7 +6607,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6540,105 +6615,105 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "LAN connection"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Âű ćŕäŕĺöĺ, ęŕá ăýňŕĺ çëó÷ýííĺ ńňŕđňŕâŕëŕ ďđű çŕăđóçöű?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
#, fuzzy
msgid "Network configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6646,27 +6721,27 @@ msgid ""
"%s"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6674,7 +6749,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6684,43 +6759,43 @@ msgstr ""
"Ęîćíű ďóíęň ďŕâiíĺí áűöü çŕďî˘íĺíű ˙ę IP ŕäđŕń ˘ äçĺń˙ňęîâŕ-ęđîďęŕâŕé \n"
"íŕňŕöűi (íŕďđűęëŕä, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ ńĺňęŕâŕé ďđűëŕäű %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ŕäđŕń"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Ěŕńęŕ ńĺňęi"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Ŕ˘ňŕěŕňű÷íű IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6732,42 +6807,53 @@ msgstr ""
"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS ńĺđâĺđ"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Ďđűëŕäŕ-řëţç"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Íŕńňđîéęŕ proxy ęýřóţ÷űő ńĺđâĺđŕ˘"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy ďŕâiíĺí áűöü http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ďŕâiíĺí áűöü ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy ďŕâiíĺí áűöü http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8166,7 +8252,7 @@ msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8679,11 +8765,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy ďŕâiíĺí áűöü http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8733,6 +8814,43 @@ msgstr "mkraid íĺ ďđŕöŕçäîëüíű (ěîćŕ raid ďđűëŕäű ŕäńóňíi÷ŕţöü?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Íĺäŕńňŕňęîâŕ đŕçäçĺëࢠäë˙ RAID óçđî˘í˙ %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Îďöűi ŕääŕëĺíŕăŕ ďđűíňýđó lpd"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (çěî˘÷ŕííĺ %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9031,7 +9149,7 @@ msgstr "öięŕâŕ"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -9128,7 +9246,7 @@ msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
#: ../../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"
msgstr ""
@@ -9175,7 +9293,7 @@ msgstr "Ńĺňęŕâű iíňýđôĺéń"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9200,7 +9318,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9216,7 +9334,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9231,7 +9349,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9280,8 +9398,8 @@ 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 your 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
@@ -9318,11 +9436,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ęŕëi ëŕńęŕ, âűéäçiöĺ, ŕ ďîňűě ńęŕđűńňŕéöĺ Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ęŕëi ëŕńęŕ, ďĺđŕéäçiöĺ ˘ %s äë˙ ŕęňűâŕöűi çě˙íĺíí˙˘"
@@ -9370,16 +9488,6 @@ msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr ""
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9432,52 +9540,67 @@ msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Íŕńňđîéęŕ IDE"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "Íŕńňđîéęŕ X Window"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Äűńęŕâîä íĺäŕńňóďíű"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9601,13 +9724,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9616,41 +9739,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Í˙ěŕ ďŕđîëţ"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9661,68 +9784,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9730,926 +9853,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Âűäŕëiöü ÷ŕđăó äđóęó"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Âűäŕëiöü Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Í˙ěŕ ďŕđîëţ"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Ŕá˙đűöĺ ôŕéë"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Ńĺňęŕ:"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Ňűď: "
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "×ŕęŕéöĺ"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Ç ęîëŕě"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Ç ęîëŕě"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Îďöűi ěîäóëţ:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
#, fuzzy
msgid "across Network"
msgstr "Ńĺňęŕ:"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
#, fuzzy
msgid "on Tape Device"
msgstr "Ďîđň ďđűíňýđó"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Ěűř: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îďöűi"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
#, fuzzy
msgid "\t-Tape \n"
msgstr "Ňűď: "
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "˛ířű˙"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Âűäŕëiöü ÷ŕđăó äđóęó"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Ďĺđŕęŕíôiăóđŕâŕöü ëŕęŕëüíóţ ńĺňęó"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Iě˙ ěŕřűíű"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Ďŕđîëü"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Iě˙ ěŕřűíű"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Ďŕ âűáŕđó"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü äŕäŕíű äŕ ńińňýěű"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Çŕőŕâŕííĺ ˘ ôŕéë"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10681,7 +10806,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10690,7 +10815,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10731,7 +10856,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10759,17 +10884,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10786,7 +10911,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10826,7 +10951,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10837,7 +10962,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10850,7 +10975,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10932,8 +11057,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Ęŕíńîëüíű˙ łíńňđóěĺíňŕëüíű˙ ńđîäęł"
@@ -11010,28 +11135,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Ďîđň"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
@@ -11140,11 +11265,6 @@ msgstr "Ěŕéńňŕđ ńňâŕđýíí˙..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11268,7 +11388,7 @@ msgstr "Îďöűi ěîäóëţ:"
msgid "Size"
msgstr "Ďŕěĺđ: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Ŕäíŕ˘ëĺííĺ ç äűńęĺňű"
@@ -11342,24 +11462,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11835,156 +11955,156 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Ďđŕöî˘íŕ˙ ăđóďŕ"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Đŕçäçĺë %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Çíiř÷űöü"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Ń˙đýäíi"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Çđîáëĺíŕ"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Âűäŕëiöü ÷ŕđăó äđóęó"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Ďđűí˙öü ęŕđűńňŕëüíięŕ"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Âĺđńi˙: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Ďîđň"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Iě˙ ęŕđűńňŕëüíięó:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Ďđŕöî˘íŕ˙ ăđóďŕ"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11996,137 +12116,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Ďŕěĺđű ýęđŕíó"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńó"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
+msgid "Preview"
+msgstr "ďđűëŕäŕ"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "ďđűëŕäŕ"
+msgid "Save theme"
+msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Ŕá˙đűöĺ ěŕíiňîđ"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "URI ďđűíňýđó"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12267,6 +12397,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -12301,11 +12437,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Íĺěŕă÷űěŕ çŕďóńöłöü live upgrade !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12584,16 +12720,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12670,7 +12803,7 @@ msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
msgid "Exit install"
msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12934,6 +13067,21 @@ msgstr "Ěóëüňűěĺäű˙ - Ńňâŕđýííĺ CD"
msgid "Scientific Workstation"
msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy ďŕâiíĺí áűöü ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Âűőŕä"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (íĺ ďđŕöóĺ ďđű ńňŕđűő âĺđńi˙ő BIOS)"
@@ -13021,9 +13169,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Test again"
#~ msgstr "Ďđŕâĺđűöü ˙ř÷ý đŕç"
-#~ msgid "Setting security level"
-#~ msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
@@ -13176,9 +13321,6 @@ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Íĺâűçíŕ÷ŕíŕńöü (%s), áóäçüöĺ äŕęëŕäíű˙\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (çěî˘÷ŕííĺ %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s. Óâ˙äçiöĺ `none' ďđű ŕäńóňíŕńöi) "
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index e7d19aece..5b0c95b11 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -89,24 +89,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr "Čçďîëçâŕé đŕçřčđĺíčĺňî Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Íŕńňđîéęŕ ńŕěî íŕ ęŕđňŕ \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ń őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ â XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ń ĹĘŃĎĹĐČĚĹÍŇŔËÍO őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĘÎĚĎŢŇÚĐÚŇ ÂČ ĚÎĆĹ ÄŔ "
"ÇŔÁČĹ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (číńňŕëŕöč˙ ăđŕôč÷ĺí äđŕéâĺđ)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Ęëčĺíňńęŕ"
@@ -177,32 +177,32 @@ msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Čçőîä"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -301,25 +301,25 @@ msgstr "Čçáĺđĺňĺ đŕçäĺëčňĺëíŕ ńďîńîáíîńň č äúëáî÷číŕ íŕ öâĺňîâĺňĺ"
msgid "Graphics card: %s"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Îňęŕç"
@@ -397,11 +397,11 @@ msgstr "XFree86 ńúđâúđ: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 äđŕéâĺđ: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ďđč ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"Kîěďţňúđŕ âč ěîćĺ ŕâňîěŕňč÷íî, äŕ âëĺçĺ â X ďđč ńňŕđňčđŕíĺ.\n"
"Čńęŕňĺ ëč X äŕ ńĺ ńňŕđňčđŕ, ęîăŕňî đĺńňŕđňčđŕňĺ ńčńňĺěŕňŕ?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Ęŕęúâ ĺ ňčďúň íŕ ISDN âđúçęŕňŕ ?"
@@ -495,7 +495,7 @@ msgstr "Ęîěďŕęňĺí"
msgid "compact"
msgstr "ęîěďŕęňĺí"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Âčäĺî đĺćčě"
@@ -503,17 +503,17 @@ msgstr "Âčäĺî đĺćčě"
msgid "Delay before booting default image"
msgstr "Çŕáŕâ˙íĺ ďđĺäč ńňŕđňčđŕíĺňî íŕ default ä˙ëŕ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ďŕđîëŕ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Ďŕđîëŕ (îňíîâî)"
@@ -547,14 +547,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Îďöč˙ňŕ ``Îăđŕíč÷č îďöččňĺ îň ęîěŕíäíč˙ đĺä'' ĺ áĺçďîëĺçíŕ áĺç ďŕđîëŕ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
@@ -591,7 +591,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -599,156 +599,156 @@ msgstr ""
"Ňîâŕ ńŕ đŕçëč÷íčňĺ çŕďčńč.\n"
"Ěîćĺňĺ äŕ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Äîáŕâč"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Ăîňîâî"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ěîäčôčöčđŕé"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Ęŕęúâ ňčď číôîđěŕöč˙ čńęŕňĺ äŕ ďđčáŕâčňĺ"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Äđóăŕ ÎŃ (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Äđóăŕ ÎŃ (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Äđóăŕ ÎŃ (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Îáđŕç"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Ăëŕâĺí"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Äîďúëâŕíĺ"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "×ĺňĺíĺ-çŕďčń"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Ňŕáëčöŕ"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Îďŕńĺí"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Ĺňčęĺň"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Ďî ďîäđŕçáčđŕíĺ"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-ăîëĺěčíŕ"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Áĺç ăđŕôčęŕ"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ďđĺěŕőíč çŕďčń"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Ďđŕçĺí ĺňčęĺň íĺ ĺ đŕçđĺřĺí"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Ňđ˙áâŕ äŕ čěŕňĺ swap-ä˙ë"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ňîçč ĺňčęĺň âĺ÷ĺ ńĺ čçďîëçâŕ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Íŕěĺđĺíč ńŕ %s %s číňĺđôĺéńč"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Čěŕňĺ ëč äđóă(č) ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Čěŕňĺ ëč í˙ęŕęúâ %s číňĺđôĺéń?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Äŕ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Âčć őŕđäóĺđíŕňŕ číôîđěŕöč˙"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Číńňŕëčđŕíĺ íŕ äđŕéâĺđ çŕ %s ďëŕňęŕ %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(ěîäóë %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -759,17 +759,17 @@ msgstr ""
"Îďöččňĺ ńŕ âúâ ôîđěŕň ``čěĺ=ńňîéíîńň čěĺ2=ńňîéíîńň2 ...''.\n"
"Íŕďđčěĺđ: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Îďöčč íŕ ěîäóëŕ:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ęîé %s äđŕéâĺđ äŕ ďđîáâŕě ?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -788,15 +788,15 @@ msgstr ""
"îň ęî˙ňî ńĺ íóćäŕĺ ? Ďî ďđčíöčď ňîâŕ ěîćĺ äŕ çŕáčĺ ęîěďţňúđŕ âč, íî í˙ěŕ äŕ "
"ăî ďîâđĺäč."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Çŕäŕé îďöčč"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -805,63 +805,63 @@ msgstr ""
"Çŕđĺćäŕíĺňî íŕ ěîäóëŕ %s íĺ óńď˙.\n"
"Čńęŕňĺ ëč äŕ îďčňŕňĺ îňíîâî ń äđóăč ďŕđŕěĺňđč ?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(âĺ÷ĺ ďđčáŕâčő %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ňŕçč ďŕđîëŕ ĺ ďđĺęŕëĺíî ďđîńňŕ"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Ěîë˙, çŕäŕéňĺ ďîňđĺáčňĺëńęî čěĺ"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ďîňđĺáčňĺëńęîňî čěĺ ěîćĺ äŕ âęëţ÷âŕ ńŕěî ěŕëęč áóęâč, íîěĺđŕ, `-' č `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Äîáŕâč ďîňđĺáčňĺë"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -870,32 +870,32 @@ msgstr ""
"Âúâĺäĺňĺ ďîňđĺáčňĺë\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Ďđčĺěč ďîňđĺáčňĺë"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Čńňčíńęî čěĺ"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Řĺë"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Čęîíŕ"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -904,59 +904,59 @@ msgstr ""
"ďîňđĺáčňĺë.\n"
"Čńęŕňĺ ëč ňŕçč âúçěîćíîńň ?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Čçáĺđĺňĺ ďîäđŕçáčđŕů ńĺ ďîňđĺáčňĺë :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Čçáĺđĺňĺ Windows Manager çŕ ńňŕđňčđŕíĺ:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Âńč÷ęč"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,42 +965,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Äîáđĺ äîřëč ďđč Cracker-čňĺ"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Ëîřî"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ńňŕíäŕđňíŕ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Âčńîęî"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Âčńîęî"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Ďŕđŕíîč÷íî"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1010,7 +1010,7 @@ msgstr ""
"óďîňđĺáŕ, íî ĺ ďî-÷óâńňâčňĺëíî: íĺ ňđ˙áâŕ äŕ áúäĺ čçďîëçâŕíŕ íŕ ěŕřčíč\n"
"ńâúđçŕíč ń äđóăč čëč ďî Číňĺđíĺň. Í˙ěŕ äîńňúď ń ďŕđîëč."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1018,7 +1018,7 @@ msgstr ""
"Ďŕđîëŕňŕ ńĺăŕ ĺ âęëţ÷ĺíŕ, íî čçďîëçâŕíĺňî ęŕňî ěđĺćîâ ęîěďţňúđ íĺ ĺ "
"ďđĺďîđú÷čňĺëíî."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1028,13 +1028,13 @@ msgstr ""
"čçďîëçâŕí äŕ ńĺ ńâúđçâŕ ęúě Číňĺđíĺň ęŕňî ęëčĺíň. Čěŕ ďđîâĺđęč íŕ "
"ńčăóđíîńňňŕ. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1049,7 +1049,7 @@ msgstr ""
"Ńčăóđíîńňňŕ ńĺăŕ ĺ äîńňŕňú÷íî ăîë˙ěŕ äŕ ńĺ čçďîëçâŕ ńčńňĺěŕňŕ ęŕňî\n"
"ńúđâúđ ďđčĺěŕů âđúçęč îň ěíîăî ęëčĺíňč. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1058,36 +1058,36 @@ msgstr ""
"Čçáčđŕěĺ 4-ňî íčâî, íî ńčńňĺěŕňŕ ĺ íŕďúëíî çŕňâîđĺíŕ.\n"
"Íčâîňî íŕ ńčăóđíîńň ĺ íŕ ěŕęńčěóěŕ ńč."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Îďöčč"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Íčâî íŕ ńčăóđíîńň"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Čçďîëçâŕéňĺ libsafe çŕ ńúđâúđč"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Áčáëčîňĺęŕ, ęî˙ňî îńčăóđ˙âŕ çŕůčňŕ îň aňŕęč ń ďđĺďúëâŕíĺ íŕ áóôĺđ č ôîđěŕňíč "
"ńňđčíăîâĺ."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1100,7 +1100,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1125,7 +1125,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:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -1139,7 +1139,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:941
+#: ../../bootloader.pm_.c:992
#, 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."
@@ -1154,7 +1154,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:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
@@ -1168,7 +1168,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:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
@@ -1182,33 +1182,33 @@ 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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Äĺńęňîď"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Ńňŕđňîâî Ěĺíţ"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕňĺ bootloader íŕ ä˙ëŕ %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "í˙ěŕ âúâĺäĺíŕ ďîěîů îůĺ.\n"
@@ -1260,106 +1260,106 @@ msgstr "Đĺćčě íŕ Lilo/grub"
msgid "Yaboot mode"
msgstr "Đĺćčě íŕ Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Ńúçäŕé íîâ ä˙ë"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ăđĺřęŕ"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Ęîďčđŕíĺ íŕ %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Áĺç ăđŕôčęŕ"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Čçáîđ íŕ ęëŕń číńňŕëŕöč˙"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1368,22 +1368,22 @@ msgstr ""
"Â ěîěĺíňŕ čçďîëçâŕňĺ %s ęŕňî ďđîăđŕěŕ çŕ ńňŕđňčđŕíĺ.\n"
"Öúęíĺňĺ íŕ Íŕńňđîé, çŕ äŕ ńňŕđňčđŕňĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Íŕńňđîé"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Çŕďŕçč čçáîđ íŕ ďŕęĺňč"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1392,44 +1392,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Ńčńňĺěĺí đĺćčě"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Ďóńíč X-Window ńčńňĺěŕňŕ ďđč ńňŕđňčđŕíĺ"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Íĺ, íĺ čńęŕě autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Äŕ, čńęŕě autologin ń ňîâŕ (ďîňđĺáčňĺë, äĺńęňîď)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "íĺ ěîăŕ äŕ îňâîđ˙ /etc/inittab çŕ ÷ĺňĺíĺ: %s"
@@ -1534,53 +1534,61 @@ msgstr "ńĺđčéíŕ"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "íîâ"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ěîíňčđŕé"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Ńúđâúđ"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Ńúđâúđ"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Îďöčč: %s"
@@ -1669,7 +1677,7 @@ msgstr "Ďđŕçĺí"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Äđóăŕ"
@@ -1812,7 +1820,7 @@ msgstr ""
"Đĺçĺđâíŕňŕ ňŕáëčöŕ íŕ ä˙ëîâĺňĺ íĺ ĺ ńúń ńúůŕňŕ ăîëĺěčíŕ\n"
"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Ďđĺäóďđĺćäĺíčĺ"
@@ -2371,7 +2379,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:3529
#, fuzzy
msgid "Username"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
@@ -2386,23 +2394,23 @@ msgstr "NIS äîěĺéí"
msgid "Search servers"
msgstr "DNS ńúđâúđ"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ôîđěŕňčđŕíĺ îň %s ďđîâŕëĺíî"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "íĺ çíŕě ęŕę äŕ ôîđěŕňčđŕě %s â ňčď %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ăđĺřęŕ ďđč äĺěîíňčđŕíĺňî íŕ %s: %s"
@@ -2489,47 +2497,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Ăđĺřęŕ ďđč îňâŕđ˙íĺ íŕ %s çŕ çŕďčń: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Äđŕéâĺđ"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Ďîěîů"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Íĺčçâĺńňĺí ěîäĺë"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2655,7 +2727,8 @@ msgid "/_Quit"
msgstr "Čçőîä"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ďîěîů"
@@ -2675,76 +2748,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Číôîđěčđŕé çŕ áúă"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Ďîěîů/_Îňíîńíî..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Çŕńč÷ŕíĺ íŕ äčńęîâĺňĺ"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Âčć őŕđäóĺđíŕňŕ číôîđěŕöč˙"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Íŕńňđîéęŕ íŕ ěčřęŕ"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Čçňđčâŕíĺ íŕ ďđčíňĺđŕ \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d ńĺęóíäč"
@@ -4402,7 +4476,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4426,7 +4500,7 @@ msgstr ""
"\n"
"Íŕčńňčíŕ ëč čńęŕňĺ äŕ číńňŕëčđŕňĺ ňĺçč ńúđâúđč ?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4435,20 +4509,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ broadcast áĺç NIS äîěĺéí"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ńëîćĺňĺ FAT ôîđěŕňčđŕíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Ňŕçč äčńęĺňŕ íĺ ĺ ôîđěŕňčđŕíŕ íŕ FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4456,12 +4530,12 @@ msgstr ""
"Çŕ äŕ čçďîëçâŕňĺ çŕďŕçĺí čçáîđ íŕ ďŕęĺňč, ńňŕđňčđŕéňĺ číńňŕëŕöč˙ňŕ ń ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4705,7 +4779,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Äîáđĺ äîřëč â %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
@@ -4736,11 +4810,11 @@ msgstr "Ęëŕń číńňŕëŕöč˙"
msgid "Please choose one of the following classes of installation:"
msgstr "Ěîë˙, čçáĺđĺňĺ ĺäčí îň ńëĺäíčňĺ ęëŕńîâĺ íŕ číńňŕëŕöč˙:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Čçáîđ íŕ ăđóďŕ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Čçáčđŕíĺ íŕ ďŕęĺňč ĺäčí ďî ĺäčí"
@@ -4818,7 +4892,7 @@ msgstr "Ďîęŕćč ŕâňîěŕňč÷íî îňáĺë˙çŕíčňĺ ďŕęĺňč"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Číńňŕëčđŕé"
@@ -4838,7 +4912,7 @@ msgstr "Ěčěčíŕëíŕ číńňŕëŕöč˙"
msgid "Choose the packages you want to install"
msgstr "Čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Číńňŕëčđŕě"
@@ -4865,17 +4939,17 @@ msgid "Installing package %s"
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňŕ %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Ďđčĺěč"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Îňęŕćč"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4892,16 +4966,16 @@ msgstr ""
"ROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč ďîđú÷âŕíĺňî íŕ ďŕęĺňčňĺ:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ ďŕęĺňčňĺ:"
@@ -5027,7 +5101,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5223,7 +5297,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ęëŕâčŕňóđŕ"
@@ -5435,31 +5509,31 @@ msgstr "Ńëîćĺňĺ äčńęĺňŕ ńúäúđćŕůŕ čçáîđ íŕ ďŕęĺňč"
msgid "Selected size is larger than available space"
msgstr "Čçáđŕíŕňŕ ăîëĺěčíŕ ĺ ďî-ăîë˙ěŕ îň äîńňúďíîňî ďđîńňđŕíńňâî"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Čçáĺđĺňĺ ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Ĺäčí ěîěĺíň"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5469,16 +5543,16 @@ msgstr ""
"Ŕęî í˙ěŕňĺ íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ.\n"
"Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, ěŕőíĺňĺ ăč, č íŕňčńíĺňĺ Ok. "
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM îçŕăëŕâĺí \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5487,21 +5561,21 @@ msgstr ""
"Číńňŕëčđŕě ďŕęĺň %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ńëĺä číńňŕëŕöčîííŕ íŕńňđîéęŕ"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ńëîćĺňĺ ńňŕđňčđŕůŕňŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ńëîćĺňĺ äčńęĺňŕ çŕ îáíîâ˙âŕíĺ íŕ ěîäóëč â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5567,7 +5641,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5579,157 +5653,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, fuzzy
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Čçáĺđĺňĺ îăëĺäŕëĺí ńúđâúđ,îň ęîéňî äŕ ďîëó÷čňĺ ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Ęî˙ ĺ âđĺěĺâŕňŕ âč çîíŕ ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Őŕäđóĺđíč˙ň âč ÷ŕńîâíčę ĺ íŕńňđîĺí ďî GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Ŕâňîěŕňč÷íŕ ńčíőđîíčçŕöč˙ íŕ âđĺěĺňî (čçďîëçâŕ NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Í˙ěŕ ďđčíňĺđ"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Čěŕňĺ ëč äđóă(č) ?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Îáîáůĺíčĺ"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Ěčřęŕ"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "×ŕńîâŕ çîíŕ"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ďđčíňĺđ"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Çâóęîâŕ ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS äîěĺéí"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Ëîęŕëíč ôŕéëîâĺ"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Âúâĺäĺňĺ ďŕđîëŕ çŕ root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Áĺç ďŕđîëŕ"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Čäĺíňčôčęŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP ŕóňîđčçŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Áŕçîâ dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS ŕóňîđčçŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS äîěĺéí"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5745,21 +5819,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP ŕóňîđčçŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Čěĺ íŕ äîěĺéíŕ"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5788,19 +5862,19 @@ msgstr ""
"Ŕęî čńęŕňĺ äŕ ńúçäŕäĺňĺ bootdisk çŕ âŕřŕňŕ ńčńňĺěŕ, ďîńňŕâĺňĺ äčńęĺňŕ â\n"
"ďúđâîňî óńňđîéńňâî č íŕňčńíĺňĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ďúđâî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Âňîđî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ďđĺńęî÷č"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5826,7 +5900,7 @@ msgstr ""
"ńëó÷ŕč íŕ ńđčâ. Čńęŕňĺ ëč äŕ ńúçäŕě bootdisk çŕ ńčńňĺěŕňŕ âč ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5835,28 +5909,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ńúćŕë˙âŕě í˙ěŕ ôëîďč"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Čçáĺđĺňĺ ôëîďč äđŕéâ,ęúäĺňî äŕ íŕďđŕâčňĺ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ńëîćĺňĺ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Ńúçäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ďîäăîňîâęŕ íŕ bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5868,11 +5942,11 @@ msgstr ""
"Číńňŕëŕöč˙ňŕ ůĺ ďđîäúëćč, íî ůĺ ňđ˙áâŕ\n"
"äŕ čďîëçâŕňĺ BootX, çŕ äŕ ńňŕđňčđŕňĺ ěŕřčíŕňŕ ńč"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5880,15 +5954,15 @@ msgstr ""
"Ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ aboot, \n"
"äŕ ńĺ îďčňŕě ëč äŕ ďđîäúëćŕ číńňŕëŕöč˙ňŕ äîđč, ŕęî ňîâŕ óíčćňîćč ďúđâč˙ ä˙ë ?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Číńňŕëčđŕíĺ íŕ bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Číńňŕëŕöč˙ňŕ íŕ bootloader ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5905,17 +5979,17 @@ msgstr ""
" Ńëĺä ęîĺňî íŕďčřĺňĺ: shut-down\n"
"Ďđč ńëĺäâŕůîňî đĺńňŕđňčđŕíĺ áč ňđ˙áâŕëî äŕ âčäĺňĺ ďîäńęŕçęŕňŕ."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ńëîćĺňĺ ďđŕçíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5925,7 +5999,7 @@ msgstr ""
"\n"
"Íŕčńňčíŕ ëč čńęŕňĺ äŕ čçëĺçĺňĺ ńĺăŕ ?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5957,15 +6031,15 @@ msgstr ""
"Číôîđěŕöč˙ çŕ íŕńňđîéâŕíĺ íŕ ńčńňĺěŕňŕ âč ěîćĺňĺ äŕ íŕěĺđčňĺ â\n"
"ńëĺäčíńňŕëŕöčîííŕňŕ ăëŕâŕ îň Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Ďîäăîňâč äčńęĺňŕ çŕ ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5979,15 +6053,15 @@ msgstr ""
"\n"
"Ěîćĺ áč čńęŕňĺ äŕ ďîâňîđčňĺ číńňŕëŕöč˙ňŕ.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Ŕâňîěŕňčçčđŕí"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ďîâňîđč"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Çŕďŕçč čçáîđ íŕ ďŕęĺňč"
@@ -6023,14 +6097,14 @@ msgstr "Íŕďđĺäíč÷ŕâ"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Ňĺęńň"
@@ -6478,7 +6552,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "\"Îěŕăüîńŕí ęđúă\" îň ěîíňčđŕíč˙: %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Ďúđâî ďđĺěŕőíč ëîăč÷íčňĺ ä˙ëîâî\n"
@@ -6616,15 +6690,15 @@ msgstr "í˙ěŕ"
msgid "No mouse"
msgstr "Áĺç ěčřęŕ"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Çŕ äŕ ŕęňčâčđŕňĺ ěčřęŕňŕ ńč,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "ÁÓŇÍĹŇĹ ŇÎĎ×ĹŇÎ !"
@@ -6661,11 +6735,11 @@ msgstr "Čç÷čńňč äúđâîňî"
msgid "Toggle between flat and group sorted"
msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó íîđěŕëíî č ńîđňčđŕíĺ ďî ăđóďč"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6675,23 +6749,19 @@ msgstr ""
"Í˙ęîč âđúçęč čçďîëçâŕň PPTP, ŕ maëęî čçďîëçâŕň DHCP.\n"
"Ŕęî íĺ çíŕĺňĺ, čçáĺđĺňĺ 'čçďîëçâŕé PPPOE'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "čçďîëçâŕé DHCP"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "čçďîëçâŕé PPPOE"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "čçďîëçâŕé PPPTP"
@@ -6792,7 +6862,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:362
msgid "Configuring network"
msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
@@ -6808,15 +6878,15 @@ 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:367
msgid "Host name"
msgstr "Čěĺ íŕ őîńň:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Ěŕăüîńíčę çŕ íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
@@ -6863,8 +6933,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Ńňŕđŕ íŕńňđîéęŕ (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Íŕńňđîéęŕ íŕ IDSN"
@@ -6900,23 +6970,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Ęŕęúâ ďđîňîęîë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Ęŕęúâ ňčď ęŕđňŕ čěŕňĺ ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Íĺ çíŕě"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6929,19 +7004,19 @@ msgstr ""
"\n"
"Ŕęî čěŕňĺ PCMCIA ęŕđňŕ, ůĺ ňđ˙áâŕ äŕ çíŕĺňĺ IRC č IO íŕ ęŕđňŕňŕ ńč.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Îňęŕç"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Íŕňŕňúę"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Ęî˙ ĺ ISDN ęŕđňŕňŕ âč ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6949,7 +7024,7 @@ msgstr ""
"Îňęđčňŕ ĺ ISDN PCI ęŕđňŕ, íî ń íĺďîçíŕň ňčď. Ěîë˙ čçáĺđĺňĺ í˙ęî˙ PCI ęŕđňŕ "
"îň ńëĺäâŕůč˙ň ĺęđŕí."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Íĺ ĺ íŕěĺđĺíŕ ISDN PCI ęŕđňŕ. Ěîë˙ čçáĺđĺňĺ îň ńëĺäâŕůč˙ň ĺęđŕí."
@@ -7001,7 +7076,7 @@ msgstr "Ďúđâč DNS ńúđâúđ (ďî čçáîđ)"
msgid "Second DNS Server (optional)"
msgstr "Âňîđč DNS ńúđâúđ (ďî čçáîđ)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7009,7 +7084,7 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ńĺ îňâúđćĺňĺ čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7017,11 +7092,11 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Â ěîěĺíňŕ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7029,33 +7104,33 @@ msgstr ""
"\n"
"Ěîćĺňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Â ěîěĺíňŕ íĺ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Ńâúđćč"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Îňâúđćč"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Â ěîěĺíňŕ íŕńňđîéâŕě ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Číňĺđíĺň âđúçęŕ č íŕńňđîéęŕ"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ńĺăŕ ůĺ íŕńňđîčě %s âđúçęŕňŕ."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7073,12 +7148,12 @@ msgstr ""
"\n"
"Íŕňčńíĺňĺ OK, çŕ äŕ ďđîäúëćčňĺ."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7089,7 +7164,7 @@ msgstr ""
"Öúęíĺňĺ Ok, çŕ äŕ çŕďŕçčňĺ íŕńňđîéęŕňŕ, čëč Îňě˙íŕ, çŕ äŕ ďđĺíŕńňîčňĺ "
"Číňĺđíĺň č ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7101,72 +7176,72 @@ msgstr ""
"Âčĺ ńňĺ íŕ ďúň äŕ íŕńňđîčňĺ Číňĺđíĺň/ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
"Ŕęî íĺ čńęŕňĺ äŕ čçďîëçâŕňĺ ŕâňîěŕňč÷íî çŕńč÷ŕíĺ, čçęëţ÷ĺňĺ ęóňčéęŕňŕ.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Čçáĺđĺňĺ ďđîôčë çŕ íŕńňđîéęŕ"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Îňęđčâŕíĺ íŕ óńňđîéńňâŕ ..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Îáčęíîâĺíŕ ěîäĺěíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN âđúçęŕ"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "çŕńĺ÷ĺíŕ %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL âđúçęŕ"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "çŕńĺ÷ĺí íŕ číňĺđôĺéń %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Ęŕáĺëíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "çŕńĺ÷ĺíŕ ĺ ęŕáĺëíŕ âđúçęŕ"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN âđúçęŕ"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet ęŕđňč çŕńĺ÷ĺíč"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Čçáĺđĺňĺ âđúçęŕňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7176,23 +7251,23 @@ msgstr ""
"Čçáĺđĺňĺ ňîçč, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Číňĺđíĺň âđúçęŕ"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Čńęŕňĺ ëč äŕ ńňŕđňčđŕňĺ âđúçęŕňŕ ńč ďđč çŕđĺćäŕíĺ ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Ěđĺćŕňŕ ňđ˙áâŕ äŕ áúäĺ đĺńňŕđňčđŕíŕ"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7203,7 +7278,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7213,7 +7288,7 @@ msgstr ""
"\n"
"Íŕńňđîéęčňĺ ůĺ áúäŕň ďđčëîćĺíč ęúě ńčńňĺěŕňŕ âč.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7221,14 +7296,14 @@ msgstr ""
"Ńëĺä ęŕňî ńňŕíĺ ňîâŕ, ďđĺďîđú÷âŕěĺ âč äŕ đĺńňŕđňčđŕňĺ X\n"
"ńđĺäŕňŕ ńč, çŕ äŕ čçáĺăíĺňĺ ďđîáëĺěč ńúń ńě˙íŕňŕ čěĺňî íŕ őîńňŕ."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7239,7 +7314,7 @@ msgstr ""
"Ďđîńňî ďđčĺěĺňĺ, çŕ äŕ îńňŕâčňĺ óńňđîéńňâîňî íŕńňđîĺíî.\n"
"Ďîďđŕâęŕňŕ íŕ ďîëĺňŕňŕ ďî-äîëó ůĺ ďđĺçŕďčřĺ ňŕçč íŕńňđîéęŕ."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7249,43 +7324,43 @@ msgstr ""
"Âń˙ęî óńňđîéńňâî ňđ˙áâŕ äŕ áúäĺ âúâĺäĺíî ęŕňî IP ŕäđĺń\n"
"ń ňî÷ęîâî-äĺńĺňč÷íî îçíŕ÷ĺíčĺ (íŕďđčěĺđ, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâîňî óńňđîéńňâî %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (äđŕéâĺđ %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ŕäđĺń"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Ěđĺćîâŕ ěŕńęŕ"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Ŕâňîěŕňč÷ĺí IP ŕäđĺń"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7297,42 +7372,53 @@ msgstr ""
"ęŕňî ``mybox.mylab.myco.com''.\n"
"Ěîćĺňĺ ńúůî äŕ âúâĺäĺňĺ IP ŕäđĺńŕ íŕ Âŕřč˙ gateway, ŕęî čěŕňĺ ňŕęúâ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS ńúđâúđ"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway óńňđîéńňâî"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Íŕńňđîéęŕ íŕ proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Ďđîńëĺä˙âŕíĺ íŕ ID íŕ ěđĺćîâŕňŕ ęŕđňŕ (ďîëĺçíî ďđč ëŕďňîďč)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL ňđ˙áâŕ äŕ ĺ çŕďî÷âŕ ń 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8779,7 +8865,7 @@ msgstr "Ďĺ÷ŕňŕíĺ íŕ ďđčíňĺđ \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9313,11 +9399,6 @@ msgstr ""
"Ěîë˙, ďîďúëíĺňĺ číôîđěŕöč˙ňŕ çŕ FTP proxy.\n"
"Îńňŕâĺňĺ ďđŕçíî, ŕęî íĺ čńęŕňĺ FTP proxy."
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URL ňđ˙áâŕ äŕ ĺ çŕďî÷âŕ ń 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9365,6 +9446,43 @@ msgstr "mkraid ďđîďŕäíŕ (ěîćĺ áč raidtools ëčďńâŕň ?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Í˙ěŕ äîńňŕňú÷íî ä˙ëîâĺ çŕ RAID íčâî %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Íčâî íŕ ńčăóđíîńň"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Íčâî íŕ ńčăóđíîńň"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Îňäŕëĺ÷ĺíŕ ŕäěčíčńňđŕöč˙"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Ďî ďîäđŕçáčđŕíĺ)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ěîë˙, čç÷ŕęŕéňĺ, ďîäăîňâ˙íĺ íŕ číńňŕëŕöč˙ňŕ"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ďóńíč ALSA (Advanced Linux Sound Architecture) çâóęîâŕňŕ ńčńňĺěŕ"
@@ -9671,7 +9789,7 @@ msgstr "Číňĺđíĺň"
msgid "File sharing"
msgstr "Ďîäĺë˙íĺ íŕ ôŕéëîâĺ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Ńčńňĺěŕ"
@@ -9763,7 +9881,7 @@ 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"
msgstr ""
@@ -9810,7 +9928,7 @@ msgstr "Ěđĺćîâ číňĺđôĺéń"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9835,7 +9953,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9851,7 +9969,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9866,7 +9984,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9915,8 +10033,8 @@ 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 your 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
@@ -9952,11 +10070,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňč ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ěîë˙ čçëĺçňĺ îň ńĺńč˙ňŕ č čçďîëçâŕéňĺ Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ěîë˙ âëĺçňĺ îňíîâî â %s, çŕ äŕ ŕęňčâčđŕňĺ ďđîěĺíčňĺ"
@@ -10004,17 +10122,6 @@ msgstr "Äîáŕâč ďîňđĺáčňĺë"
msgid "Add/Del Clients"
msgstr "DHCP ęëčĺíň"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Ďîěîů"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10067,53 +10174,68 @@ msgstr "Äîáŕâč ďîňđĺáčňĺë"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP ęëčĺíň"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Íŕńňđîéęŕ ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "ďđĺíŕńňđîéęŕ"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Ńëîćĺňĺ ńňŕđňčđŕůŕňŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10238,13 +10360,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Ňĺńňîâč ńňđŕíčöč"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10253,41 +10375,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Áĺç ďŕđîëŕ"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Íĺ ěîăŕ äŕ îňâîđ˙ %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10298,68 +10420,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10367,926 +10489,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Čçáîđ íŕ ďŕęĺňč"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Čçňđčâŕíĺ íŕ îďŕřęŕňŕ"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Ďđĺěŕőíč Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Ďđĺőâúđëč"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "îůĺ âĺäíúć ďŕđîëŕ"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Ďđĺőâúđëč"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Ěîë˙, öúęíĺňĺ íŕ íîńčňĺë˙"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Ěđĺćîâ číňĺđôĺéń"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Âčä"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Ĺäčí ěîěĺíň"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Wheel"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Îďöčč íŕ ěîäóëŕ:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Ôŕéëîâč ńčńňĺěč"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Óńňđîéńňâî íŕ ěčřęŕňŕ: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Îďöčč"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN âđúçęŕ"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Âúçńňŕíîâč îň äčńęĺňŕ"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Äđóăŕ"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Čçňđčâŕíĺ íŕ îďŕřęŕňŕ"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Âúçńňŕíîâč îň äčńęĺňŕ"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Âúçńňŕíîâč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Čěĺ íŕ őîńň:"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Ďŕđîëŕ"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Čěĺ íŕ őîńň:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Ęëčĺíňńęŕ"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Âúçńňŕíîâč ňŕáëčöŕňŕ ń ä˙ëîâĺňĺ"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Ďđĺäčřĺí"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Ńúńňî˙íčĺ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Âúçńňŕíîâč îň ôŕéë"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň číńňŕëčđŕíč"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Ëîř backup-ôŕéë"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Çŕďŕçč âúâ ôŕéë"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Íŕńňđîéęŕ"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Ôŕéëîâč ńčńňĺěč"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11318,7 +11442,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11327,7 +11451,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11368,7 +11492,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11396,17 +11520,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11423,7 +11547,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11463,7 +11587,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11474,7 +11598,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11487,7 +11611,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11569,8 +11693,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Ęîíçîëíč číńňđóěĺíňč"
@@ -11646,28 +11770,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "ďîđň"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
@@ -11768,10 +11892,6 @@ msgstr "Ěŕăüîńíčę..."
msgid "Apply"
msgstr "Ďđčëîćč"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ńâúđçŕí"
@@ -11889,7 +12009,7 @@ msgstr "Čěĺ íŕ ěîäóë"
msgid "Size"
msgstr "Ăîëĺěčíŕ"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11954,12 +12074,12 @@ msgstr "Đĺçóëňŕň"
msgid "Build the disk"
msgstr "Ńúçäŕé äčńęúň"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Ďđîâĺđĺňĺ čěŕňĺ ëč äčńęĺňŕ â óńňđîéńňâîňî %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11968,12 +12088,12 @@ msgstr ""
"Í˙ěŕ äčńęĺňŕ â óńňîéńňâîňî %s.\n"
"Ěîë˙ ďîńňŕâĺňĺ äčńęĺňŕ."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Íĺ ěîćĺ äŕ ńĺ đŕáîňč ń: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12460,157 +12580,157 @@ msgstr ""
"\n"
"Öúęíĺňĺ ``Íŕńňđîé'', ŕęî čńęŕňĺ äŕ ńňŕđňčđŕíĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Đŕáîňíŕ ăđóďŕ"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "ä˙ë %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Čçňđčé"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Ăîňîâî"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Äîáŕâč ěîäóëŕ"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Äîáŕâč ďđčíňĺđ"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Čçňđčâŕíĺ íŕ îďŕřęŕňŕ"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Ďđčĺěč ďîňđĺáčňĺë"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Âĺđńč˙: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Ďîđň"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Çŕďŕçč čçáîđ íŕ ďŕęĺňč"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Đŕáîňíŕ ăđóďŕ"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Íĺ ńâúđçŕí"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12622,137 +12742,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "ńúäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Îáůî čěĺ"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "óńňđîéńňâî"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "óńňđîéńňâî"
+msgid "Save theme"
+msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Čçáĺđĺňĺ ěîíčňîđ"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Čçáîđ ěîäĺë íŕ ďđčíňĺđŕ"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Âúâĺäĺňĺ URI íŕ ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Çŕńč÷ŕíĺ íŕ óńňđîéńňâŕ ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12893,6 +13023,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "óďîňđĺáŕ: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "óďîňđĺáŕ: keyboarddrake [--expert] [keyboard]\n"
@@ -12923,11 +13060,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Íĺ ěîăŕ äŕ ďóńíŕ îáíîâ˙âŕíĺňî !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "ëîăäđĺéę"
@@ -13211,16 +13348,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13296,7 +13430,7 @@ msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
msgid "Exit install"
msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13543,6 +13677,21 @@ msgstr "Ěóëňčěĺäč˙ - îďč÷ŕíĺ íŕ CD"
msgid "Scientific Workstation"
msgstr "Íŕó÷íŕ đŕáîňíŕ ńňŕíöč˙"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Ńëĺä číńňŕëŕöčîííŕ íŕńňđîéęŕ"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Čçőîä"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -13831,9 +13980,6 @@ msgstr "Íŕó÷íŕ đŕáîňíŕ ńňŕíöč˙"
#~ msgid "Test again"
#~ msgstr "Ňĺńňâŕé îňíîâî"
-#~ msgid "Setting security level"
-#~ msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-
#~ msgid "Select a graphics card"
#~ msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index e778cf6b3..f8d39e598 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -89,24 +89,24 @@ msgstr "KonfiguriĹĄi sve glave odvojeno"
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama ekstenziju"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "KonfiguriĹĄi samo karticu \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EKSPERIMENTALNIM 3D hardverskim ubrzanjem"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,12 +145,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Ručno izaberi"
@@ -171,32 +171,32 @@ msgstr "Rezolucija"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Izlaz"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Odustani"
@@ -387,11 +387,11 @@ msgstr "XFree86 server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 drajver: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X u startanju"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Mogu podesiti vaš računar da automatski pokrene X nakon boota.\n"
"Želite li da se X pokrene kada bootate?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Koje je vrste vaĹĄa ISDN konekcija?"
@@ -485,7 +485,7 @@ msgstr "Kompaktno"
msgid "compact"
msgstr "kompaktno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video mod"
@@ -493,17 +493,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "Čekanje prije bootanja default preslike"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ĺ ifra"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Ĺ ifra (ponovo)"
@@ -537,14 +537,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Molimo pokuĹĄajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ĺ ifre se ne poklapaju"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,148 +589,148 @@ msgstr ""
"Navedene su razne stavke.\n"
"Možete dodati nove ili promjeniti postojeće."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gotovo"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Izmjeni"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Koju vrstu stavke Ĺželite dodati?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ostali OSi (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ostali OSi (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ostali OSi (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Preslika"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Labela"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-veličina"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ukloni stavku"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Prazna labela nije dozvoljena"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Morate navesti image kernela"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Morate navesti root particiju"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ova labela je već u upotrebi"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronađeno %s %s interfejsa"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Imate li neki drugi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Imate li ijedan %s interfejs?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Pogledaj hardware info"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram drajver za %s karticu %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -739,7 +739,7 @@ msgstr ""
"Sada moĹžete navesti opcije za modul %s.\n"
"Obratite paĹžnju da adrese trebate unositi sa prefiksom 0x kao npr. '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"ime2=vrijednost2 ...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcije modula"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s drajver ću pokušati?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -777,15 +777,15 @@ msgstr ""
"informacije koje mu trebaju? Povremeno, ispitivanje može zaglaviti računar,\n"
"ali ne bi trebalo izazvati nikakvu ĹĄtetu."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Ispitivanje"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Navedi opcije"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -794,64 +794,64 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Želite li probati opet sa drugim parametrima?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "pristup administrativnim datotekama"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(već dodan %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ova ĹĄifra je previĹĄe jednostavna"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Molimo navedite korisničko ime"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ovo korisničko ime je već dodano"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -860,32 +860,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Pravo ime"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -893,54 +893,54 @@ msgstr ""
"Mogu podesiti vaš računar da automatski prijavi jednog korisnika.\n"
"Želite li koristiti ovu mogućnost?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Izaberite default korisnika:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Izaberite window manager koji će se pokretati:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Molimo izaberite jezik koji ćete koristiti."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Svi"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Bez dijeljenja"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nedostaje obavezan paket %s"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,11 +949,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -961,31 +961,31 @@ msgstr ""
"Dijeljenje po-korisniku koristi grupu \"fileshare\". \n"
"Možete dodavati korisnike u ovu grupu pomoću userdrake-a."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "DobrodoĹĄli u Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "LoĹĄ"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "ViĹĄi"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoičan"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -995,7 +995,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1003,7 +1003,7 @@ msgstr ""
"Šifra je sada aktivirana, ali korištenje za mrežni računar još nije "
"preporučeno."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1011,7 +1011,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1019,7 +1019,7 @@ msgstr ""
"Već postoje određena ograničenja, a više automatskih provjera se pokreće "
"svaku noć."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1035,7 +1035,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:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1043,35 +1043,35 @@ msgstr ""
"Baziran na prethodnom nivou, ali sada je sistem potpuno zatvoren.\n"
"Sigurnosne osobine na maksimumu."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite nivo sigurnosti"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Nivo sigurnosti"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za servere"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1079,7 +1079,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1096,58 +1096,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "pomoć još nije implementirana.\n"
@@ -1199,106 +1199,106 @@ msgstr "Lilo/grub mod"
msgid "Yaboot mode"
msgstr "Yaboot mod"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistem instalacije"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Napravi novu particiju"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "GreĹĄka"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Izaberite klasu instalacije"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1307,22 +1307,22 @@ msgstr ""
"Trenutno koristite %s kao boot manager.\n"
"Kliknite na Konfiguriši kako bi se pokrenuo čarobnjak za podešavanje."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "KonfiguriĹĄi"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Spasi izbor paketa"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1331,44 +1331,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistem mod"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sistem na startu"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ne, ne Ĺželim da se autologiram"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, Ĺželim da se autologiram sa ovim (korisnik, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
@@ -1465,53 +1465,61 @@ msgstr "Austrija"
msgid "United States"
msgstr "SAD"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Molim unesite brzinu cd pisača"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1602,7 +1610,7 @@ msgstr "Prazno"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ostalo"
@@ -1746,7 +1754,7 @@ msgstr ""
"Backup tabela particija nema istu veličinu\n"
"Ipak nastavljate?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Upozorenje"
@@ -2305,7 +2313,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:3529
#, fuzzy
msgid "Username"
msgstr "Korisničko ime"
@@ -2319,23 +2327,23 @@ msgstr "NIS domen"
msgid "Search servers"
msgstr "TraĹži servere"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktoriju %s nije uspjelo"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "greĹĄka u demontiranju %s: %s"
@@ -2421,48 +2429,111 @@ msgstr "Nemam ĹĄta da radim"
msgid "Error opening %s for writing: %s"
msgstr "GreĹĄka u otvaranju %s za pisanje: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "PodeĹĄavanje CUPSa"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Drajver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Molimo sačekajte"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "X drajver"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Nepoznat model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2589,7 +2660,8 @@ msgid "/_Quit"
msgstr "Izlaz"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoć"
@@ -2609,76 +2681,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Prijavi greĹĄku"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Pomoć/_O programu..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Ispitivanje"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Prepoznavanje hard diska"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Pogledaj hardware info"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "PrikaĹži informacije"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "PodeĹĄavanje miĹĄa"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detektovan na portu %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Molimo sačekajte"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam štampač \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
@@ -4563,7 +4636,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate također formatirati i %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4588,7 +4661,7 @@ msgstr ""
"\n"
"Da li zaista Ĺželite instalirati ove servere?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4597,20 +4670,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ubacite FAT formatiranu disketu u jedinicu %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT (DOS/Windows) formatirana"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4618,12 +4691,12 @@ msgstr ""
"Da koristite ovaj izbor spaĹĄenih paketa, bootajte instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Greška u čitanju datoteke %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4869,7 +4942,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Dobro doĹĄli u %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nema pogodne disketne jedinice"
@@ -4899,11 +4972,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Izbor grupe paketa"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Izbor pojedinačnih paketa"
@@ -4979,7 +5052,7 @@ msgstr "Automatski prikaĹži izabrane pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalacija"
@@ -4999,7 +5072,7 @@ msgstr "Minimalna instalacija"
msgid "Choose the packages you want to install"
msgstr "Izaberite pakete koje Ĺželite instalirati"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instaliram"
@@ -5026,17 +5099,17 @@ msgid "Installing package %s"
msgstr "Instaliram paket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5053,16 +5126,16 @@ msgstr ""
"ROMa."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Svejedno nastavi?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Došlo je do greške pri naručivanju paketa:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "DoĹĄlo je do greĹĄke kod instaliranja paketa:"
@@ -5186,7 +5259,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5304,7 +5377,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5381,7 +5454,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatura"
@@ -5590,11 +5663,11 @@ msgstr "Ubacite disketu koja sadrĹži izbor paketa"
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća od slobodnog prostora"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Vrsta instalacije"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
#, fuzzy
msgid ""
"You haven't selected any group of packages.\n"
@@ -5603,19 +5676,19 @@ msgstr ""
"Niste izabrali nijednu grupu paketa\n"
"Molimo izaberite minimalnu instalaciju koju Ĺželite"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Sa X-om"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno minimalna instalacija (posebno bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5625,16 +5698,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM pod oznakom \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5643,21 +5716,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Post-instalacijsko podeĹĄavanje"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5731,7 +5804,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5751,160 +5824,160 @@ msgstr ""
"\n"
"Da li želite instalirati unaprjeđenja ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg će biti dobavljeni paketi"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Koja je vaĹĄa vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardverski sat podeĹĄen na GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska sinhronizacija vremena (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nema štampača"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Imate li ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Nije otkrivena zvučna kartica. Probajte \"harddrake\" poslije instalacije"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ukratko"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "MiĹĄ"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Štampač"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Preuzmi fontove iz Windowsa"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podesite root ĹĄifru"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Bez ĹĄifre"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autentifikacija NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domen"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5920,21 +5993,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentikacijski LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domena"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5966,19 +6039,19 @@ msgstr ""
"first\n"
"drive and press \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Prva disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Druga disketna jedinica"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6004,7 +6077,7 @@ msgstr ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6018,29 +6091,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Žao mi je, nema dostupne disketne jedinice"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Ubacite disketu u %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Pravim boot disketu"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6052,11 +6125,11 @@ msgstr ""
"Instalacija će se nastaviti, ali ćete\n"
" morati koristiti BootX za bootanje vašeg računara"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Da li Ĺželite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6064,15 +6137,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instaliram bootloadera"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6090,17 +6163,17 @@ msgstr ""
" Zatim kucajte: shut-down\n"
"Prilikom idućeg boota biste trebali vidjeti upit bootloadera."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6110,7 +6183,7 @@ msgstr ""
"\n"
"Da li zaista želite izaći sada?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6143,16 +6216,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6166,15 +6239,15 @@ msgstr ""
"\n"
"Možda ćete željeti radije ponoviti instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizovano"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ponovi"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Spasi izbor paketa"
@@ -6210,14 +6283,14 @@ msgstr "Napredno"
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Sljedeći"
@@ -6667,7 +6740,7 @@ msgstr "Desna \"Windows\" tipka"
msgid "Circular mounts %s\n"
msgstr "KruĹžno montiranje %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Najprije ukloni logičke volumene\n"
@@ -6806,15 +6879,15 @@ msgstr "nijedan"
msgid "No mouse"
msgstr "Bez miĹĄa"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Molimo testirajte miĹĄ"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Da biste aktivirali miĹĄa,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "POMJERITE VAŠ KOTAČ!"
@@ -6851,11 +6924,11 @@ msgstr "Smanji stablo"
msgid "Toggle between flat and group sorted"
msgstr "Prekidač između ravnog i grupnog sortiranja"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6865,23 +6938,19 @@ msgstr ""
"Neke konekcije koriste pptp, a vrlo rijetke koriste dhcp.\n"
"Ako ne znate, izaberite 'koristi pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "koristi dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "koristi pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "koristi pptp"
@@ -6983,7 +7052,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:362
msgid "Configuring network"
msgstr "PodeĹĄavam mreĹžu"
@@ -6999,15 +7068,15 @@ 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:367
msgid "Host name"
msgstr "Host name"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Čarobnjak za podešavanje mreže"
@@ -7054,8 +7123,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Stara konfiguracija (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "PodeĹĄavanje ISDNa"
@@ -7091,23 +7160,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Koji protokol Ĺželite koristiti?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Koju vrstu kartice imate?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ne znam"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7121,19 +7195,19 @@ msgstr ""
"\n"
"Ako imate PCMCIA karticu, moraćete znati IRQ i IO vaše kartice.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Prekid"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Nastavak"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Koja je vaĹĄa ISDN kartica ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7141,7 +7215,7 @@ msgstr ""
"Otkrio sam neku ISDN PCI karticu, ali ne znam tip. Molimo izaberite neku PCI "
"karticu na idućem ekranu."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nije pronađena nijedna ISDN PCI kartica. Molimo izaberite jednu na idućem "
@@ -7195,7 +7269,7 @@ msgstr "Prvi DNS server (opcionalno)"
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS server (opcionalno)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7203,7 +7277,7 @@ msgstr ""
"\n"
"MoĹžete se diskonektovati ili prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7211,11 +7285,11 @@ msgstr ""
"\n"
"MoĹžete prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7223,32 +7297,32 @@ msgstr ""
"\n"
"MoĹžete se spojiti na Internet ili prekonfigurisati vaĹĄu konekciju."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Trenutno niste konektovani na Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektuj me"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Prekini konekciju"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Podesi konekciju"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internet konekcija & podeĹĄavanje"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti konekciju %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7267,12 +7341,12 @@ msgstr ""
"\n"
"Pritisnite OK za nastavak."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "PodeĹĄavanje mreĹže"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7283,7 +7357,7 @@ msgstr ""
"Kliknite na Ok da zadrĹžite tu konfiguraciju ili Odustani za podeĹĄavanje vaĹĄe "
"Internet & MreĹžne konekcije.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7295,72 +7369,72 @@ msgstr ""
"Sada ćemo podesiti vašu internet/mrežnu konekciju.\n"
"Ako ne želite da koristite automatsko prepoznavanje, isključite opciju.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Izaberite profil za podeĹĄavanje"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Koristi auto prepoznavanje"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Prepoznajem uređaje..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normalna modemska konekcija"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detektovan na portu %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konekcija"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detektovan %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konekcija"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detektovan na interfejsu %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kablovska konekcija"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "otkrivena kablovska konekcija"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN konekcija"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "prepoznata ethernet kartica(e)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Izaberite konekciju koju Ĺželite podesiti"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7370,23 +7444,23 @@ msgstr ""
"Izaberite jedan od njih koji ćete koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet konekcija"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Da li Ĺželite pokrenuti konekciju prilikom boota?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "PodeĹĄavanje mreĹže"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Potrebno je restartovati mreĹžu"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7397,7 +7471,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7407,7 +7481,7 @@ msgstr ""
"\n"
"Sada će ova konfiguracija biti primjenjena na vaš sistem.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7415,7 +7489,7 @@ msgstr ""
"Nakon što je to gotovo, preporučujemo da restartujete vaš X\n"
"okoliš kako bi se izbjegao problem sa promjenom naziva računara."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7425,7 +7499,7 @@ msgstr ""
"Provjerite vašu konekciju pomoću net_monitor ili mcc. Ako vaša konekcija ne "
"radi, moĹžete ponovo pokrenuti podeĹĄavanje"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7436,7 +7510,7 @@ msgstr ""
"Samo prihvatite kako bi ovaj uređaj ostao podešen.\n"
"Izmjena polja ispod će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7446,43 +7520,43 @@ msgstr ""
"Svaka stavka bi trebala biti unesena kao IP adresa u decimalnoj notaciji\n"
"razdvojenoj tačkama (npr. 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (drajver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatska IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Pokrenut na bootu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7494,42 +7568,53 @@ 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:368
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (tj. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti u formatu 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfiguracija proxija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
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:400
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba počinjati sa 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9024,7 +9109,7 @@ msgstr "Štampam na štampač \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9575,11 +9660,6 @@ msgstr ""
"Molimo popunite informacije o ftp proxiju\n"
"Ostavite polja praznim ako ne Ĺželite ftp proxy"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url treba počinjati sa 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9627,6 +9707,43 @@ msgstr "mkraid nije uspio (moĹžda nedostaju raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Nivo sigurnosti"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Nivo sigurnosti"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Udaljena administracija"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Default)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "PodeĹĄavanje nivoa sigurnosti"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Molimo sačekajte, pripremam instalaciju"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA zvučni sistem (Advanced Linux Sound Architecture)"
@@ -9930,7 +10047,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistem"
@@ -10030,7 +10147,7 @@ msgstr "Spoji se na Internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
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"
msgstr ""
@@ -10090,7 +10207,7 @@ msgstr "Korisnički okoliš"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10119,7 +10236,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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 "
@@ -10137,7 +10254,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10153,7 +10270,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Čitav raspon Linux rješenja, kao i posebne ponude za proizvode i "
"'potrepĹĄtine', dostupni su u naĹĄoj online radnji"
@@ -10204,8 +10321,8 @@ 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 your 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
@@ -10241,11 +10358,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molimo izvrĹĄite logout i zatim koristitite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molimo ponovo se prijavite na %s radi aktiviranja izmjena"
@@ -10293,16 +10410,6 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Pomoć"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10355,53 +10462,68 @@ msgstr "Dodaj korisnika"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "PodeĹĄavam..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Napredno podeĹĄavanje"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguriĹĄi"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Molimo ubacite boot disketu koja je upotrebljena u jedinicu %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nema pogodne disketne jedinice"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10550,13 +10672,13 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "ukupno napredak"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10565,41 +10687,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Bez ĹĄifre"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne mogu otvoriti %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10610,65 +10732,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Backup-uj sistemske datoteke..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Datoteke backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup-uj korisničke datoteke..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Napredak backup-a hard diska..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup-uj ostale datoteke..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10676,7 +10798,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10685,7 +10807,7 @@ msgstr ""
"lista datoteka poslana putem FTPa: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -10696,39 +10818,39 @@ msgstr ""
"(!) problem sa FTP konekcijom: Nije bilo moguće poslati vaše backup datoteke "
"putem FTPa.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) GreĹĄka tokom slanja poĹĄte. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Izbor datoteka"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberite datoteke ili direktorije i kliknite na 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10736,26 +10858,26 @@ msgstr ""
"\n"
"Molimo uključite sve potrebne opcije.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup sistemskih datoteka. ( /etc direktorij )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Zaobiđi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10763,65 +10885,67 @@ msgstr ""
"Sa ovom opcijom bićete u mogućnosti da vratite bilo koju\n"
" verziju vaĹĄeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Ne uključuj spremnik web preglednika"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalni backup (nemoj prebrisati stare backupe)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za backup"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Molimo unesite ime računara ili IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10830,68 +10954,68 @@ msgstr ""
"Molimo unesite direktorij za\n"
" smještaj backupa na ovom računaru."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Molimo unesite vaĹĄ login"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Molimo unesite vaĹĄu ĹĄifru"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Zapamti ovu ĹĄifru"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za backup"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Molimo izaberite vaĹĄ CD prostor"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Molim uključite ako koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10899,36 +11023,36 @@ msgstr ""
"Molim unesite naziv uređaja vašeg CD Writera\n"
" npr: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Izaberite datoteku"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Koristi traku za backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Molim unesite ime uređaja kojeg ćete koristiti za backup"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10936,57 +11060,57 @@ msgstr ""
"Molim unesite maksimalnu veličinu\n"
" dozvoljenu za Draxbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Koristi quotu za backup datoteke."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "MreĹža"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tip"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "svakog sata"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "dnevno"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "sedmično"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mjesečno"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Koristi demon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10994,7 +11118,7 @@ msgstr ""
"Izaberite vremenski interval\n"
"između svakog backupa"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11002,7 +11126,7 @@ msgstr ""
"Molim izaberite medij\n"
"za backup."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11010,71 +11134,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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "PoĹĄalji mail izvjeĹĄtaj nakon svakog backupa na :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Ĺ ta"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "ViĹĄe opcija"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "PodeĹĄavanje Drakbackup-a"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Molimo izaberite gdje Ĺželite backupovati"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "na hard disk"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "preko mreĹže"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Molim izaberite ĹĄta Ĺželite backupovati"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Backup sistema"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Backup korisnika"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Ručno izaberite korisnika"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11082,7 +11206,7 @@ msgstr ""
"\n"
"Izvori backup-a: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11090,7 +11214,7 @@ msgstr ""
"\n"
"- sistemske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11098,7 +11222,7 @@ msgstr ""
"\n"
"- korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11106,7 +11230,7 @@ msgstr ""
"\n"
"- ostale datoteke:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11115,32 +11239,32 @@ msgstr ""
"\n"
"- spasi na hard disku u direktoriju: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Uređaj miša: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11149,12 +11273,12 @@ msgstr ""
"\n"
"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11163,7 +11287,7 @@ msgstr ""
"\n"
"- spasi na FTPu na računaru: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11172,7 +11296,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u direktoriju: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11180,19 +11304,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNe uključuj sistemske datoteke\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackupi koriste tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackupi koriste tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11201,41 +11325,41 @@ msgstr ""
"\n"
"- Demon (%s) uključuje :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Hard disk.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-MreĹžu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-MreĹžu preko SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-MreĹžu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-MreĹžu preko FTPa.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Bez podešavanja, molim kliknite na Čarobnjak ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11243,7 +11367,7 @@ msgstr ""
"Lista podataka za vraćanje:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11251,256 +11375,256 @@ msgstr ""
"Lista oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Molimo isključite ili pobrišite ga idući put."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vaĹĄi izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " uspjeĹĄno spaĹĄeni na %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Vrati konfiguraciju "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK za vraćanje ostalih datoteka."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Vrati sistemske datoteke prije:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "molim izaberite datum za vraćanje"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Koristi hard disk za backup"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Molimo unesite direktorij za spasiti:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP konekcija"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sigurna konekcija"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Molim unesite direktorij gdje su smjeĹĄteni backupi"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij za vraćanje"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Drugi medij"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Vrati sistem"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberite stazu za vraćanje (umjesto / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
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:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Pobriši korisničke direktorije prije vraćanja."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Backup datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Vrati sa hard diska"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Vrati tabelu particija"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host name"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Ĺ ifra"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Korisničko ime"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Hostname: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Vrati ostalo"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Vrati sve backupe"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Ručno vraćanje"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Vrati tabelu particija"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Vrati korisnike"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Prethodni"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Spasi"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Izgradi backup"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Vrati"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11511,14 +11635,14 @@ msgstr ""
" vaĹĄ mail izvjeĹĄtaj nije poslan\n"
" Molim podesite sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11527,19 +11651,19 @@ msgstr ""
"GreĹĄka tokom slanja datoteke preko FTPa.\n"
" Molimo ispravite vaĹĄu FTP konfiguraciju."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Molim izaberite podatke za vraćanje..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Molim izaberite medij za backup..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Molim izaberite podatke za backup..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11547,59 +11671,59 @@ msgstr ""
"Nije pronađena konfiguraciona datoteka \n"
"molim kliknite na Čarobnjak ili Napredno."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "U izradi ... molim sačekajte."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Backup sistemskih datoteka"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Backup korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Backup ostalih datoteka"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Ukupan napredak"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "slanje datoteka putem FTPa"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Ĺ aljem datoteke..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Backup-uj sada iz konfiguracijske datoteke"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Pogledaj postavke backupa."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Čarobnjak za podešavanje"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Napredno podeĹĄavanje"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Backup-uj sada"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -11660,7 +11784,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11674,7 +11798,7 @@ msgstr ""
" podesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11752,7 +11876,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -11805,18 +11929,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11846,7 +11970,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:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11922,7 +12046,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11940,7 +12064,7 @@ msgstr ""
"drive before sending it to the server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11962,7 +12086,7 @@ msgstr ""
"data. It is important to be careful and not modify the \n"
"backup data files by hand.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12079,8 +12203,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Alati za konzolu"
@@ -12157,28 +12281,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post Uninstall"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi će biti dostupni nakon što instalirate u %s"
@@ -12280,10 +12404,6 @@ msgstr "Čarobnjak..."
msgid "Apply"
msgstr "Primjeni"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo sačekajte... Primjenjujem konfiguraciju"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektovan"
@@ -12404,7 +12524,7 @@ msgstr "Naziv modula"
msgid "Size"
msgstr "Veličina"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12469,12 +12589,12 @@ msgstr "Ispis"
msgid "Build the disk"
msgstr "Napravi disk"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Provjeri da li je medij prisutan za ovaj uredjaj %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12483,12 +12603,12 @@ msgstr ""
"Nema medija za ovaj uredjaj %s.\n"
"Molim ubacite ga."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne mogu izvrsiti fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12972,158 +13092,158 @@ msgstr ""
"\n"
"Kliknite na Podesi da pokrenete čarobnjak."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Radna grupa"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "particiji %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "ObriĹĄi"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gotovo"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Dodaj modul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Dodaj novi štampač"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "NiĹĄta izabrano"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Prihvati korisnika"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Verzija: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Koristi auto prepoznavanje"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Spasi izbor paketa"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Radna grupa"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nije konektovan"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13135,137 +13255,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Kreiranje boot diskete"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolucija"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Izaberi datoteku"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Share naziv"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "Uređaj"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "Uređaj"
+msgid "Save theme"
+msgstr "Sistem instalacije"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Izaberite monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Izbor modela štampača"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Morate izabrati ili unijeti štampač / uređaj!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Prepoznajem uređaje ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13406,6 +13536,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "upotreba: keyboarddrake [--expert] [keyboard]\n"
@@ -13435,11 +13572,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ne mogu da pokrenem live upgrade !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13722,16 +13859,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13806,7 +13940,7 @@ msgstr "Instaliraj sistemske update"
msgid "Exit install"
msgstr "Napusti instalaciju"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
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-*"
@@ -14053,6 +14187,21 @@ msgstr "Multimedija - PrĹženje CDa"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Post-instalacijsko podeĹĄavanje"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy treba biti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Izlaz"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -14598,9 +14747,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "PodeĹĄavanje nivoa sigurnosti"
-
#~ msgid "Select a graphics card"
#~ msgstr "Izaberite grafičku kartu"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 7e6f963e6..7bdc97c39 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -93,24 +93,24 @@ msgstr "Configura tots els capçals independentment"
msgid "Use Xinerama extension"
msgstr "Utilitza l'extensió Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura només la targeta \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,12 +154,12 @@ msgstr ""
"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
"PENJAR."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalˇlació del controlador de pantalla"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalitzada"
@@ -179,32 +179,32 @@ msgstr "Resolució"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "D'acord"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Surt"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -302,25 +302,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cancelˇla"
@@ -398,11 +398,11 @@ msgstr "Servidor xFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Interficie grŕfica a l'inici"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -412,7 +412,7 @@ msgstr ""
"l'interficie grŕfica durant l'arrencada.\n"
"Voleu que XFree s'iniciď quan torneu a arrencar l'ordinador?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -424,7 +424,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Quin tipus de connexió XDSI teniu?"
@@ -497,7 +497,7 @@ msgstr "Compacte"
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Mode de vídeo"
@@ -505,17 +505,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
@@ -551,14 +551,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
@@ -600,7 +600,7 @@ msgstr ""
"\n"
"En quina unitat arrenqueu?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -608,152 +608,152 @@ 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:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fet"
#
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifica"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Un altre SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predeterminat"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-size"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Elimina l'entrada"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Heu d'especificar una imatge del nucli"
#
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Heu d'especificar una partició arrel"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Aquesta etiqueta ja estŕ en ús"
# #msgid "Found %s %s interfaces"
# #msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "S'han trobat interfícies %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfície %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sí"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Mira la informació del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'estŕ instalˇlant el programa de control per a la targeta de %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(mňdul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -763,7 +763,7 @@ msgstr ""
"Tingueu en compte que qualsevol adreça hauria de ser entrada amb el prefix "
"0x com '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -774,17 +774,17 @@ msgstr ""
"Les opcions estan en el format ``nom=valor nom2=valor2 ...''.\n"
"Per exemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcions del mňdul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -801,15 +801,15 @@ msgstr ""
"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, perň aixň no causaria cap dany."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Exploració automŕtica"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -818,65 +818,65 @@ msgstr ""
"Ha fallat la cŕrrega del mňdul %s.\n"
"Voleu tornar-ho a intentar amb altres parŕmetres?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "accés a programes X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "accés a les eines rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "permet \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "accés a fitxers administratius"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "accés a les eines rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "accés a les eines rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ja s'ha afegit %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Aquesta contrasenya és massa senzilla"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Si us plau, introduďu un nom d'usuari"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Aquest nom d'usuari ja s'ha afegit"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Afegeix un usuari"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -885,33 +885,33 @@ msgstr ""
"Introduďu un usuari\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Accepta l'usuari"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nom real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nom d'usuari"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Entrada automŕtica"
#
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -920,20 +920,20 @@ msgstr ""
"nom d'usuari.\n"
"Voleu activar aquesta característica?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Escolliu l'usuari per defecte:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Escolliu el gestor de finestres per executar:"
#
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -943,38 +943,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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tots"
#
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permet tots els usuaris"
#
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "No es comparteix"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "El paquet %s necessari falta"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -988,11 +988,11 @@ msgstr ""
"\n"
"\"Defecte\" permetre granularitat per usuari.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Executa userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1000,32 +1000,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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Benvinguts, crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estŕndard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alt"
#
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Més Alt"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoic"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1036,7 +1036,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1045,7 +1045,7 @@ msgstr ""
"segueix sense ser recomanable."
#
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1054,7 +1054,7 @@ msgstr ""
"s'utilitzarŕ per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1063,7 +1063,7 @@ msgstr ""
"automŕtiques"
#
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1079,7 +1079,7 @@ msgstr ""
"un client d'internet, seria millor escollir un nivell menor"
#
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1087,38 +1087,38 @@ 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:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Escolliu el nivell de seguretat"
#
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "El nivell de seguretat"
#
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Utilitzeu libsafe per als servidors"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
#, fuzzy
msgid "Security Administrator (login or email)"
msgstr "Seguretat d'usuari (login o email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1131,7 +1131,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1156,13 +1156,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
@@ -1170,45 +1170,45 @@ 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:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Escriptori"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Menú Inici"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "encara no s'ha implementat cap ajuda.\n"
@@ -1260,106 +1260,106 @@ msgstr "Mode LILO/Grub"
msgid "Yaboot mode"
msgstr "Mode Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instalˇla el sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Crea una nova partició"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Error"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Copiant %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NoVideo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Tipus d'instalˇlació"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1368,22 +1368,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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Desa la selecció de paquets"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1392,44 +1392,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mode de sistema"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Executa el sistema X-Window en iniciar"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "No, no vull l'entrada automŕtica"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sí, vull l'entrada automŕtica amb aquest (usuari, escriptori)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "D'acord"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "no es pot obrir /etc/inittab per a lectura: %s"
@@ -1533,25 +1533,33 @@ msgstr "Ŕustria"
msgid "United States"
msgstr "Estats Units"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Nou"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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
@@ -1559,26 +1567,26 @@ msgid "Mount point"
msgstr "Punt de muntatge"
#
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Si us plau entreu la velocitat d'escriptura del cd"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Servidor: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcions: %s"
@@ -1668,7 +1676,7 @@ msgstr "Buit"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Altres"
@@ -1820,7 +1828,7 @@ msgstr ""
"La cňpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advertčncia"
@@ -2392,7 +2400,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:3529
msgid "Username"
msgstr "Nom d'usuari"
@@ -2405,23 +2413,23 @@ msgstr "Domini"
msgid "Search servers"
msgstr "Cerca servidors"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, 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:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produďt un error en desmuntar %s: %s"
@@ -2511,50 +2519,114 @@ msgstr "Res a fer"
msgid "Error opening %s for writing: %s"
msgstr "S'ha produďt un error en obrir %s per escriure: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
#
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configuració de CUPS"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Programa de control"
#
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Ajuda"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Si us plau, espereu"
+
+#
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "Dispositiu X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Model desconegut"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2679,7 +2751,8 @@ msgid "/_Quit"
msgstr "/_Surt"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajuda"
@@ -2698,75 +2771,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Informeu d'un error"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "_Quant a..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Exploració automŕtica"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecció del disc dur"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Mira la informació del maquinari"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mostra la informació"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Configura el ratolí"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detectat al port %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Si us plau, espereu"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "S'estŕ esborrant la impressora \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d segons"
@@ -4862,7 +4936,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "També heu de formatar %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4888,7 +4962,7 @@ msgstr ""
"\n"
"Voleu realment instalˇlar aquests servidors?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4897,20 +4971,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Aquest disquet no estŕ formatat en FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4918,12 +4992,12 @@ msgstr ""
"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instalˇlació "
"amb ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../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
+#: ../../install_any.pm_.c:1030
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"
@@ -5172,7 +5246,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
@@ -5204,11 +5278,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selecció del grup de paquets"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selecció individual de paquets"
@@ -5286,7 +5360,7 @@ msgstr "Mostra automŕticament els paquets seleccionats"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalˇla"
@@ -5309,7 +5383,7 @@ msgstr "Instalˇlació Mínima"
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instalˇlar"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "S'estŕ instalˇlant"
@@ -5336,17 +5410,17 @@ msgid "Installing package %s"
msgstr "S'estŕ instalˇlant el paquet %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepta"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rebutja"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5363,16 +5437,16 @@ msgstr ""
"ROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "S'ha produďt un error en ordenar els paquets:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "S'ha produďt un error en instalˇlar els paquets:"
@@ -5501,7 +5575,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5682,7 +5756,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclat"
@@ -5905,11 +5979,11 @@ msgid "Selected size is larger than available space"
msgstr "La mida seleccionada és superior a la disponible"
#
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipus d'instalˇlació"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5918,19 +5992,19 @@ msgstr ""
"Escolliu la instalˇlació mínima que voleu:"
#
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Amb X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Amb documentació bŕsica (recomenada!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalˇlació realment mínima (especialment no urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5940,16 +6014,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "S'estŕ preparant la instalˇlació"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5958,21 +6032,21 @@ msgstr ""
"S'estŕ instalˇlant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuració després de la instalˇlació"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -6039,7 +6113,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -6061,172 +6135,172 @@ msgstr ""
"Voleu instalˇlar aquestes actualitzacions ?"
#
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
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:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "En quina zona horŕria us trobeu?"
#
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "El rellotge del vostre ordinador estŕ regulat per GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronització automŕtica de la hora (usant NTP)"
#
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Cap impressora"
#
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Teniu una targeta de so ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resum"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Ratolí"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zona horŕria"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Aconsegueix les Fons de Windows"
#
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Impressores local"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasenya de 'root'"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Sense contrasenya"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticació"
#
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
#
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Servidor LDAP"
#
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autenticació NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -6243,21 +6317,21 @@ msgid ""
msgstr ""
#
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticació LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nom de domini"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6287,19 +6361,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6327,7 +6401,7 @@ msgstr ""
"sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6341,30 +6415,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "S'estŕ creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "S'estŕ preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6376,11 +6450,11 @@ msgstr ""
"La instalˇlació continuarŕ, perň haureu\n"
"d'utilitzar el BootX per a arrencar el vostre ordinador"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6390,17 +6464,17 @@ msgstr ""
"primera partició?"
#
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instalˇlant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6419,17 +6493,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:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "S'estŕ creant el diquet d'instalˇlació automŕtica"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6439,7 +6513,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6472,15 +6546,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Genera un disquet per a la instalˇlació automŕtica"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6495,15 +6569,15 @@ msgstr ""
"\n"
"Potser preferireu repetir la instalˇlació.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automŕtica"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Repeteix"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Desa la selecció de paquets"
@@ -6540,15 +6614,15 @@ msgstr "Avançat"
msgid "Basic"
msgstr "Basic"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Següent"
@@ -7011,7 +7085,7 @@ msgstr "Tecla de \"Windows\" Dreta"
msgid "Circular mounts %s\n"
msgstr "Muntatges circulars %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Elimineu primer els volums lňgics\n"
@@ -7151,15 +7225,15 @@ msgstr "cap"
msgid "No mouse"
msgstr "Cap ratolí"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Per activar el ratolí,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
@@ -7196,11 +7270,11 @@ msgstr "Redueix l'arbre"
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connecta't a internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7210,23 +7284,19 @@ msgstr ""
"Algunes connexions utilitzen pptp, unes poques utilitzen dhcp.\n"
"Si no ho sabeu, escolliu 'utilitza pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "utilitza dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "utilitza pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "utilitza pptp"
@@ -7332,7 +7402,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:362
msgid "Configuring network"
msgstr "S'estŕ configurant la xarxa"
@@ -7349,15 +7419,15 @@ 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:367
msgid "Host name"
msgstr "Nom de l'ordinador central"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Auxiliar de configuració de xarxa"
@@ -7406,8 +7476,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Antiga configuració (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configuració de l'XDSI"
@@ -7447,23 +7517,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Quin protocol voleu utilitzar?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Quin tipus de targeta teniu?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "No sé"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7477,19 +7552,19 @@ msgstr ""
"\n"
"Si teniu una targeta PCMCIA, us en cal saber l'\"irq\" i l'\"io\".\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Interromp"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continua"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Quina targeta XDSI teniu ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7497,7 +7572,7 @@ msgstr ""
"He detectat una targeta PCI XDSI, perň no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla següent."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
@@ -7552,7 +7627,7 @@ msgstr "Primer servidor DNS (opcional)"
msgid "Second DNS Server (optional)"
msgstr "Segon servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7560,7 +7635,7 @@ msgstr ""
"\n"
"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7568,11 +7643,11 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Ara mateix esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7580,33 +7655,33 @@ msgstr ""
"\n"
"Podeu connectar-vos a Internet o tornar a configurar la connexió."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Connecta"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Desconnecta"
#
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configura la connexió"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Connexió i configuració d'Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ara configurarem la connexió %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7625,12 +7700,12 @@ msgstr ""
"\n"
"Premeu D'acord per a continuar."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7642,7 +7717,7 @@ msgstr ""
"Feu clic a D'acord per conservar la configuració, o a Cancelˇla per tornar a "
"configurar la connexió a Internet i xarxa.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7655,75 +7730,75 @@ msgstr ""
"Si no voleu utilitzar la detecció automŕtica, desactiveu el quadre de "
"verificació.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Escolliu el perfil per configurar"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Utilitza la detecció automŕtica"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "S'estan detectant els dispositius..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Connexió normal per mňdem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectat al port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Connexió XDSI"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "s'ha detectat %s"
#
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Connexió ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectat a la interfície %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Connexió de cable"
#
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Connexió de cable detectada"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Connexió LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "s'han detectat una o diverses targetes Ethernet"
#
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Escolliu la connexió per voleu configurar"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7734,23 +7809,23 @@ msgstr ""
"\n"
#
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Connexió a Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Voleu iniciar la connexió en arrencar?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuració de xarxa"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "La xarxa necessita ésser reiniciada"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7761,7 +7836,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7771,7 +7846,7 @@ msgstr ""
"\n"
"Ara s'aplicarŕ la configuració al sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7779,7 +7854,7 @@ msgstr ""
"Després d'aixň, és recomanable que reinicieu l'entorn X per\n"
"evitar problemes deguts al canvi de nom de l'ordinador central."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7789,7 +7864,7 @@ msgstr ""
"Testegeu la connexió via net_monitor o mcc. Si la connexió no funciona "
"correctament, voldreu tornar a fer la configuració."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7800,7 +7875,7 @@ msgstr ""
"Només cal que accepteu per a mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7810,43 +7885,43 @@ msgstr ""
"S'ha d'introduir cada element com a una adreça IP amb notació decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "S'estŕ configurant el dispositiu de xarxa %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Adreça IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Submŕscara de la xarxa"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automŕtic"
#
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Inicia en l'arrencada"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7858,42 +7933,54 @@ 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:368
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Passarelˇla(Gateway) (e.g. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositiu de la passarelˇla"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
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:400
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "El proxy ha de ser ftp://..."
+#
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "La Url hauría de començar amb 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9493,7 +9580,7 @@ msgstr "S'estŕ imprimint en la impressora \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -10097,12 +10184,6 @@ msgstr ""
"Per favor, entreu les informacions del proxy ftp\n"
"Deixeu en blanc si no voleu un proxy ftp"
-#
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "La Url hauría de començar amb 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -10154,6 +10235,45 @@ msgstr "mkraid ha fallat (potser manquen eines del RAID(raidtools)?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
+#
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "El nivell de seguretat"
+
+#
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "El nivell de seguretat"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Seguretat d'usuari (login o email)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Predeterminat)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "S'estŕ establint el nivell de seguretat"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Si us plau, espereu, s'estŕ preparant la instalˇlació..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Llançar el sistema de so ALSA (Advanced Linux Sound Architecture)"
@@ -10474,7 +10594,7 @@ msgid "File sharing"
msgstr "Compartició de fitxers"
#
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -10576,7 +10696,7 @@ msgstr "Connecta't a internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
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"
msgstr ""
@@ -10636,7 +10756,7 @@ msgstr "Interfícies d'usuari"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10666,7 +10786,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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 "
@@ -10685,7 +10805,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10701,7 +10821,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Trobareu tota la gama de solucions Linux, així com ofertes especials en "
"productes en la nostra botiga online"
@@ -10753,8 +10873,8 @@ 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 your 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 ""
#
@@ -10792,11 +10912,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "S'estŕ instalˇlant els paquets..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
@@ -10847,17 +10967,6 @@ msgstr "Afegeix un usuari"
msgid "Add/Del Clients"
msgstr "Client DHCP"
-#
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Ajuda"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10912,53 +11021,69 @@ msgstr "Afegeix un usuari"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "Client DHCP"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "S'estŕ configurant..."
-#: ../../standalone/drakTermServ_.c:870
+#
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configuració Avançada"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "torna a configurar"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Inseriu el disquet d'arrencada utilitzat a la unitat %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -11114,12 +11239,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Progrés total"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -11128,41 +11253,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Sense contrasenya"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "No es pot obrir %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -11173,69 +11298,69 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Cňpia de seguretat de fitxers del sistema..."
#
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Els fitxers de la cňpia de seguretat del disc dur..."
#
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Cňpia de seguretat de fitxers d'usuari..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Progrčs de la cňpia de seguretat en disc dur..."
#
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Els fitxers de cňpia de seguretat d'altres fitxers..."
#
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Utilitzar la cinta per a fer la cňpia de seguretat"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -11243,7 +11368,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -11252,7 +11377,7 @@ msgstr ""
"llista de fitxers enviada per FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -11262,14 +11387,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:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -11277,25 +11402,25 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " S'ha produďt un error en enviar el correu electrňnic. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selecció de fitxers"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Seleccioneu els fitxers i directoris i feu clic en 'Afegir'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -11303,26 +11428,26 @@ msgstr ""
"\n"
"Per favor, comproveu totes les opcions que necessiteu.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Fer cňpia de seguretat dels fitxers del Sistema. ( directori /etc ) "
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Utilitzar cňpia incremental (no reemplaça cňpies antigues)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "No incloure fitxers crítics (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -11331,71 +11456,73 @@ msgstr ""
" del directori /etc."
#
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "No incloure la memňria cau del navegador"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Utilitza cňpies incrementals (no reemplaça antigues cňpies)"
#
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Elimina el seleccionat"
#
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
#
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Usuaris"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Utilitza connexió FTP per fer la cňpia de seguretat"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Transferir"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Si us plau, proporcioneu el nom de l'ordinador o la IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -11405,29 +11532,29 @@ msgstr ""
" posar la cňpia de seguretat d'aquest ordinador central."
#
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Si us plau, entreu la entrada"
#
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Si us plau, entreu la contrasenya"
#
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Recordar aquesta contrasenya"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Utilitzar CD/DVDROM per fer la cňpia"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11435,44 +11562,44 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Si us plau, escolliu l'espai del CD"
#
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
#
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Si us plau, comproveu si feu servir un medi CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
#
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, 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:1952
+#: ../../standalone/drakbackup_.c:1956
#, 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:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11480,37 +11607,37 @@ msgstr ""
"Si us plau, entreu el nom del dispositiu del CD Writer\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Utilitzar la cinta per a fer la cňpia de seguretat"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
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:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11519,61 +11646,61 @@ msgstr ""
" permesa per a Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Utilitzar la cuota de disc per als fitxers de cňpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Xarxa"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disc Dur / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipus"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "cada hora"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "diŕria"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "setmanal"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mensual"
#
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Utilitza dimoni"
#
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11582,7 +11709,7 @@ msgstr ""
"de temps entre cada cňpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11590,7 +11717,7 @@ msgstr ""
"Si us plau, trieu el\n"
"medi per a la cňpia."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11599,80 +11726,80 @@ msgid ""
msgstr ""
"Si us plau assegureu-vos que el dimoni cron estŕ inclňs en els serveis."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
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:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Que"
#
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "On"
#
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Quant"
#
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Més opcions"
#
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Configuració de Drakbackup"
#
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Si us plau, escolliu on voleu fer la cňpia de seguretat"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "en el Disc Dur"
#
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "per la Xarxa"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
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:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Cňpia del seguretat del sistema"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Cňpia de seguretat dels usuaris"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Seleccioneu l'usuari manualment"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11680,7 +11807,7 @@ msgstr ""
"\n"
"Fonts de la cňpia: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11688,7 +11815,7 @@ msgstr ""
"\n"
"- Fitxers del Sistema:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11696,7 +11823,7 @@ msgstr ""
"\n"
"- Fitxers d'Usuari:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11704,7 +11831,7 @@ msgstr ""
"\n"
"- Altres Fitxers:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11713,32 +11840,32 @@ msgstr ""
"\n"
"- Desar-ho en el Disc Dur en el camí: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositiu del ratolí: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11747,12 +11874,12 @@ msgstr ""
"\n"
"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11761,7 +11888,7 @@ msgstr ""
"\n"
"- Desar-ho en FTP en l'ordinador central: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11771,7 +11898,7 @@ msgstr ""
"\t\t en el camí: %s \n"
#
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11779,19 +11906,19 @@ msgstr ""
"\n"
"- Opcions:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNo incloure Fitxers del Sistema\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tLes cňpies de seguretat utilitzen tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tLes cňpies de seguretat utilitzen tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11800,39 +11927,39 @@ msgstr ""
"\n"
"- Dimoni (%s) inclňs :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t.Disc dur.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Xarxa per FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Xarxa per SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Xarxa per rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Xarxa per webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
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:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11840,7 +11967,7 @@ msgstr ""
"Llista de dades per a restaurar:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11849,142 +11976,142 @@ msgstr ""
"\n"
#
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Si us plau, deseleccioneu o esborreu-ho la prňxima vegada."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Els fitxers de la cňpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Totes les dades seleccionades han estat "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Restaurades Correctament en %s "
#
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Configuració de Restauració "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "D'acord per a restaurar els altres fitxers."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Abans cňpia de seguretat de fitxers del sistema:"
#
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Si us plau, seleccioneu la data a restaurar"
#
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Utilitzar el Disc Dur per a fer la cňpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Si us plau, subministreu el directori per a desar:"
#
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Connexió FTP"
#
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Connexió Segura"
#
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
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:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Si us plau, seleccioneu un altre medi des del qual restaurar"
#
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Altres Medis"
#
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Restaura el Sistema"
#
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "seleccioneu camí al qual restaurar ( en comptes de / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
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:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Esborrar directoris d'usuaris abans de restaurar."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Elimina el seleccionat"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Els fitxers de la cňpia de seguretat estan corromputs"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11992,17 +12119,17 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaura des del disc dur."
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -12010,119 +12137,119 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Restaura la taula de particions"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaura els Usuaris"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nom de l'ordinador central"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Contrasenya"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nom d'usuari"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nom de l'ordinador central: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaura Altres"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Restaurar totes les cňpies"
#
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Restauració Personalitzada"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
#
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Restaura la taula de particions"
#
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaura els Usuaris"
#
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Anterior"
#
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Desa"
#
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Construeix la cňpia de seguretat"
#
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restaura"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -12133,14 +12260,14 @@ msgstr ""
" el vostre missatge d'informe no ha estat enviat\n"
" Si us plau configureu el sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -12148,19 +12275,19 @@ msgstr ""
"Error durant l'enviament del fitxer via FTP.\n"
" Si us plau corregiu la configuració de FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Si us plau, seleccioneu les dades per a restaurar..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Si us plau seleccioneu el medi per a la cňpia..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Si us plau seleccioneu les dades per fer la cňpia..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -12168,68 +12295,68 @@ msgstr ""
"No s'ha trobat el fitxer de configuració \n"
"si us plau feu clic en Auxiliar o Avançat."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Sota Desenvolupament ... si us plau espereu."
#
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Cňpia de seguretat dels fitxers del sistema"
#
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Cňpia de seguretat de fitxers d'usuari"
#
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Cňpia de seguretat d'altres fitxers"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Progrés Total"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "fitxers que s'estan enviant per FTP"
#
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Enviant els fitxers..."
#
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Fes la Cňpia de Seguretat des del fitxer de configuració"
#
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Veure la Configuració de la Cňpia de Seguretat"
#
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Auxiliar de Configuració"
#
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Configuració Avançada"
#
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Fes Cňpia de Seguretat"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -12290,7 +12417,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -12304,7 +12431,7 @@ msgstr ""
" definir myhostname o mydomain en /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -12382,7 +12509,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -12435,18 +12562,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -12476,7 +12603,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:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12552,7 +12679,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12571,7 +12698,7 @@ msgstr ""
"dur abans d'enviar-la al servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12593,7 +12720,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:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12710,8 +12837,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Eines de consola"
@@ -12784,7 +12911,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12792,22 +12919,22 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
#
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post Desinstalˇlació"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Les instŕncies estaran disponibles després d'instalˇlar a %s"
@@ -12909,10 +13036,6 @@ msgstr "Auxiliar..."
msgid "Apply"
msgstr "Aplica"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connectat"
@@ -13036,7 +13159,7 @@ msgstr "Nom del mňdul"
msgid "Size"
msgstr "Mida"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -13101,12 +13224,12 @@ msgstr "Sortida"
msgid "Build the disk"
msgstr "Munta el disc"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Assegureu-vos que hi ha un suport al dispositiu %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -13115,12 +13238,12 @@ msgstr ""
"No hi ha cap suport al dispositiu %s.\n"
"Si us plau, inseriu-ne un."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "No es pot bifurcar: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13636,54 +13759,54 @@ msgstr ""
"\n"
"Feu clic a Configura per executar l'auxiliar de configuració."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grup de treball"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partició %s"
#
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Usuari"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Suprimeix"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fet"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Afegeix un mňdul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
@@ -13691,107 +13814,107 @@ msgid ""
msgstr ""
#
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Afegiu una impressora"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Deselecciona Tot"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
#
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Elimina el seleccionat"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Accepta l'usuari"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versió: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Utilitza la detecció automŕtica"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Utilitza la detecció automŕtica"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Desa la selecció de paquets"
#
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Usuari"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grup de treball"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "No s'ha detectat cap targeta de TV!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -13813,141 +13936,151 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "creació de discs d'arrencada"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolució"
#
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Trieu un fitxer"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nom de compartició"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositiu"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositiu"
+msgid "Save theme"
+msgstr "Instalˇla el sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Escolliu un monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
#
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Selecció del model d'impressora"
#
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Heu d'escollir/escriure una impressora/dispositiu!"
#
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "S'estan detectant els dispositius..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -14106,6 +14239,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
@@ -14135,13 +14275,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "No es pot iniciar l'actualització en directe !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"El canvi estŕ fet, perň perquč sigui efectiu heu de sortir de la sessió "
"actual"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -14435,16 +14575,13 @@ msgstr ""
"Ara podeu scannejar documents utilitzant ``XSane'' des de Multimedia/Grŕfics "
"en el menú d'aplicacions."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -14520,7 +14657,7 @@ msgstr "Instalˇla actualitzacions del sistema"
msgid "Exit install"
msgstr "Surt de la instalˇlació"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14770,6 +14907,21 @@ msgstr "Multimčdia - Gravació de CD"
msgid "Scientific Workstation"
msgstr "Estació científica de treball"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configuració després de la instalˇlació"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "El proxy ha de ser ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Surt"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -15454,9 +15606,6 @@ msgstr "Estació científica de treball"
#~ msgid "Package List to Install"
#~ msgstr "Llista de Paquets a instalˇlar"
-#~ msgid "Setting security level"
-#~ msgstr "S'estŕ establint el nivell de seguretat"
-
#
#~ msgid "Setting security user"
#~ msgstr "S'estŕ establint l'usuari de seguretat"
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 7be85d319..f249a041a 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 22:03-0000\n"
"Last-Translator: Rhoslyn Prys <rhoslyn.prys@ntlworld.com>\n"
"Language-Team: Cymraeg <cy@li.org>\n"
@@ -89,24 +89,24 @@ msgstr "Ffurfweddu pob pen yn annibynnol"
msgid "Use Xinerama extension"
msgstr "Defnyddiwch estyniad Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ffurfweddu cerdyn \"%s\" %s yn unig"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree: %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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 "
"mewn 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s gyda cyflymu caledwedd 3D ARBROFOL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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 "
"mewn 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -150,12 +150,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (gyrrwr gosod dangoswr)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Arddull"
@@ -175,32 +175,32 @@ msgstr "Cydraniad"
msgid "Test"
msgstr "Prawf"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Iawn"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Gadael"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -296,25 +296,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Diddymu"
@@ -390,11 +390,11 @@ msgstr "Gwasanaethwr XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Gyrrwr XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Rhyngwyneb graffigol wrth gychwyn"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"Hoffwn osod eich cyfrifiadur i gychwyn X yn awtomatig ar ôl cychwyn\n"
"Hoffech chi i XFree ddechrau wedi i chi ail-gychwyn?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -423,7 +423,7 @@ msgstr ""
"\n"
"Ydy'r nodwedd hon gennych?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Pa norm mae eich teledu'n ei ddefnyddio?"
@@ -495,7 +495,7 @@ msgstr "Cryno"
msgid "compact"
msgstr "cryno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modd fideo"
@@ -503,17 +503,17 @@ msgstr "Modd fideo"
msgid "Delay before booting default image"
msgstr "Oedi cyn cychwyn y ddelwedd rhagosodedig"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Cyfrinair"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Cyfrinair (eto)"
@@ -548,14 +548,14 @@ msgid ""
msgstr ""
"Dewis Nid yw 'cyfyngu dewisiadau llinell orchymyn' o werth heb gyfrinair"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Ceisiwch eto"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Nid yw'r cyfrineiriau'n cydfynd"
@@ -597,7 +597,7 @@ msgstr ""
"\n"
"Gyda pha ddisg ydych chi'n cychwyn?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -605,148 +605,148 @@ msgstr ""
"Dyma'r cofnodion gwahanol ar eich dewislen cychwyn hyd yma.\n"
"Mae modd i chi ychwanegu rhagor neu newid y rhai presennol."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ychwanegu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gorffen"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Newid"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Systwmau Gweithredu eraill (SunOS..)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Systemau Gweithredu Eraill (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Systemau gweithredu Eraill (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Delwedd"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Gwraidd"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Atodi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Darllen-ysgrifennu"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabl"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Anniogel"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Rhagosodedig"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Maint intrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Tynnu cofnod"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Nid yw label gwag yn cael ei ganiatáu"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Rhaid enwi delwedd cnewyllyn"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Rhaid pennu rhaniad gwraidd"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Mae'r label hwn yn cael ei ddefnyddio eisoes"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Wedi canfod rhyngwynebau %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Oes gennych un arall?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Oes gennych unrhyw rhyngwyneb %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Na"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Iawn"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Gweler gwybodaeth am galedwedd"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Gosod gyrrwr %s ar gyfer cerdyn %s "
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modiwl %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Sylwer: wrth greu unrhyw gyfeiriad bydd angen defnyddio rhagddodiad 0x, e.e. "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Mae'r dewisiadau yn fformat ``name=value name2=value2 ...''.\n"
"e.e, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Dewisiadau modiwl:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pa yrrwr %s ddylwn drio?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -797,15 +797,15 @@ msgstr ""
"unrhyw\n"
"ddifrod."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Atoholi"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Enwi dewisiadau"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -814,62 +814,62 @@ msgstr ""
"Methodd llwytho modiwl %s\n"
"Hoffech chi drio eto gyda pharamedrau eraill?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "mynediad i raglenni X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "mynediad i offer rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "caniatáu \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "mynediad i ffeiliau gweinyddol"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "mynediad i offer rhwydwaith"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "mynediad i offer crynhoad"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(wedi ychwanegu %s yn barod)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Mae'r cyfrinair yn rhy syml"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Rhowch enw defnyddiwr"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Mae'r enw defnyddiwr yn rhy hir"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Mae'r enw defnyddiwr wedi ei ychwanegu yn barod"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Ychwanegu defnyddiwr"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -878,32 +878,32 @@ msgstr ""
"Rhowch enw defnyddiwr\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Derbyn defnyddiwr"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Enw cywir"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Enw defnyddiwr"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Cragen"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Eicon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Awtomewngofnodi"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -912,19 +912,19 @@ msgstr ""
"defnyddiwr\n"
"Hoffech chi wneud hyn?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Dewis y defnyddiwr rhagosodedig:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Dewiswch y rheolwr ffenestr i rhedeg:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Dewiswch iaith i'w defnyddio."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -934,37 +934,37 @@ msgstr ""
"pa iaith yr hoffech ei osod. Byddant ar gael pan fydd eich gosodiad\n"
"wedi ei gwblhau a phan fyddwch yn ailgychwyn eich system."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Popeth"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Caniatáu pob defnyddiwr"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Dim rhannu"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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 ei "
"ddefnyddio"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Mae pecyn gorfodol %s ar goll"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -978,11 +978,11 @@ msgstr ""
"\n"
"\"Addasu\" caniatáu cyfran i'r defnyddwyr.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Cychwyn userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -990,31 +990,31 @@ msgstr ""
"Mae rhannu yn ôl defnyddiwr yn defnyddio grwp \"rhannu ffeiliau\" .\n"
"Mae modd defnyddio userdrake i ychwanegu defnyddiwr i'r grwp."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Croeso i Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Gwael"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Safonol"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Uchel"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Uwch"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoia"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1024,7 +1024,7 @@ msgstr ""
"ddefnyddio ond mae'n sensitif iawn: rhaid peidio defnyddio'r peiriant i'w\n"
"gysylltu ag eraill nag i'r Rhyngrwyd. Does dim cysylltiad drwy gyfrinair."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1032,7 +1032,7 @@ msgstr ""
"Mae'r cyfrinair wedi ei alluogi, ond ni argymhellir ei ddefnyddio fel "
"cyfrifiadur rhwydwaith."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1040,7 +1040,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1048,7 +1048,7 @@ msgstr ""
"Mae rhai cyfyngiadau, ac mae rhagor o wiriadau awtomatig yn cael eu rhedeg "
"bob nos"
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1064,7 +1064,7 @@ msgstr ""
"cysylltiad gan amryw o gleientiaid. Sylwer: os maei cleient yn unig yw eich "
"peiriant ar y Rhyngrwyd, yna mae'n well i chi ddewis lefel is."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1072,33 +1072,33 @@ msgstr ""
"Wedi ei seilio ar y lefel flaenorol, ond mae'r system yn hollol gaeëdig ac "
"mae nodweddion diogelwch ar eu huchaf."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Dewisiadau Sylfaenol DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Dewiswch lefel diogelwch"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Lefel diogelwch"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Defnyddiwch libsafe ar gyfer gwasanaethwyr"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Gweinyddwr Diogelwch (mewngfnodi neu e-bost)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1109,7 +1109,7 @@ msgstr ""
"arall)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1126,58 +1126,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "gorchmynion cyn cychwyn, neu 'c' 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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Bwrdd Gwaith"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Dewislen Cychwyn"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nid oes modd gosod y llwythwr cychwyn ar raniad %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nid oes cymorth ar gael eto.\n"
@@ -1229,63 +1229,63 @@ msgstr "Modd Lilo/grub"
msgid "Yaboot mode"
msgstr "Modd Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Gosod themâu"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Dangos thema yn y consol"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Creu thema newydd"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Cadw %s i %s.old wrth gefn"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Gwall"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "methu cadw neges lilo wrth gefn"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Copďo %s i %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "methu newid neges lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Heb ganfod neges lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Methu ysgrifennu /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Ysgrifennu %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1293,17 +1293,17 @@ msgstr ""
"Methu ysgrifennu /etc/sysconfig/bootsplash.\\\\\n"
"Heb ganfod y ffeil"
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Methu cychwyn mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1312,24 +1312,24 @@ msgstr ""
"Cychwyn \"lilo\" fel gwraidd ar y linell orchymyn i gwblhau gosod thema "
"LiLo'n llawn."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Ail gychwyh 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Nodyn"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Themâu LiLo a Croeso Cychwyn wedi eu gosod yn llwyddiannus"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Methodd gosod y thema!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1338,21 +1338,21 @@ msgstr ""
"Rydych yn defnyddio %s fel rheolwr cychwyn.\n"
"Cliciwch Ffurfweddu i gychwyn dewin gosod"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ffurfweddu"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Dewis sgrin croeso"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Themâu"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1366,44 +1366,44 @@ msgstr ""
"mae modd eu dewis\n"
"ar wahân"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Sgrin Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Croeso Cychwyn"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Modd system"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Cychwyn yr amgylchedd graffigol wrth gychwyn eich system"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Na, tydw i ddim eisiau awto-mewngofnodi"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Iawn, rwyf eisiau awto-mewngofnodi gyda (defnyddiwr, bwrdd gwaith)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Iawn"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "maethu agor/etc/inittab ar gyfer darllen: %s"
@@ -1500,50 +1500,58 @@ msgstr "Awstria"
msgid "United States"
msgstr "Yr Unol Daleithiau"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Newydd"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Gosod"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Gwasanaethwr"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Rhowch URL gwasanaethwr WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Rhaid i'r URL gychwyn gyda http:// neu https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Gwasanaethwr:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Dewisiadau: %s"
@@ -1631,7 +1639,7 @@ msgstr "Gwag"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Arall"
@@ -1772,7 +1780,7 @@ msgstr ""
"Nid yw'r tabl rhaniad wrth gefn yr un maint\n"
"Parhau?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Rhybudd"
@@ -2335,7 +2343,7 @@ msgstr ""
"Rhowch eich enw defnyddiwr, cyfrinair ac enw parth i gael mynediad i'r "
"gwesteiwr."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Enw defnyddiwr"
@@ -2347,23 +2355,23 @@ msgstr "Parth"
msgid "Search servers"
msgstr "Chwiliwch am wasanaethwyr"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "methodd fformatio %s o %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "methodd gosod rhaniad %s yng nghyfeiriadur %s"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "gwall dadosod %s: %s"
@@ -2449,46 +2457,109 @@ msgstr "Dim i'w wneud"
msgid "Error opening %s for writing: %s"
msgstr "Gwall wrth agos %s ar gyfer ysgrifennu %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Dim gyrwyr eraill"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr "Nid oes gyrrwr OSS/ALSA hysbys ar gyfer eich cerdyn sain (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Furfweddiad sain"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Yma medrwch ddewis gyrrwr arall (un ai OSS neu ALSA) ar gyfer eich cerdyn "
"sain (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Gyrrwr:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Cymorth"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Arhoswch...Gosod y ffurfweddiad"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Arhoswch"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Dim gyrrwr hysbys"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, 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
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Gyrrwr anhysbys"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2616,7 +2687,8 @@ msgid "/_Quit"
msgstr "/_Gadael"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Cymorth"
@@ -2637,14 +2709,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Adrodd ar Wallau"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Ynghylch..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Ynghylch Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2652,56 +2728,53 @@ msgstr ""
"Dyma HardDrake, offeryn ffurfweddu caledwedd Mandrake.\n"
"Fersiwn:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Awdur"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 fersiwn "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Caledwedd canfyddwyd"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Gwybodaeth"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Modd ffurfweddu"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Rhedeg offeryn ffurfweddu"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Canfod ar waith"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Arhoswch"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Mae modd i chi ffurfweddu pob paramedr o'r modiwl yma"
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Rhedeg \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "cynradd"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "eilradd"
@@ -4659,7 +4732,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Rhaid fformatio %s hefyd"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4682,7 +4755,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gosod y gwasanaethwyr hyn?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4696,20 +4769,20 @@ msgstr ""
"\n"
"Ydych chi am dynnu'r pecynnau hyn?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Methu defnyddio darlledu heb barth NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Nid yw 'r disg meddal hwn wedi ei fformatio i FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4717,12 +4790,12 @@ msgstr ""
"I ddefnyddio'r dewis o becynnau wedi eu cadw, cychwynnwch y gosodiad gyda "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Gwall wrth ddarllen ffeil %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4964,7 +5037,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Croeso i %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Does dim gyrrwr disg meddal ar gael"
@@ -4994,11 +5067,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Dewis y Grwp Pecyn"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Dewis pecynnau unigol."
@@ -5074,7 +5147,7 @@ msgstr "Dangoswch y pecynnau dewis awtomatig"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Gosodiad"
@@ -5094,7 +5167,7 @@ msgstr "Gosodiad lleiaf"
msgid "Choose the packages you want to install"
msgstr "Dewiswch y pecynnau hoffech chi eu gosod"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Gosod"
@@ -5121,17 +5194,17 @@ msgid "Installing package %s"
msgstr "Gosod pecynnau %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Derbyn"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Gwrthod"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5146,16 +5219,16 @@ msgstr ""
"Os nad yw gennych, cliciwch Dileu i osgoi gosod o'r CD-ROM hwn."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Mynd yn ein blaen beth bynnag?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Roedd gwall wrth drefnu pecynnau"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Digwyddodd gwall wrth osod pecyn"
@@ -5281,7 +5354,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5471,7 +5544,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ydych chi'n siwr eich bod am wrthod y drwydded?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Allweddell"
@@ -5680,11 +5753,11 @@ msgstr "Rhowch ddisg meddal yn cynnwys dewis pecynnau yn y peiriant"
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:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Math o osodiad"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5692,19 +5765,19 @@ msgstr ""
"Nid ydych wedi dewis unrhyw grwpiau o becynnau.\n"
"Dewiswch y gosodiad lleiaf rydych ei eisiau"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Gyda X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Gyda dogfennaethelfennol (argymhellir!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Gosodiad bychan iawn (yn arbennig dim urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5714,16 +5787,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom wedi ei labelu \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Paratoi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5732,21 +5805,21 @@ msgstr ""
"Gosod pecyn %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ffurfweddiad ôl osod"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5821,7 +5894,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5840,155 +5913,155 @@ msgstr ""
"\n"
"Ydych chi am osod y diweddariadau?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Dewiswch ddrych lle mae modd estyn y pecynnau"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Pa un yw eich parth amser?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Cloc caledwedd wedi ei osod i GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Cydweddi amser awtomatig (defnyddio NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Gweinydd NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Gwasanaethwr CUPS pell"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nid oes argraffydd"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "A oes gennych gerdyn sain ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Heb ganfod cerdyn sain. Ceisiwch \"harddrake\" wedi'r gosodiad"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Crynodeb"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Llygoden"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Cylchfa amser"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Argraffydd"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Cerdyn ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Cerdyn sain"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Cerdyn Teledu"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Ffeiliau lleol"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Gosod cyfrinair gwraidd"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Dim cyfrinair"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Dilysu"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "Sail dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Gwasanaethwr LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Dilysu LDAP"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Parth NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Gwasanaethwr NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -6015,19 +6088,19 @@ msgstr ""
"system.\n"
"Bydd y gorchymyn 'wbinfo -t' yn gwirio a yw eich cyfrinachau dilysu'n addas."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Dilysu Parth Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Enw Defnyddiwr Gweinyddiaeth Parth"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Cyfrinair Gweinyddol y Parth"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6058,19 +6131,19 @@ msgstr ""
"gyrrwr\n"
" cyntaf a chliciwch \"Iawn\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Gyrrwr disg meddal cyntaf"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Ail ddisg meddal"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Hepgor"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6095,7 +6168,7 @@ msgstr ""
"greu disg cychwyn ar gyfer eich system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6109,28 +6182,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Nid oes gyrrwr disg meddal ar gael"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Rhowch ddisg meddal yn %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Creu disg cychwyn"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Paratoi llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6144,11 +6217,11 @@ msgstr ""
"rhaid defnyddio BootX i gychwyn\n"
"eich peiriant."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ydych chi eisiau defnyddio aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6156,15 +6229,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Gosod llwythwr cychwyn"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Methodd gosod llwythwr cychwyn. Digwyddodd y gwall canlynol:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6182,17 +6255,17 @@ msgstr ""
" Yna teipiwch: shut-down\n"
"Wrth gychwyn eto dylech weld anogwr y llwythwr cychwyn."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6202,7 +6275,7 @@ msgstr ""
"\n"
"Ydych chi wir eisiau gorffen?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6234,15 +6307,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Creu disg meddal awto gosod"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6257,15 +6330,15 @@ msgstr ""
"\n"
"Efallai byddai'n well gennych ai osod y gosodiad.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Awtomeiddwyd"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ail chwarae"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Cadw'r dewis becynnau"
@@ -6301,14 +6374,14 @@ msgstr "Uwch"
msgid "Basic"
msgstr "Elfennol"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Nesaf"
@@ -6754,7 +6827,7 @@ msgstr "Bysell \"Windows\" de"
msgid "Circular mounts %s\n"
msgstr "Gosodiadau cylch %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Tynnu'r cyfrolau rhesymegol yn gyntaf\n"
@@ -6891,15 +6964,15 @@ msgstr "dim"
msgid "No mouse"
msgstr "Dim llygoden"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Profwch y llygoden"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "I ysgogi'r llygoden,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "SYMUDWCH YR OLWYN!"
@@ -6935,11 +7008,11 @@ msgstr "Cau'r goeden"
msgid "Toggle between flat and group sorted"
msgstr "Newid rhwng gwastad a'r grwp wedi ei ddidoli"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Cysylltu â'r We"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6949,23 +7022,19 @@ msgstr ""
"Mae rhai cysylltiadau'n defnyddio pptp, a rhai dhcp.\n"
"Os nad ydych yn gwybod pa un, dewiswch pppoe."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "usb Alcatel Speedtouch"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "defnyddiwch dhccp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "defnyddiwch pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "defnyddiwch pptp"
@@ -7066,7 +7135,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:362
msgid "Configuring network"
msgstr "Ffurfweddu'r rhwydwaith"
@@ -7082,15 +7151,15 @@ 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:367
msgid "Host name"
msgstr "Enw gwesteiwr"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Dewin Ffurfweddu'r Rhwydwaith"
@@ -7138,8 +7207,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Hen ffurfweddiad (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Ffurfweddiad ISDN"
@@ -7175,23 +7244,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Pa brotocol ydych chi eisiau ei ddefnyddio?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Pa fath o gerdyn sydd gennych?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Dim syniad"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7204,19 +7278,19 @@ msgstr ""
"\n"
"Os oes gennych gerdyn PCMCIA, rhaid i chi wybod irq ac io eich cerdyn.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Peidio"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Parhau"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Pa un yw eich cerdyn IDSN?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7224,7 +7298,7 @@ msgstr ""
"Rwyf wedi canfod cerdyn IDSN, ond nid wyf yn gwybod pa fath. Dewiswch un "
"cerdyn PCI ar y sgrin nesaf."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heb ganfod cerdyn PCI ISDN. Dewiswch un o'r sgrin nesaf."
@@ -7276,7 +7350,7 @@ msgstr "Gwasanaethwr DNS Cyntaf (dewisol)"
msgid "Second DNS Server (optional)"
msgstr "Ail Wasanaethwr DNS (dewisol)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7284,7 +7358,7 @@ msgstr ""
"\n"
"Medrwch ddatgysylltu neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7292,11 +7366,11 @@ msgstr ""
"\n"
"Medrwch ailffurfweddu eich cysylltiad"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Rydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7304,32 +7378,32 @@ msgstr ""
"\n"
"Medrwch gysylltu â'r Rhyngrwyd neu ailffurfweddu eich cyswllt"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Nid ydych wedi eich cysylltu â'r rhyngrwyd."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Cysylltu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Dadgysylltu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Ffurfweddu'r gysylltiad"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Cysylltiad â'r rhyngrwyd a'i ffurfweddiad "
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Rydym am ffurfweddu cysylltiad %s"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7348,12 +7422,12 @@ msgstr ""
"\n"
"Pwyswch Iawn i barhau."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ffurfweddiad y Rhwydwaith"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7365,7 +7439,7 @@ msgstr ""
"Cliciwch Iawn i gadw eich ffurfweddiad, neu ddileu i ail ffurfweddi eich "
"cysylltiad Rhyngrwyd a Rhwydwaith.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7377,72 +7451,72 @@ msgstr ""
"Rydym ar fin ffurfweddi eich cysylltiad rhyngrwyd/rhwydwaith.\n"
"Os nad ydych am ddefnyddio awto ganfod, dad-diciwch y blwch dewis.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Dewiswch broffil i'w ffurfweddu"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Defnyddio awto ganfod"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Canfod dyfeisiadau..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Cysylltiad modem arferol"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "canfyddwyd ar borth %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Cysylltiad ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "canfyddwyd %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Cysylltiad ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "canfyddwyd ar rhyngwyneb %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "canfyddwyd cysylltiad cebl"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "cysylltiad LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "cerdyn ethernet wedi ei ganfod"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Dewiiwch y math o gysylltiad rydych am ei ffurfweddu"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7452,23 +7526,23 @@ msgstr ""
"Dewiswch ba un rydych am ei ddefnyddio.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Cysylltiad â'r Rhyngrwyd"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Ydych chi eisiau agor y cysylltiad wrth gychwyn y cyfrifiadur?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Ffurfweddiad y rhwydwaith"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Rhaid ail gychwyn y rhwydwaith"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7479,7 +7553,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7489,7 +7563,7 @@ msgstr ""
"Bydd y ffurfweddiad yn cael ei osod ar eich system\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7498,7 +7572,7 @@ msgstr ""
"amgylchedd X i osgoi unrhyw anawsterau'n perthyn i enwau gwesteiwr.\n"
"."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7508,7 +7582,7 @@ msgstr ""
"Profwch eich cysylltiad drwy net_monitor neu mcc. Os nad yw eich cysylltiad "
"yn gweithio, efallai y byddwch eisiau ailgychwyn y ffurfweddiad"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7520,7 +7594,7 @@ msgstr ""
"Derbyniwch y cynnig i gadw'r ddyfais wedi ei ffurfweddi.\n"
"Bydd newid y meysydd islaw'n newid y ffurfweddiad."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7530,42 +7604,42 @@ msgstr ""
"Dylai pob eitem ei roi fel cyfeiriad IP nodiant collnod degymol\n"
"(e.e.1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Ffurfweddu dyfais rhwydwaith %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (gyrrwr %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Cyfeiriad IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP awtomatig"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Cychwyn y peiriant"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7577,42 +7651,52 @@ 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:368
msgid "DNS server"
msgstr "Gwasanaethwr DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Mynedfa (e.e. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dyfais mynedfa"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "dylai cyfeiriad IP fod mewn fformat 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Ffurfweddiad dirprwyon"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Dirprwy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Dirprwy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
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:400
msgid "Proxy should be http://..."
msgstr "Dylai dirprwyon fod yn gyfanrif!"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Dylai rhif porth fod yn ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9213,7 +9297,7 @@ msgstr "Argraffu ar argraffydd \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9780,10 +9864,6 @@ msgstr ""
"Llanwxh y gwybodaeth dirprwy ftp\n"
"Gadewch yn wag os nad ydych eisiau dirprwy ftp"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Dylai'r URL ddechrau gyda 'ftp' neu 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9831,6 +9911,41 @@ msgstr "methodd mkraid (efallai bod raidtools ar goll)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Dim digon o raniadau ar gyfer RAID lefel %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Lefel diogelwch:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Lefel diogelwch"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Gweinyddwr Diogelwch:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "(Rhagosodedig)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Dewiswch lefel diogelwch"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Arhoswch, paratoi'r gosodiad"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Cychwynnwch system sain ALSA (Pensaernďaeth Sain Linux Uwch)"
@@ -10146,7 +10261,7 @@ msgstr "Rhyngrwyd"
msgid "File sharing"
msgstr "Rhannu Ffeiliau"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10238,7 +10353,7 @@ msgstr "Cael y mwyaf o'r Rhyngrwyd"
#: ../../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"
msgstr ""
@@ -10295,7 +10410,7 @@ msgstr "Rhyngwynebau defnyddwyr"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10321,7 +10436,7 @@ msgstr "Trowch eich peiriant i fod yn wasanaethwr dibynadwy"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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 "
@@ -10341,7 +10456,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Mae'r mur cadarn hwn yn cynnwys nodwedd rhwydwaith i'ch galluogi i gyflawni "
@@ -10358,7 +10473,7 @@ msgstr "Y siop MandrakeSoft swyddogol"
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Mae amrediad eang o ddarpariaeth Linux, yn ogystal â chynigion arbennig ar "
"gynnyrch a 'difyrrwch', ar gael ar-lein yn ein e-siop"
@@ -10412,8 +10527,8 @@ 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 your 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
@@ -10450,11 +10565,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Gosod pecynnau..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Allgofnodwch ac yna defnyddiwch Ctrl Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ail fewn gofnodwch i %s i wireddu'r newidiadau"
@@ -10495,16 +10610,6 @@ msgstr "Ychwanegu/Diddymu Defnyddwyr"
msgid "Add/Del Clients"
msgstr "Ychwanegu/Dileu Cleientiaid"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Cymorth"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disg Meddal Cychwyn"
@@ -10553,48 +10658,64 @@ msgstr "Pob Defnyddiwr-->"
msgid "<-- Del User"
msgstr "<-- Dileu Defndyddiwr"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Delweddau Cychwyn y Rhwyd"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Ychwanegu Cleient -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<--Diddymu Cleient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Ffurfweddu dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Ffurfweddiad Uwch"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Ysgrifenu ffurfweddu"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Mewnosodwch ddisg meddal:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Maethu cael mynediad i'r disg meddal!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Mae modd tynnu'r disg meddal nawr"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Does dim gyrrwr disg meddal ar gael!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "%s yw'r delwedd ISO etherboot"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Aeth rhywbeth o'i le! - ydy mkisofs wedi ei osod?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Mae angen creu /etc/dhcpd.conf yn gyntaf"
@@ -10738,12 +10859,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Cyfanswm y cynnydd"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10756,41 +10877,41 @@ msgstr ""
"Warning: If you've already done this process you'll probably\n"
" need to purge the entry from authorized_keys on the server."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Bydd hyn yn cymryd amser i gynhyrchu'r allweddi"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "GWALL; methu taenu %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Dim cais am gyfrinair ar %s ym mhorth %s"
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr "Cyfrinair gwallus yn %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Gwrthodwyd caniatâd wrth drosglwyddo %s i %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr "Methu canfod %s ar %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr "Nid yw %s yn ymateb"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10807,64 +10928,64 @@ msgstr ""
"ssh -i %s %s\\@%s\n"
"heb dderbyn cais am gyfrinair"
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "Mae safle pell WebDAV eisioes wedi cydamseru!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "Method trosglwyddiad WebDaAV!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Dim CDR/DVDR yn y gyrrwr!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Nid yw'n ymddangos fel cyfrwng cofnodi."
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Nid cyfrwng dileuadwy!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Bydd yn cymryd ychydig o amser i ddileu'r cyfrwng."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Anhawsterau caniatâd wrth gael mynediad i'r CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr "Dim tâp yn %s!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Ffeiliau system wrth gefn"
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Ffeiliau cadw wrth gefn y Disg Caled"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Cynnydd Disg Caled wrth Gefn..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Cadw wrth gefn ffeiliau eraill..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Dim newid i'r ffeil wrth gefn"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10875,7 +10996,7 @@ msgstr ""
"Gweithgaredd Drakbackup drwy %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10884,7 +11005,7 @@ msgstr ""
"rhestr ffeil yrrwyd gan FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10894,7 +11015,7 @@ msgstr ""
" Anhawster cysylltiad FTP: Nid oedd yn bosibl anfon eich ffeiliau wrth gefn "
"drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10904,7 +11025,7 @@ msgstr ""
"Gweithgaredd Drakbackup drwy CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10914,24 +11035,24 @@ msgstr ""
"Gweithgaredd Drakbackup drwy dâp:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Gwall wrth anfon e-bost. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Methu creu catalog!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dewis ffeiliau"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Dewiswch y ffeiliau neu gyfeiriaduron a chliciwch 'Ychwanegu'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10939,26 +11060,26 @@ msgstr ""
"\n"
"Gwiriwch pob dewis sydd angen arnoch.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Cadw wrth gefn ffeiliau System. ( cyfeiriadur /etc )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Cadw wrth gefn cynyddol (peidio disodli hen ffeiliau wrth gefn)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Peidio cynnwys ffeiliau hanfodol (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10966,43 +11087,43 @@ msgstr ""
"Gyda'e dewis hwn medrwch adfer unrhyw fersiwn\n"
"o'ch cyfeiriadur /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Peidio cynnwys storfa'r porwr"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Defnyddio Cadw wrth Gefn Cynyddol (peidio disodli hen gadw wrth gefn)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Tynnu'r Dewis"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Defnyddwyr"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Defnyddiwch cysylltiad rhwydwaith i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr "Dull Rhwyd:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Defnyddiwch Expect ar gyfer SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -11010,7 +11131,7 @@ msgstr ""
"Creu/Trosglwyddo\n"
"allweddi wrth gefn ar gyfer SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -11018,15 +11139,18 @@ msgstr ""
"Trosglwyddo \n"
"Nawr"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Allewddi yn eu lle yn barod"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Rhowch enw'r gwesteiwr neu'r IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -11034,27 +11158,27 @@ msgstr ""
"Rhowch y cyfeiriadur(neu fodiwl) i osod y cadw\n"
"wrth gefn ar y gwesteiwr hwn."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Rhowch eich mewngofnod"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Rhowch eich cyfrinair"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Cofiwch y cyfrinair"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Angen enw gwesteiwr, enw defnyddiwr a chyfrinair"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Defnyddiwch yr CD/DVDROM i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11064,35 +11188,35 @@ msgstr ""
"(Gwasgwch Enter i drosglwyddo'r gosodiadau i feysydd eraill.\n"
"Nid yw'r maes hwn yn angenrheidiol, dim ond offeryn i lanw'r ffurflen.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Dewiswch maint eich gofod CD/DVD"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Gwiriwch os ydych yn defnyddio CD amlsesiwn"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Gwiriwch os ydych yn defnyddio cyfrwng CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Gwiriwch os ydych am ddileu eich cyfrwng RW(Sesiwn 1af)"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr "Dileu Nawr"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Gwiriwch os ydych yn defnyddio dyfais DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11100,33 +11224,33 @@ msgstr ""
"Rhowch enw dyfais eich Ysgrifennwr CD\n"
"ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Heb ddiffinio dyfais CD!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Defnyddiwch dâp i gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
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:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
"Gwiriwch os ydych am ddefnyddio'r dyfais nad yw'n mynd nôl i'e ddechrau."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "Gwiriwch os ydych am ddileu eich tâp cyn y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr "Gwiriwch os ydych am dynnu eich tâp ar ôl y cadw wrth gefn."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11134,55 +11258,55 @@ msgstr ""
"Rhowch y maint mwyaf\n"
"i'w ganiatáu ar gyfer Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Defnyddiwch y cwota ar gyfer ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disg Caled / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Tâp"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "bob awr"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "bob dydd"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "bob wythnos"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "bob mis"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Defnyddiwch ddaemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11190,7 +11314,7 @@ msgstr ""
"Dewiswch faint o amser\n"
"fydd rhwng pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11198,7 +11322,7 @@ msgstr ""
"Dewiswch y cyfrwng ar\n"
"gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -11208,71 +11332,71 @@ msgstr ""
"\n"
"Sylwer bod yr holl gyfrwn \"gwe\" yn defnyddio'r ddisg caled."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Anfonwch adroddiad e-bost wedi pob cadw wrth gefn i :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Dileu ffeiliau tar y Disg Caled wedi cadw cyfrwng arall wrth gefn."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Beth"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Lle"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Pryd"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Dewisiadau Eraill"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Ffurfweddiad Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Dewiswch i le rydych am gadw ffeiliau wrth gefn"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ar Ddisg Caled"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "ar draws Rhwydwaith"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "ar CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "ar Ddyfais Tâp"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Dewiswch beth rydych am ei gadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "System cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Defnyddwyr Cadw wrth Gwfn"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Dewis defnyddwyr gyda llaw"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11280,7 +11404,7 @@ msgstr ""
"\n"
"Ffynhonell Cadw wrth Gefn:\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11288,7 +11412,7 @@ msgstr ""
"\n"
"- Ffeiliau System: \n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11296,7 +11420,7 @@ msgstr ""
"\n"
"- Ffeiliau Defnyddiwr:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11304,7 +11428,7 @@ msgstr ""
"\n"
"- Ffeiliau Eraill: \n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11313,7 +11437,7 @@ msgstr ""
"\n"
"Cadw ar Ddisg caled ar lwybr: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -11321,7 +11445,7 @@ msgstr ""
"\n"
"- Dileu ffeiliau tar y disg caled wedi'r cadw wrth gefn.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -11329,20 +11453,20 @@ msgstr ""
"\n"
"-Llosgi i CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr "(aml-sesiwn)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11351,12 +11475,12 @@ msgstr ""
"\n"
"- Cadw i dâp ar ddyfais: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tDileu=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11365,7 +11489,7 @@ msgstr ""
"\n"
"- Cadw drwy %s ar westeiwr: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11374,7 +11498,7 @@ msgstr ""
"\t\t enw defnyddiwr:%s\n"
"\t\t ar lwybr: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11382,19 +11506,19 @@ msgstr ""
"\n"
"-Dewisiadau:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tPeidiwch cynnwys Ffeiliau System\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\t Bydd Cadw wrth gefn yn defnyddio tar a bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBydd Cadw wrth Gefn yn defnyddio tar a gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11403,39 +11527,39 @@ msgstr ""
"\n"
"- Daemon (%s) i gynnwys :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Disg Caled.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tâp \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Rhwydwaith drwy FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Rhwydwaith drwy SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Rhwydwaith drwy rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Rhwydwaith drwy webday.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Dim ffurfweddiad, cliciwch Dewin neu Uwch.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11443,7 +11567,7 @@ msgstr ""
"Rhestr o ddata i'w adfer:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11451,104 +11575,104 @@ msgstr ""
"Rhestr o ddata llwgr:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Dad-diciwch hwn neu ei dynnu'r tro nesaf."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Mae'r ffeiliau wrth gefn wedi eu llygru"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Mae eich dewis data wedi ei "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Ei adfer yn Llwyddiannus ar %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Adfer y Furfweddiad"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Iawn i adfer ffeiliau eraill"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Cadw'r ffeiliau system wrth gefn cyn:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "dewiswch y data i'w adfer"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Defnyddiwch y Ddisg Caled ar gyfer cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Rhowch y cyfeiriadur i gadw iddo:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Cysylltiad FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Cysylltiad Diogel"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Adfer o'r Ddisg Caled."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
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:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Dewis cyfrwng arall i adfer ohono"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Cyfrwng Arall"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Adfer y system"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Adfer Defnyddwyr"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Adfer Arall"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "dewis llwybr arall i adfer ( yn lle / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
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:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Tynnu cyfeiriaduron defnyddiwr cyn adfer."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
@@ -11556,7 +11680,7 @@ msgstr ""
"Adfer Cofnod\n"
"Catalog Ddewiswyd"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -11564,7 +11688,7 @@ msgstr ""
"Adfer y Dewis\n"
"Ffeiliau"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -11572,12 +11696,12 @@ msgstr ""
"Newid\n"
"Llwybr Adfer"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Heb ganfod y ffeiliau wrth gefn yn %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11586,16 +11710,16 @@ msgstr ""
"Rhowch yr CD gyda label cynnwys%s\n"
"yn yr gyrrwr CD o dan bwynt gosod /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Adfer o'r CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Nid yr label CD cywir. Disg wedi ei labelu %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -11604,102 +11728,102 @@ msgstr ""
"Rhowch y tâp gyda label cynnwys%s\n"
"yn yr gyrrwr tâp %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Adfer o Dâp"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Nid yr label tâp cywir. Tâp wedi ei labelu %s."
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Adfer drwy'r Rhwydwaith"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Adfer drwy Protocol Rhwydwaith: %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Enw Gwesteiwr"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Llwybr Gwesteiwr neu Fodwil "
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Mae angen cyfrinair"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Mae angen enw defnyddiwr"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Mae angen enw gwesteiwr"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Llwybr neu Fodiwl angenrheidiol"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Adferwyd ffeiliau..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Methodd Adfer..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Adfer pob cadw wrth gefn"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Adfer Dewisol"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "CD yn ei le - ewch ymlaen"
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Pori i'r ystorfa newydd adferwyd"
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Adfer o'r Catalog"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
msgstr "Adfer Cynnydd"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Cynt"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorffen"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Adeiladu Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Adfer"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11709,7 +11833,7 @@ msgstr ""
" chafodd eich adroddiad e-bost mo'i anfon\n"
" Ffurfweddwch eich sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11717,7 +11841,7 @@ msgstr ""
"Mae'r pecynnau canlynol i'w gosod:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11725,19 +11849,19 @@ msgstr ""
"Gwall wrth anfon ffeil drwy FTP.\n"
" Cywirwch eich ffurfweddiad FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Dewiswch y data i'w adfer..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Dewiswch y cyfrwng ar gyfer cadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Dewiswch y data i'w gadw wrth gefn..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11745,59 +11869,59 @@ msgstr ""
"Ni chanfyddwyd y ffeil ffurfweddu \n"
"cliciwch Dewin neu Uwch."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "O dan ddatblygiad...arhoswch."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Ffeiliau System Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Ffeiliau Defnyddiwr Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Cadw'r ffeiliau eraill wrth gefn"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Cyfanswm Cynydd"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "anfon ffeil drwy FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Anfon ffeiliau..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Cadwch wrth Gefn eich ffeiliau ffurfweddu"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Edrych ar Ffurfweddiad Cadw wrth Gefn"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Ffurfweddiad y Dewin"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Ffurfweddiad Uwch"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Cadw wrth Gefn Nawr"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11855,7 +11979,7 @@ msgstr ""
" ...\n"
" \n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11864,7 +11988,7 @@ msgid ""
"\n"
msgstr "\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11941,7 +12065,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11990,20 +12114,20 @@ msgstr ""
"\\n\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" yn diweddaru 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -12035,7 +12159,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,\n"
"MA 02111-1307, USA"
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12111,7 +12235,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12130,7 +12254,7 @@ msgstr ""
"cyn ei anfon i'r gwasanaethwr.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12152,7 +12276,7 @@ msgstr ""
"bwysig eich bod yn ofalus a pheidio newid y ffeiliau\n"
"data wrth gefn gyda llaw.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12278,8 +12402,8 @@ msgid "Synchronization tool"
msgstr "Offeryn Cydamseru"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Offer Unigol"
@@ -12344,7 +12468,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12353,24 +12477,24 @@ msgstr ""
"\n"
"\n"
"I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
-"Bydd hyn yn agor ffenestr porwr gwe yn https://www.bugzilla.com\n"
+"Bydd hyn yn agor ffenestr porwr gwe yn https://drakbug.mandrakesoft.com\n"
" lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
"drosglwyddo i'r gwasanaethwr\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Adroddiad"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Heb ei osod"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "cysylltwyd â dewin Bugzilla..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Dim porwr ar gael! Gosodawch un"
@@ -12471,10 +12595,6 @@ msgstr "Dewin..."
msgid "Apply"
msgstr "Gosod"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Arhoswch...Gosod y ffurfweddiad"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Wedi cysylltu"
@@ -12597,7 +12717,7 @@ msgstr "Enw'r modiwl"
msgid "Size"
msgstr "Maint"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12662,12 +12782,12 @@ msgstr "Allbwn"
msgid "Build the disk"
msgstr "Adeiladu'r ddisg"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
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
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12676,12 +12796,12 @@ msgstr ""
"Does dim cyfrwng neu mae wedi ei amddiffyn rhag ysgrifennu i'r dyfais %s.\n"
"Rhowch un i mewn.."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Methu fforchio: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13168,159 +13288,159 @@ msgstr ""
"\n"
"Cliciwch Ffurfweddu i gychwyn y dewin gosod."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grwp gwaith"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "rhaniad %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Defnyddiwr"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Dileu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gorffen"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Ychwanegu modiwl"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Ychwanegu argraffydd newydd"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Dad ddewis Popeth"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr ""
"Adfer y Dewis\n"
"Ffeiliau"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "pori"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Derbyn defnyddiwr"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Fersiwn: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porth"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Defnyddio awto ganfod"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Defnyddio awto ganfod"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Dewis sgrin croeso"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Defnyddiwr"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grwp gwaith"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Heb ganfod Cerdyn Sain!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13340,123 +13460,146 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "i weithio'n iawn mae angen ImageMagick"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "creu'r cam cyntaf"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "cydraniad terfynnol"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "dewis ffeil delwedd"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "Enw Thema"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "make bootsplash step 2"
-
-#: ../../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
+#, fuzzy
+msgid "Browse"
+msgstr "pori"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Ffurfweddu llun croeso cychwyn"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr "blwch testun cydfesuryn x mewn rhif nodau"
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
-msgstr "blwch testun cydfesuryn mewn rhif nodauy"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
+"blwch testun cydfesuryn x\n"
+"mewn rhif nodau"
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"blwch testun cydfesuryn y\n"
+"mewn rhif nodauy"
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "lled testun"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "uchder blwch testun"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr "bar cynnydd cydfesuryn x yn ei gornel uchaf chwith"
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr "bar cynnydd cydfesuryn y yn ei gornel uchaf chwith"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"bar cynnydd cydfesuryn x\n"
+"yn ei gornel uchaf chwith"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"bar cynnydd cydfesuryn y\n"
+"yn ei gornel uchaf chwith"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "lled y bar cynnydd"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "uchder y bar cynnydd"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "lliw'r bar cynnydd"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr "mynd nôl"
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "rhagolwg"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "dewis lliw"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "cadw thema"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "dewis lliw"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Darddangos logo yn y Consol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Gwneud neges y cnewyllyn yn dawel drwy ragosodiad"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Does gan y thema ddim croeso cychwyn yn %s!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "cadw thema Croeso cychwyn..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Dewis lliw ProgressBar"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "Rhaid dewis ffeil delwedd yn gyntaf!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Cynhyrchu rhagolwg..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Methu creu rhagolwg Croeso Cychwyn"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13609,6 +13752,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"defnydd: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "defnydd: keyboarddrake [--expert] [keyboard]\n"
@@ -13637,13 +13788,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Methu cychwyn diweddariad byw!!! \n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13915,16 +14066,14 @@ msgstr ""
"Medrwch ddefnyddio \"XSane\" i sganio dogfennau o'r ddewislen rhaglenni Aml-"
"gyfrwng/Graffigau."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Cafodd rhai dyfeisiau yn nosbarth caledwedd\"%s\" eu tynnu:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Cafodd rhai dyfeisiau yn nosbarth %s eu hychwanegu:\n"
@@ -14001,7 +14150,7 @@ msgstr "Diweddariadau system gosod"
msgid "Exit install"
msgstr "Gadael gosod"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14252,8 +14401,45 @@ msgstr "Aml-gyfrwng - Llosgi CD"
msgid "Scientific Workstation"
msgstr "Gweithfan Gwyddonol"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Methu creu rhagolwg Croeso Cychwyn"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "I gyflwyno adroddiad gwall, cliciwch ar y botwm adroddiad.\n"
+#~ "Bydd hyn yn agor ffenestr porwr gwe yn https://www.bugzilla.com\n"
+#~ " lle welwch ffurflen i'w llenwi. Bydd yr wybodaeth rhowch arno'n cael ei\n"
+#~ "drosglwyddo i'r gwasanaethwr\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "make bootsplash step 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "mynd i fffurfweddiad lilosplash"
+
+#~ msgid "Go back"
+#~ msgstr "mynd nôl"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr "Nid oes gyrrwr OSS/ALSA hysbys ar gyfer eich cerdyn sain (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Dylai rhif porth fod yn ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "gadael"
#~ msgid ""
#~ "To share your own knowledge and help build Linux tools, join the "
@@ -14263,16 +14449,6 @@ msgstr "Gweithfan Gwyddonol"
#~ "a chynorthwywch eraill drwy ymuno yn y grwpiau trafod niferus sydd i'w "
#~ "cael yn ein tudalennau gwe \"Cymuned\""
-#~ 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"
-#~ msgstr ""
-#~ "Mae Mandrake Linux 9.0 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. "
-
#~ msgid "Discover the most up-to-date graphics and multimedia tools!"
#~ msgstr "Darganfyddwch yr offer graffigol ac amlgyfrwng mwyaf diweddar!"
@@ -14284,14 +14460,14 @@ msgstr "Gweithfan Gwyddonol"
#~ "antur, cardiau, chwaraeon, strategaeth..."
#~ msgid ""
-#~ "Mandrake Linux 9.0 provides 11 user interfaces which can be fully "
+#~ "Mandrake Linux 9.0 provides 11 user interfaces that can be fully "
#~ "modified: KDE 3, Gnome 2, WindowMaker..."
#~ msgstr ""
#~ "Mae Mandrake 9.0 yn darpary 11 rhyngwyneb defnyddiwr y mae modd eu "
#~ "haddasu'n llawn: KDE 3, Gnome 2, WindowMaker..."
#~ msgid ""
-#~ "Transform your machine into a powerful server in a few clicks of your "
+#~ "Transform your machine into a powerful server with 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 "
@@ -14329,15 +14505,6 @@ msgstr "Gweithfan Gwyddonol"
#~ "MandrakeSoft."
#~ 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 ""
-#~ "Ymunwch â thimau cefnogi MandrakeSoft a'r Gymuned Linux arlein i rannu "
-#~ "eich gwybodaeth a cynnig cymorth i eraill drwy ddod yn Arbennigwr "
-#~ "cydnabyddedig ar safle cefnogaeth dechnegol arlein:"
-
-#~ 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."
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index a6bc7852d..fbed35db8 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-05 12:07+0200\n"
"Last-Translator: Keld Simonsen <keld@dkuug.dk>\n"
"Language-Team: dansk <dansk@klid.dk>\n"
@@ -92,24 +92,24 @@ msgstr "Konfigurér alle skćrme uafhćngigt"
msgid "Use Xinerama extension"
msgstr "Brug Xinerama-udvidelse"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurér kun kort \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s med EKSPERMENTAL 3d hardware acceleration"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ msgstr ""
"VIGTIGT: Dette er eksperimentelt og kan fĺ din maskine til at lĺse eller gĺ "
"ned."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installations-skćrmdriver)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Tilpasset"
@@ -176,32 +176,32 @@ msgstr "Oplřsning"
msgid "Test"
msgstr "Afprřv"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "O.k."
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Afslut"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -300,25 +300,25 @@ msgstr "Vćlg oplřsning og farvedybde"
msgid "Graphics card: %s"
msgstr "Grafikkort: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Annullér"
@@ -395,11 +395,11 @@ msgstr "XFree86-server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 driver: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Start X ved systemstart"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -408,7 +408,7 @@ msgstr ""
"Jeg kan sćtte din maskine op til automatisk at starte X ved\n"
"opstart. Řnsker du at starte X hver gang du genstarter?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -428,7 +428,7 @@ msgstr ""
"\n"
"Har du denne funktion?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Hvilken standard bruger dit tv?"
@@ -500,7 +500,7 @@ msgstr "Kompakt"
msgid "compact"
msgstr "kompakt"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Videoindstilling"
@@ -508,17 +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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Adgangskode"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Adgangskode (igen)"
@@ -554,14 +554,14 @@ msgstr ""
"Indstillingen ``Begrćns kommandolinie-indstillinger'' er intet vćrd uden\n"
"en adgangskode"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Prřv igen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Adgangskoderne stemmer ikke overens"
@@ -603,7 +603,7 @@ msgstr ""
"\n"
"Hvilket drev starter du op fra?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -611,148 +611,148 @@ msgstr ""
"Her er fřlgende typer indgange.\n"
"Du kan tilfřje flere eller ćndre de eksisterende."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tilfřj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fćrdig"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ćndr"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Andet styresystem (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Andet styresystem (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Andet styresystem (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Billede"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Rod"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Vedhćft"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lćs-skriv"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Usikker"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Mćrkat"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Forvalgt"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-střrrelse"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Ingen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Fjern indgang"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tom mćrkat er ikke tilladt"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Du skal angive en kerne-fil"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Du skal angive en root-partition"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Denne mćrkat er allerede brugt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fandt %s %s grćnsesnit"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Har du én til?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Har du nogen %s grćnsesnit?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nej"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Se info for maskinel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installerer driver for %s kort %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -761,7 +761,7 @@ msgstr ""
"Du kan nu angive parametre til modul %s.\n"
"Bemćrk at alle adresser břr indtastes med foranstillet 0x, fx '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -772,17 +772,17 @@ msgstr ""
"Parametrene er i formatet ``navn=vćrdi navn2=vćrdi2 ...''.\n"
"F.eks., ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulindstillinger:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvilken %s driver skal jeg prřve?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -802,15 +802,15 @@ msgstr ""
"burde\n"
"ikke forĺrsage nogen skader."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatisk sondering"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specificér parametre"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -819,61 +819,61 @@ msgstr ""
"Indlćsning af modul %s mislykkedes.\n"
"Řnsker du at prřve igen med andre parametre?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "adgang til X-programmer"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "adgang til rpm-vćrktřjer"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "tillad \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "adgang til administrative filer"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "adgang til netvćrksvćrktřjer"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "adgang til oversćttelsesvćrktřjer"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(har allerede tilfřjet %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Adgangskoden er for simpel"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Indtast et brugernavn"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Brugernavnet mĺ kun indeholde smĺ bogstaver, tal, `-' og `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Dette brugernavn er for langt"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Dette brugernavn eksisterer allerede"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Tilfřj bruger"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -882,32 +882,32 @@ msgstr ""
"Indtast en bruger\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Acceptér bruger"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Rigtige navn"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Brugernavn"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Skal"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -915,19 +915,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:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Vćlg den forvalgte bruger:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Vćlg den vindueshĺndtering du řnsker at benytte:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Vćlg det sprog, der skal bruges."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -935,35 +935,35 @@ msgid ""
msgstr ""
"Du kan vćlge andre sprog der vil vćre tilgćngelige efter installationen"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alt"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Tillad alle brugere"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Ingen fildeling"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Krćvet pakke %s mangler"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -976,11 +976,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:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Start userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -988,31 +988,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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Velkommen til Crackere"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Ringe"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hřj"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Hřjere"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1023,7 @@ msgstr ""
"eller har forbindelse til Internettet. Der er ikke nogen kontrol af "
"adgangskoder."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1031,7 +1031,7 @@ msgstr ""
"Kontrol af adgangskode er nu aktiveret, men brug som netvćrksmaskine er "
"stadig ikke anbefalet."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1039,7 +1039,7 @@ msgstr ""
"Dette er standard sikkerheds-anbefalingen for en maskine\n"
" med forbindelse til Internettet som klient. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1047,7 +1047,7 @@ msgstr ""
"Der er allerede nogle begrćnsninger, og flere automatiske kontroller bliver "
"křrt hver nat."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1061,7 +1061,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:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1069,33 +1069,33 @@ 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:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Basale valgmuligheder for DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Vćlg det řnskede sikkerhedniveau"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sikkerhedsniveau"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Brug libsafe for servere"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Sikkerhedsadministrator (brugernavne eller e-post)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1110,7 +1110,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1135,58 +1135,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Skrivebord"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start-menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "endnu er ingen hjćlp implementeret.\n"
@@ -1238,63 +1238,63 @@ msgstr "Lilo/grub modus"
msgid "Yaboot mode"
msgstr "Yaboot modus"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Installér temaer"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Visningstema under konsol"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Opret nyt tema"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Sikkerhedskopiér %s til %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fejl"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "kunne ikke lave sikkerhedskopi af lilo-besked"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiér %s til %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "kan ikke ćndre lilo-besked"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Lilo-besked ikke fundet"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Kan ikke skrive /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Skriv %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1302,17 +1302,17 @@ msgstr ""
"Kan ikke skrive /etc/sysconfig/bootsplash\n"
"Fil ikke fundet."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, 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:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Lav initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1321,24 +1321,24 @@ msgstr ""
"Start \"lilo\" som root pĺ kommandolinjen for at fćrdiggřre installationen "
"af Lilo-tema."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Genstart 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Bemćrk"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Problemfri installation af temaer for LiLo- og opstartsskćrm"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Installation af tema mislykkedes"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1347,21 +1347,21 @@ msgstr ""
"Du bruger for řjeblikket % som opstartshĺndterer.\n"
"Klik pĺ Konfigurér for at starte opsćtnings-vejlederen."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurér"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Valg af opstartsskćrm"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Temaer"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1375,44 +1375,44 @@ msgstr ""
"du kan vćlge\n"
"dem separat"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Lilo-skćrm"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Opstartsskćrm"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Systemtilstand"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Start X-vinduessystemet efter opstart"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nej, jeg řnsker ikke automatisk login"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, jeg řnsker automatisk login med denne (bruger, skrivebord)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "O.k."
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan ikke lćse /etc/inittab: %s"
@@ -1509,50 +1509,58 @@ msgstr "Řstrig"
msgid "United States"
msgstr "U.S.A."
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Ny"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montér"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Indtast LRL for WebDAV-serveren"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URL'en skal begynde med http:// or https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Monteringssti: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Valg: %s"
@@ -1639,7 +1647,7 @@ msgstr "Tom"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Andet"
@@ -1782,7 +1790,7 @@ msgstr ""
"Kopien af partitionstabellen har ikke samme střrrelse\n"
"Fortsćt alligevel?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advarsel"
@@ -2342,7 +2350,7 @@ msgstr ""
"Indtast venligst dit brugernavn, din adgangskode og dit domćnenavn for at fĺ "
"adgang til denne vćrt."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Brugernavn"
@@ -2354,23 +2362,23 @@ msgstr "Domćne"
msgid "Search servers"
msgstr "Sřg efter servere"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering af %s mislykkedes"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montering af partition %s i katalog %s mislykkedes"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fejl ved afmontering af %s: %s"
@@ -2456,47 +2464,110 @@ msgstr "Ingenting at lave"
msgid "Error opening %s for writing: %s"
msgstr "Fejl ved ĺbning af %s for skrivning: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Intet alternativ drivprogram"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Der findes intet kendt alternativ OSS/ALSA-drivprogram for lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Lyd-konfiguration"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Her kan du vćlge et alternativ drivprogram (enten OSS eller ALSA) for "
"lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Drivprogram:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Hjćlp"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Vent venligst... Sćtter konfigurationen i anvendelse"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Vent venligst"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Ingen kendt driverrutine"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Der findes intet kendt drivprogram for lydkortet (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Ukendt drivprogram"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2624,7 +2695,8 @@ msgid "/_Quit"
msgstr "/_Afslut"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hjćlp"
@@ -2645,14 +2717,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Rapportér fejl"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Om..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Om Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2660,56 +2736,53 @@ msgstr ""
"Dette er HardDrake, et Mandrake-vćrktřj for konfigurering af maskinel.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Forfatter:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 version "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Fundet maskinel"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informationer"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfigurér modul"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Křr konfigurationsvćrktřj"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Sřgning udfřres"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Vent venligst"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Du kan konfigurere hver parameter for modulet her."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Křrer \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr "Undersřger $Ident-klasse\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "Undersřger %s-klasse\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "primćr"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "sekundćr"
@@ -4549,7 +4622,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Du skal ogsĺ formatere %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4573,7 +4646,7 @@ msgstr ""
"\n"
"Řnsker du virkelig at installere disse servere?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4586,20 +4659,20 @@ msgstr ""
"\n"
"Řnsker du virkelig at fjerne disse pakker?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan ikke bruge rundkastning uden noget NIS-domćne"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Denne diskette er ikke formatteret til FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4607,12 +4680,12 @@ msgstr ""
"For at bruge dette gemte pakkevalg, start installationen op med``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../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
+#: ../../install_any.pm_.c:1030
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"
@@ -4854,7 +4927,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Velkommen til %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Intet tilgćngeligt diskettedrev"
@@ -4884,11 +4957,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Valg af pakkegrupper"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuelt pakkevalg"
@@ -4966,7 +5039,7 @@ msgstr "Vis automatisk valgte pakker"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installér"
@@ -4986,7 +5059,7 @@ msgstr "Minimal installation"
msgid "Choose the packages you want to install"
msgstr "Vćlg pakker som skal installeres"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installerer"
@@ -5013,17 +5086,17 @@ msgid "Installing package %s"
msgstr "Installerer pakke %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Acceptér"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Nćgt"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5039,16 +5112,16 @@ msgstr ""
"Hvis du ikke har den sĺ tryk pĺ Annullér, sĺ undgĺs installation fra denne cd"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Fortsćt alligevel?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Der opstod en fejl ved sorteringen af pakkerne:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Der opstod en fejl ved installeringen af pakkerne:"
@@ -5170,7 +5243,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5335,7 +5408,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:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5542,11 +5615,11 @@ msgstr "Indsćt en diskette med pakkevalget"
msgid "Selected size is larger than available space"
msgstr "Valgt střrrelse er střrre end tilgćngelig plads"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Installationstype"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5554,19 +5627,19 @@ msgstr ""
"Du har ikke valgt nogen gruppe af pakker.\n"
"Vćlg den minimale installation du řnsker"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Med X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Med basal dokumentation (anbefalet!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Virkelig minimal installation (specielt ingen urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5576,16 +5649,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cdrom med etikette '%s'"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Forbereder installationen"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5594,21 +5667,21 @@ msgstr ""
"Installerer pakke %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Konfiguration efter installation"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5676,7 +5749,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5695,155 +5768,155 @@ msgstr ""
"\n"
"Řnsker du at installere opdateringerne?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Vćlg det spejl hvorfra pakkerne skal hentes"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Hvad er din tidszone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Maskin-ur sat til GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatisk tidssynkronisering (ved hjćlp af NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Ekstern CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Ingen printer"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Har du et ISA-lydkort?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Oversigt"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mus"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tidszone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Internt ISDN-kort"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Lydkort"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kort"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domain"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokale filer"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Sćt root-adgangskode"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Ingen adgangskode"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Identifikation"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentificering LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP grundlćggende dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autentificering NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domćne"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5872,19 +5945,19 @@ msgstr ""
"Kommandoen 'wbinfo -t' vil afprřve om dine hemmelige autentifikationsdata er "
"i orden."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Autentifikations Windowsdomćne"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Brugernavn for domćneadministrator"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Adgangskode for domćneadministrator"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5912,19 +5985,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Fřrste diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Andet diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Spring over"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5949,7 +6022,7 @@ msgstr ""
"Vil du lave en opstartsdiskette til dit system?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5963,28 +6036,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Der er desvćrre ikke noget tilgćngeligt diskette-drev"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Indsćt en diskette i %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Opretter opstartsdiskette..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Forbereder opstarter..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5995,11 +6068,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:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Řnsker du at bruge aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6008,15 +6081,15 @@ msgstr ""
"forsřg at gennemtvinge installation selv om dette kan řdelćgge den fřrste "
"partition?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Installerer systemopstarter"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installation af opstarter mislykkedes. Den fřlgende fejl opstod:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6033,17 +6106,17 @@ msgstr ""
" Skriv sĺ: shut-down\n"
"Ved nćste opstart burde du se systemstarteren."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6053,7 +6126,7 @@ msgstr ""
"\n"
"Er du sikker pĺ du řnsker du at lukke nu?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6085,15 +6158,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Laver autoinstallations-diskette"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6107,15 +6180,15 @@ msgstr ""
"\n"
"Du foretrćkker mĺske at afspille installationen igen\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatisk"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Afspil igen"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Gem pakke-valg"
@@ -6151,14 +6224,14 @@ msgstr "Avanceret"
msgid "Basic"
msgstr "Basal"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Nćste"
@@ -6604,7 +6677,7 @@ msgstr "Hřjre Windows-tast"
msgid "Circular mounts %s\n"
msgstr "Cirkulćre monteringer %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Fjern de logiske delarkiver fřrst\n"
@@ -6741,15 +6814,15 @@ msgstr "ingenting"
msgid "No mouse"
msgstr "Ingen mus"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Test musen"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "For at aktivere musen,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "FLYT PĹ HJULET!"
@@ -6785,11 +6858,11 @@ msgstr "Sammenfold trć"
msgid "Toggle between flat and group sorted"
msgstr "Skift mellem flad og gruppesorteret"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Lav forbindelse til Internettet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6799,23 +6872,19 @@ msgstr ""
"Nogen forbindelser bruger pptp, og nogle fĺ bruger DHCP.\n"
"Hvis du ikke ved noget, vćlg 'brug pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "brug dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "brug pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "brug pptp"
@@ -6917,7 +6986,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:362
msgid "Configuring network"
msgstr "Konfigurerer netvćrk"
@@ -6933,15 +7002,15 @@ 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:367
msgid "Host name"
msgstr "Vćrtsnavn"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Konfigurér netvćrk"
@@ -6990,8 +7059,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Gammel konfiguration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN konfiguration"
@@ -7027,23 +7096,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hvilken protokol řnsker du at bruge?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Hvad slags kort har du?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Det ved jeg ikke"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7056,19 +7130,19 @@ msgstr ""
"\n"
"Hvis du har et PCMCIA kort skal du vide irq og io for kortet.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Afbryd"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Fortsćt"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Hvilket er dit ISDN-kort?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7076,7 +7150,7 @@ msgstr ""
"Jeg har opdaget et ISDN PCI-kort, men jeg ved ikke hvilken type. Vćlg et PCI-"
"kort i nćste skćrmbillede."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ingen ISDN PCI-kort fundet. Vćlg ét i nćste skćrmbillede."
@@ -7128,7 +7202,7 @@ msgstr "Fřrste DNS-server (valgfri)"
msgid "Second DNS Server (optional)"
msgstr "Anden DNS-server (valgfri)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7137,7 +7211,7 @@ msgstr ""
"Du kan lukke forbindelsen til Internettet eller genkonfigurere din "
"forbindelse."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7145,11 +7219,11 @@ msgstr ""
"\n"
"Du kan genkonfigurere din forbindelse"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Du har forbindelse til Internettet nu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7157,32 +7231,32 @@ msgstr ""
"\n"
"Du kan lave forbindelse til Internettet eller omkonfigurere din forbindelse."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Du er ikke forbundet til Internettet nu."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Tilslut"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Afbryd"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Konfigurér forbindelsen"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetforbindelse & -konfiguration"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vi skal nu konfigurere opkoblingen '%s'."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7201,12 +7275,12 @@ msgstr ""
"\n"
"Tryk OK for at begynde."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurér netvćrk"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7218,7 +7292,7 @@ msgstr ""
"Klik OK for at beholde din konfiguration, eller annullér for at "
"omkonfigurere din Internet- og netvćrksforbindelse.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7230,72 +7304,72 @@ msgstr ""
"Vi skal til at konfigurere din internet- eller netvćrksforbindelse.\n"
"Hvis du ikke řnsker at bruge autodetektering, sĺ fravćlg afkrydsningsboksen\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Vćlg profilen der skal konfigureres"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Brug automatisk detektion"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detekterer enheder..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normal modemforbindelse"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "Detekteret pĺ port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN-forbindelse"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "Detekteret %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL opkobling"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "Detekteret pĺ grćnseflade %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelforbindelse"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabelopkobling detekteret"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Lokalnet-konfiguration"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet-kort detekteret"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Vćlg den opkobling, du řnsker at konfigurere"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7305,23 +7379,23 @@ msgstr ""
"Venligst vćlg den du řnsker at bruger.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet opkobling"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Řnsker du at starte din forbindelse ved opstart?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netvćrks konfiguration"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Netvćrket skal startes op igen"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7332,7 +7406,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7342,7 +7416,7 @@ msgstr ""
"Konfigurationen vil nu blive anvendt pĺ dit system.\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7350,7 +7424,7 @@ msgstr ""
"Derefter anbefaler vi at du genstarter dit X-miljř for\n"
"at undgĺ problemer med det ćndrede vćrtsnavn"
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7360,7 +7434,7 @@ msgstr ""
"Afprřv din forbindelse med net_monitor eller mcc. Hvis din forbindelse ikke "
"virker, kan du prřve at genstarte konfigurationen."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7372,7 +7446,7 @@ msgstr ""
"Ved kun at trykke pĺ OK beholder du den nuvćrende konfiguration.\n"
"Ćndringer i felterne nedenunder vil overskrive denne konfiguration."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7381,42 +7455,42 @@ msgstr ""
"Indtast IP konfigurationen for denne maskine. Hvert felt skal udfyldes\n"
"med en IP adresse i `dotted-decimal' notation (for eksempel 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurerer netvćrksenheden %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (drivprogram %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adresse"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmaske"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatisk IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Start ved opstart"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7428,42 +7502,52 @@ 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:368
msgid "DNS server"
msgstr "DNS-server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (fx %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway enhed"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresse skal have formatet 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfiguration af mellemvćrt (proxy)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
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:400
msgid "Proxy should be http://..."
msgstr "Proxy skal vćre http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy skal vćre ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url burde begynde med 'ftp:' eller 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9054,7 +9138,7 @@ msgstr "Udskriver pĺ printeren '%s'"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9615,10 +9699,6 @@ msgstr ""
"Udfyld venligst oplysningerne om ftp-proxy\n"
"Lad det vćre blankt hvis du ikke řnsker en ftp-proxy"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url burde begynde med 'ftp:' eller 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9666,6 +9746,41 @@ msgstr "mkraid fejlede (mĺske mangler raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ikke nok partitioner til at benytte RAID level %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Sikkerhedsniveau:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sikkerhedsniveau"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Sikkerhedsadministrator:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Forvalgt)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Vćlg det řnskede sikkerhedniveau"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Vent venligst, forbereder installationen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start ALSA (Advanced Linux Sound Architecture) lydsystemet"
@@ -9968,7 +10083,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fildeling"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10061,7 +10176,7 @@ msgstr "Fĺ det meste fra Internettet"
#: ../../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"
msgstr ""
@@ -10116,7 +10231,7 @@ msgstr "Brugergrćnseflader"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 tilbyder dig 11 brugergrćnseflader hvor alt kan "
@@ -10144,7 +10259,7 @@ msgstr "Lav din maskine om til en pĺlidelig server"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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: "
@@ -10164,7 +10279,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Dette brandmursprodukt indholder netvćrksfunktioner som lader dig opfylde "
@@ -10181,7 +10296,7 @@ msgstr "Den officielle MandrakeSoft-butik"
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Vores komplette udvalg af Linux-lřsninger, sĺ vel som specialtilbud pĺ "
"produkter og andre godbidder, er tilgćngelige via nettet i vores e-butik:"
@@ -10240,8 +10355,8 @@ msgstr "Find lřsningerne pĺ dine problemer via MandrakeSofts online-support."
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your 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 ""
"Slut dig til MandrakeSofts supporthold og Linux-samfundet pĺ nettet for at "
"dele din viden og hjćlpe andre ved at blive en anerkendt Ekspert pĺ det "
@@ -10286,11 +10401,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installerer pakker..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Log ud og tryk herefter pĺ Ctrl-Alt-Bak"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Log ind i %s igen for at aktivere ćndringerne"
@@ -10331,16 +10446,6 @@ msgstr "Tilfřj/slet brugere"
msgid "Add/Del Clients"
msgstr "Tilfřj/slet klienter"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Hjćlp"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Start fra sdiskette"
@@ -10389,48 +10494,64 @@ msgstr "Tilfřj bruger -->"
msgid "<-- Del User"
msgstr "<-- Slet bruger"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Opstartsbilleder for netopstart"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Tilfřj klient -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Slet klient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Konfigurér dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Avanceret konfiguration"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Udskriv konfiguration"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Indsćt diskette:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Kunne ikke fĺ adgang til disketten!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Diskette kan fjernes nu"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Intet tilgćngeligt diskettedrev!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO-aftryk er %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Noget gik galt! - er mkisofs installeret?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Skal oprette /etc/dhcpd.conf fřrst!"
@@ -10576,12 +10697,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10594,41 +10715,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:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Det kan tage lidt tid at generere nřglerne."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "Fejl: Kan ikke starte %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Ingen forespřrgsel om adgangskode pĺ %s ved port %s"
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr "Dĺrlig adgangskode pĺ %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Adgang nćgtet ved overfřrsel af %s til %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr "Kan ikke finde %s pĺ %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr "%s svarer ikke"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10645,64 +10766,64 @@ msgstr ""
"\n"
"uden at blive spurgt om en adgangskode."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "WebDAV eksternt netsted allerede synkroniseret!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "WebDAV overfřrsel mislykkedes!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Ingen CDR/DVDR i drevet!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Ser ikke ud til at vćre et skrivbart medie!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Ikke sletbart medie!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Det kan tage lidt tid at slette mediet."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Problem med rettigheder ved adgang til CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr "Intet bĺnd i %s."
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Sikkerhedskopiér systemfiler..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Sikkerhedskopifiler for disk..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Sikkerhedskopiér brugerfiler..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Fremdrift for sikkerhedskopiering af disk..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Sikkerhedskopiér andre filer..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Ingen ćndringer til sikkerhedskopi!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10713,7 +10834,7 @@ msgstr ""
"Drakbackup aktiviteter via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10722,7 +10843,7 @@ msgstr ""
"filliste sendt via FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10732,7 +10853,7 @@ msgstr ""
"FTP forbindelsesproblem: Det var ikke muligt at sende dine backupfiler via "
"FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10742,7 +10863,7 @@ msgstr ""
"Drakbackup aktiviteter via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10752,24 +10873,24 @@ msgstr ""
"Drakbackup aktiviteter via bĺnd:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Fejl ved afsendelse af post. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Kan ikke oprette katalog!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Valg af filer"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Vćlg filerne eller katalogerne og klik pĺ 'Tilfřj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10777,26 +10898,26 @@ msgstr ""
"\n"
"Markér alle muligheder som du behřver.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Lav sikkerhedkopi af dine systemfiler. (/etc kataloget)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Medtag ikke kritiske filer (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10804,43 +10925,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:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Medtag ikke cache for netlćser"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Brug inkrementalbackup (overskriv ikke gamle sikkerhedskopier)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Fjern valgte"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Brugere"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Brug netvćrksforbindelse til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr "Netmetode:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Brug Expect for SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10848,7 +10969,7 @@ msgstr ""
"Opret/overfřr\n"
"sikkerhedskopieringsnřgler for SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10856,15 +10977,18 @@ msgstr ""
" Overfřr \n"
"Nu"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Nřglerne findes allerede"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Indtast vćrtsnavn eller IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10872,27 +10996,27 @@ msgstr ""
"Indtast kataloget (eller modulet) hvori\n"
" sikkerhedskopien skal lćgges pĺ denne maskine."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Indtast dit brugernavn"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Indtast din adgangskode"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Husk denne adgangskode"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Behřver vćrtsnavn, brugernavn og adgangskode!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Brug CD/DVDROM til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10902,35 +11026,35 @@ msgstr ""
"(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 udfylde formularen.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Vćlg cd/dvd-mediastřrrelse"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Markér om du bruger en multisessions-cd"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Markér om du bruger et CDRW-medie"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
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:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Slet nu "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Markér om du bruger en CDRW-enhed"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Markér om du bruger en DVDRAM-enhed"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10938,32 +11062,32 @@ msgstr ""
"Indtast din CD-brćnders enhedsnavn\n"
" fx: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Ingen cd-enhed defineret!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "brug bĺnd til sikkerhedskopieringen"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Indtast endhedsnavnet der skal bruges til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
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:2061
+#: ../../standalone/drakbackup_.c:2065
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:2067
+#: ../../standalone/drakbackup_.c:2071
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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10971,55 +11095,55 @@ msgstr ""
"Indtast den maksimale střrrelse\n"
" tilladt for Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Indtast kataloget hvortil der skal gemmes:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Brug kvoter for sikkerhedskopieringsfiler"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Netvćrk"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Diskdrev / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Bĺnd"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "timeligt"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "dagligt"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "ugentligt"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "mĺnedligt"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Brug dćmon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11027,7 +11151,7 @@ msgstr ""
"Vćlg tidsinterval mellem\n"
"hver sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11035,7 +11159,7 @@ msgstr ""
"Vćlg mediet for\n"
"sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -11044,71 +11168,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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Send epost-rapport efter hver sikkerhedskopiering til:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr "Slet tar-filer pĺ disken efter sikkerhedskopiering til andet medie."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Hvad"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Hvor"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Hvornĺr"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Flere muligheder"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup konfiguration"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Vćlg hvor du řnsker at sikkerhedskopiere"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "pĺ diskdrev"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "over netvćrk"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "pĺ cd-rom"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "pĺ bĺndenhed"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Vćlg hvad du vil sikkerhedkopiere"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Lav sikkerhedskopi af system"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Lav sikkerhedskopi af brugere"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Hĺndpluk bruger"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11116,7 +11240,7 @@ msgstr ""
"\n"
"Kilder for sikkerhedskopi: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11124,7 +11248,7 @@ msgstr ""
"\n"
"- Systemfiler:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11132,7 +11256,7 @@ msgstr ""
"\n"
"- Brugerfiler:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11140,7 +11264,7 @@ msgstr ""
"\n"
"- Andre filer:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11149,7 +11273,7 @@ msgstr ""
"\n"
"- Gem til diskdrev pĺ stien: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -11157,7 +11281,7 @@ msgstr ""
"\n"
"- Slet tar-filer pĺ disken efter sikkerhedskopiering.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -11165,20 +11289,20 @@ msgstr ""
"\n"
"- Brćnd pĺ CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " pĺ enhed: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr " (multi-session)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11187,12 +11311,12 @@ msgstr ""
"\n"
"- Gem pĺ bĺnd pĺ enhed: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11201,7 +11325,7 @@ msgstr ""
"\n"
"- Gem via %s pĺ vćrt: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11210,7 +11334,7 @@ msgstr ""
"\t\t brugernavn: %s\n"
"\t\t pĺ sti: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11218,19 +11342,19 @@ msgstr ""
"\n"
"- Muligheder:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tMedtag ikke systemfiler\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSikkerhedskopiering bruger tar og bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tSikkerhedskopiering bruger tar og gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11239,39 +11363,39 @@ msgstr ""
"\n"
"- Dćmon (%s) indeholder:\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Diskdrev.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-cdrom.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Netvćrk via FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Netvćrk via SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Netvćrk via rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Netvćrk via webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ingen konfiguration, klik pĺ Vejleder eller Avanceret.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11279,7 +11403,7 @@ msgstr ""
"Liste over data som skal genskabes:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11287,100 +11411,100 @@ msgstr ""
"Liste over data der er řdelagt:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Afmarkér eller fjern det gerne nćste gang."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Sikkerhedskopifiler er řdelagte"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Alle dine valgte data er blevet "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " genskabt uden fejl pĺ %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Genskab konfiguration "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "O.k. at genskabe de andre filer."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Lav sikkerhedskopi af systemfiler fřr:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Vćlg dato for genskabning"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Brug disk til sikkerhedskopiering"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Indtast kataloget der skal gemmes:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP forbindelse"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sikker forbindelse"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Genskab fra disk."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Indtast kataloget hvor sikkerhedskopier gemmes"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Vćlg et andet medie at genskabe fra"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Andet medie"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Genskab system"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Genskab brugere"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Genskab andet"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "vćlg sti at genskabe (i stedet for /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lav ny sikkerhedskopi fřr genskabning (kun for inkrementalbackupper)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Fjern brugerkataloger fřr genskabning."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
@@ -11388,7 +11512,7 @@ msgstr ""
"Genskab valgt\n"
"katalogpost"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -11396,7 +11520,7 @@ msgstr ""
"Genskab valgte\n"
"filer"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -11404,12 +11528,12 @@ msgstr ""
"Ćndr\n"
"Genskabelsessti"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Sikkerhedskopier fandtes ikke pĺ %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11418,16 +11542,16 @@ msgstr ""
"Indsćt cd'en med volumetiket %s\n"
" i cd-enheden monteret pĺ /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Genskab fra cd"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Ikke korrekt cd-etiket. Cd'en har etiket %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -11436,102 +11560,102 @@ msgstr ""
"Indsćt bĺndet med volumeetiket %s\n"
" i bĺndenheden %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Genskab fra bĺnd"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Ikke korrekt bĺndetiket. Bĺndet har etiket %s."
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Genskab via netvćrk"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Genskab via netvćrksprotokol: %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Vćrtsnavn"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Stil til vćrt eller modul"
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Adgangskode krćvet"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Brugernavn krćvet"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Vćrtsnavn krćvet"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Sti eller modul krćvet"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Filer genskabte..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Genskabelse mislykkedes..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Genskab alle sikkerhedskopier"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Tilpasset genskabelse"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "Cd'en er pĺ plads - fortsćt."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Bladr til nyt genskabelseslager."
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Genskab fra katalog"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
msgstr "Fremskridt for genskabelse"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Forrige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gem"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Opbyg sikkerhedskopien"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Genskab"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11541,13 +11665,13 @@ msgstr ""
" Din rapport blev ikke sendt.\n"
" Konfigurér venligst sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11555,19 +11679,19 @@ msgstr ""
"Fejl ved sending af fil via FTP.\n"
" Ret venligst din FTP-konfiguration."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Udvćlg de data du vil genskabe..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Vćlg medie for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Vćlg data for sikkerhedskopi..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11575,59 +11699,59 @@ msgstr ""
"ingen konfigurationsfil fundet \n"
"klik pĺ Vejleder eller Avanceret."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Under udvikling ... vent venligst:-)"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Lav sikkerhedskopi af systemfiler"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Lav sikkerhedskopi af brugerfiler"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Lav sikkerhedskopi af andre filer"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Total fremdrift"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "Filer sendes via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Sender filer..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Lav sikkerhedskopi nu ud fra konfigurationsfil"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Se konfiguration af sikkerhedskopiering."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Konfiguration med vejleder"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Avanceret konfiguration"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Lav sikkerhedskopiering nu"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11687,7 +11811,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11701,7 +11825,7 @@ msgstr ""
" sćtte myhostname eller mydomain i /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11777,7 +11901,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11826,20 +11950,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" opdateringer 2002 MandrakeSoft ved Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11871,7 +11995,7 @@ msgstr ""
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11945,7 +12069,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11963,7 +12087,7 @@ msgstr ""
"fřr den sendes til ftp-serveren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11985,7 +12109,7 @@ msgstr ""
"Det er vigtigt at vćre forsigtig og ikke ćndre sikkerhedskopieringens\n"
"datafiler i hĺnden.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12108,8 +12232,8 @@ msgid "Synchronization tool"
msgstr "Synkroniseringsvćrktřj"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Fritstĺende vćrktřjer"
@@ -12174,7 +12298,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12183,24 +12307,24 @@ msgstr ""
"\n"
"\n"
"For at indsende en fejlrapport klik da pĺ rapport-knappen.\n"
-"Dette vil ĺbne et vindue i en netlćser pĺ https://www.bugzilla.com\n"
+"Dette vil ĺbne et vindue i en netlćser pĺ https://drakbug.mandrakesoft.com\n"
" hvor du vil finde en formular der kan udfyldes. Informationen vist ovenfor "
"vil blive overfřrt til den server\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Rapport"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Ikke installeret"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "Opkobler til vejleder for Bugzilla"
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Ingen netlćser til stede! Installér venligst én"
@@ -12301,10 +12425,6 @@ msgstr "Vejleder..."
msgid "Apply"
msgstr "Anvend"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Vent venligst... Sćtter konfigurationen i anvendelse"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Tilsluttet"
@@ -12426,7 +12546,7 @@ msgstr "Modulnavn"
msgid "Size"
msgstr "Střrrelse"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12491,12 +12611,12 @@ msgstr "Uddata"
msgid "Build the disk"
msgstr "Opbyg disken"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Forsikr dig at der er et medie tilstede i enheden %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12505,12 +12625,12 @@ msgstr ""
"Der er ikke noget media, eller det er skrivebeskyttet, i enhed %s.\n"
"Indsćt venligst noget."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kan ikke fork(): %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12993,47 +13113,47 @@ msgstr ""
"Klik pĺ Konfigurér for at starte programmet til at dele din "
"internetforbindelse!"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "group"
msgstr "gruppe"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr "sti"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr "rettigheder"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr "bruger"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr "Op"
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr "slet"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr "redigér"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
msgid "Down"
msgstr "Ned"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
msgstr "Tilfřj en regel"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr "vćlg perm-fil at se eller redigere"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
@@ -13043,59 +13163,59 @@ msgstr ""
"grupper via msec.\n"
"Du kan ogsĺ redigere dine egne regler som vil tilsidesćtte standard-reglerne."
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
msgstr "Tilfřj en ny regel i slutningen"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr "Redigér aktuelle regel"
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr "Flyt valgte regel et niveau op"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr "Flyt valgte regel et niveau ned"
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
msgstr "Slet valgte regel"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "bladr"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
msgstr "Aktuelle bruger"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr "Rettigheder"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr "Sti"
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
msgid "Property"
msgstr "Egenskab"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr "sticky-bit"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr "Set-UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr "Set-GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
@@ -13103,35 +13223,35 @@ msgstr ""
"Brugt til katalog:\n"
" kun ejeren af kataloget eller filen i dette katalog kan slette den"
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr "Brug ejers id ved udfřrelsen"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr "Brug gruppe-id ved udfřrelsen"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr "ved kontrol vil ejer og gruppe ikke blive ćndret"
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
msgstr "Valg af sti"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
msgid "user :"
msgstr "bruger:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
msgid "group :"
msgstr "gruppe:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Intet lydkort genkendt!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13151,123 +13271,142 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "pakken ImageMagick krćves for at det skal fungere korrekt"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "opretter fřrste trin"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "endelig oplřsning"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "vćlg billedfil"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "Tema-navn"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "lav startskćrm trin 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "gĺ til konfiguration af Lilo-startskćrm"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "afslut"
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "gem temaer"
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr "bladr"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Konfigurér startskćrmsbilled"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
+#: ../../standalone/draksplash_.c:100
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr "antal tegn i tekstrudens x-led"
-#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr "antal tegn i tekstrudens y-led"
-#: ../../standalone/draksplash_.c:101
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "tekstbredde"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "hřjde pĺ tekstrude"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr "x-koordinatet for forlřbsindikatorens řvre venstre hjřrne"
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr "y-koordinatet for forlřbsindikatorens řvre venstre hjřrne"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"x-koordinatet for forlřbsindikatorens\n"
+"řvre venstre hjřrne"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"y-koordinatet for forlřbsindikatorens\n"
+"řvre venstre hjřrne"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "bredden pĺ forlřbslinjen"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "hřjden pĺ forlřbslinjen"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "farven pĺ forlřbslinjen"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr "gĺ tilbage"
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "smugkig"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "vćlg farve"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "gem temaer"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "vćlg farve"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Vis logo pĺ konsol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Skjul kernens beskeder som standard"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Dette tema har endnu ikke nogen startskćrm i %s!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "gemmer startskćrmstema..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Valg af farve for forlřbslinje"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "Du skal vćlge en biledfil fřrst!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Genererer smugkigning ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Kan ikke lave smugkig af opstartsskćrm"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13421,6 +13560,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"brug: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "brug: keyboarddrake [--expert] [tastatur]\n"
@@ -13449,11 +13596,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Kan ikke starte levende opgradering!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13724,16 +13871,14 @@ msgstr ""
"Din %s-skanner er blevet konfigureret.\n"
"Du kan nu skanne dokumenter med 'XSane' fra Multimedie/grafik iprogrammenuen."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, 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:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Nogen enheder i maskinelklassen '%s' blev tilfřjet:\n"
@@ -13810,7 +13955,7 @@ msgstr "Installér opdateringer"
msgid "Exit install"
msgstr "Afslut installation"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14056,8 +14201,46 @@ msgstr "Multimedie - CD-brćnding"
msgid "Scientific Workstation"
msgstr "Videnskabelig arbejdsstation"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Kan ikke lave smugkig af opstartsskćrm"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "For at indsende en fejlrapport klik da pĺ rapport-knappen.\n"
+#~ "Dette vil ĺbne et vindue i en netlćser pĺ https://www.bugzilla.com\n"
+#~ " hvor du vil finde en formular der kan udfyldes. Informationen vist "
+#~ "ovenfor vil blive overfřrt til den server\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "lav startskćrm trin 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "gĺ til konfiguration af Lilo-startskćrm"
+
+#~ msgid "Go back"
+#~ msgstr "gĺ tilbage"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Der findes intet kendt alternativ OSS/ALSA-drivprogram for lydkortet (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy skal vćre ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "afslut"
#~ msgid ""
#~ "Sorry, perl-Expect is not installed/enabled. To use\n"
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index 57e1acff7..59c7cb5cd 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: MandrakeInstaller\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -89,24 +89,24 @@ msgstr "Alle Karten getrennt konfigurieren"
msgid "Use Xinerama extension"
msgstr "Xinerama Erweiterung verwenden"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Nur Karte „%s“ (%s) konfigurieren"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s mit 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s mit EXPERIMENTELLER 3D-Hardwarebeschleunigung"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ msgstr ""
"XFree %s. BEMERKUNG: DIESE FUNKTION IST NOCH IM EXPERIMENTIERSTADIUM \n"
"UND KANN ZUM STEHENBLEIBEN IHRES RECHNERS FÜHREN."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Installationsbildschirmtreiber)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Benutzerdefiniert"
@@ -174,32 +174,32 @@ msgstr "AuflĂśsung"
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Verlassen"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -294,25 +294,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr " Abbruch "
@@ -388,11 +388,11 @@ msgstr "XFree86 Server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 Treiber: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X zur Startzeit"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -402,7 +402,7 @@ msgstr ""
"automatisch die grafische Oberfläche (= der X Server) aktiviert wird.\n"
"Wollen Sie, dass X nach jedem Neustart direkt zur VerfĂźgung steht?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgstr ""
"\n"
"Haben Sie einen solchen Ausgang und wollen Sie ihn verwenden?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Um welche Fernsehnorm handelt es sich?"
@@ -494,7 +494,7 @@ msgstr "Kompakt"
msgid "compact"
msgstr "Kompakt"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video Modus"
@@ -502,17 +502,17 @@ msgstr "Video Modus"
msgid "Delay before booting default image"
msgstr "Wartezeit vorm Starten des Standard Betriebssystems"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Passwort"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Passwort (erneut)"
@@ -548,14 +548,14 @@ msgstr ""
"Die Option „Gebrauch der Kommandozeilen-Parameter einschränken“ ist ohne \n"
"Angabe eines Passworts wirkungslos"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Bitte versuchen Sie es erneut"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Die PasswĂśrter stimmen nicht Ăźberein"
@@ -598,7 +598,7 @@ msgstr ""
"\n"
"Von welchem Verzeichnis wollen Sie starten?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -606,148 +606,148 @@ msgstr ""
"Hier sind die verschiedenen Einträge.\n"
"Sie kÜnnen weitere hinzufßgen oder existierende ändern."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "HinzufĂźgen"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fertig"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ändern"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Anderes Betriebssystem (SunOS ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Anderes Betriebssystem (MacOS ...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Anderes Betriebssystem (Windows ...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kern"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Verzeichnisbaumwurzel"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Übergeben"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Init-RamDisk"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Schreiben/Lesen"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabelle"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Unsicher"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Identifikator"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Standard"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Größe der Init-RamDisk"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Eintrag lĂśschen"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Leere Einträge sind nicht erlaubt"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Sie MĂźssen ein Kern-Abbild angeben"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Sie mĂźssen die Verzeichnisbaumwurzel festlegen"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Dieser Eintrag existiert bereits"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Schnittstelle(n) %s %s gefunden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "VerfĂźgen Sie Ăźber weitere?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "VerfĂźgen Sie Ăźber %s Schnittstellen?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nein"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Hardware Informationen anzeigen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installation des Treibers fĂźr die Karte %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(Modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Sie kĂśnnen nun die Optionen fĂźr Modul %s angeben.\n"
"Denken Sie daran, dass Adressen mit „0x“ beginnen müssen, etwa „0x300“"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Optionen haben die Form „name=wert name2=wert2“.\n"
"Beispielsweise: „io=0x300 irq=7“"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modul-Optionen:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welchen %s-Treiber soll ich versuchen?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -795,15 +795,15 @@ msgstr ""
"Treiber kann in seltenen Fällen zum „Hängenbleiben“ des Rechners führen, was "
"jedoch keine Hardwareschäden nach sich ziehen sollte)"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatische Erkennung"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Optionen angeben"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -812,63 +812,63 @@ msgstr ""
"Laden von Modul %s schlug Fehl.\n"
"Wollen Sie es erneut mit anderen Parametern versuchen?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "Zugriff auf X-Programme"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "Zugriff auf RPM-Werkzeuge"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "„su“ erlauben"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "Zugriff auf Verwaltungsdateien"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "Zugriff auf Netzwerk-Werkzeuge"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "Zugriff auf Compiler"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s wurde bereits hinzugefĂźgt)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Dieses Passwort ist zu einfach"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Bitte geben Sie ein Benutzerkennzeichen an"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Dieses Benutzerkennzeichen ist zu lang"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Dieses Benutzerkennzeichen existiert bereits"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Benutzer hinzufĂźgen"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -877,32 +877,32 @@ msgstr ""
"Benutzerkennzeichen einrichten\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Benutzer akzeptieren"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Benutzername"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Benutzerkennzeichen"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Symbol"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -911,19 +911,19 @@ msgstr ""
"ein Benutzer angemeldet wird.\n"
"Wollen Sie davon Gebrauch machen?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Wählen Sie den Standard-Nutzer:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Wählen Sie den Window-Manager, den Sie verwenden wollen:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Bitte wählen Sie die zu verwendende Sprache."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -932,37 +932,37 @@ msgstr ""
"Sie kÜnnen andere Sprachen auswählen, die nach der Installation zur "
"VerfĂźgung stehen."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alle"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Allen Benutzern erlauben"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Kein Teilen"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Das zwingend benötigte Paket „%s“ fehlt."
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -977,11 +977,11 @@ msgstr ""
"Mit „Benutzerdefiniert“ können Sie eine Einstellung pro Kennzeichen "
"vornehmen.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Userdrake starten"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -990,31 +990,31 @@ msgstr ""
"Sie kĂśnnen UserDrake verwenden, um Benutzerkennzeichen in diese Gruppe "
"aufzunehmen."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Cracker-Spielplatz"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Schwach"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoch"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "HĂśher"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1025,7 +1025,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1033,7 +1033,7 @@ msgstr ""
"Passwortabfragen sind nun eingeschaltet, aber die Verwendung als \n"
"Netzwerkrechner kann hier nicht empfohlen werden."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1041,7 +1041,7 @@ msgstr ""
"Das ist die Standard-Sicherheitsebene fĂźr Rechner, mit Internetzugang \n"
"als Klient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1049,7 +1049,7 @@ msgstr ""
"Es gibt bereits mehr Restriktionen und jede Nacht werden automatische "
"Sicherheitstests durchgefĂźhrt."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1066,7 +1066,7 @@ msgstr ""
"Klient ins Internet gehen, besser eine niedrigere Sicherhetsebene \n"
"verwenden sollte."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1074,32 +1074,32 @@ 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:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec Grundeinstellungen"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Wählen Sie Ihre Sicherheitsebene"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sicherheitsebene"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "„libsafe“ bei Servern verwenden"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1115,7 +1115,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1139,60 +1139,60 @@ 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:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Arbeitsoberfläche"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start-MenĂź"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Es steht noch keine Hilfe zur VerfĂźgung.\n"
@@ -1244,79 +1244,79 @@ msgstr "LILO/GRUB Modus"
msgid "Yaboot mode"
msgstr "Yaboot Modus"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Themen installieren"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Bildschirm-Thema fĂźr die Konsole"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Ein neues Thema erzeugen"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fehler"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "Ich kann keine Sicherheitskopie der LILO-Nachricht anlegen."
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiere „%s“ nach „%s“"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "Ich kann die LILO-Nachricht nicht äern."
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Ich kann die LILO Nachricht nicht finden."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Schreiben von %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr "Ich kann „/etc/sysconfig/bootsplash“ nicht anlegen."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, 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:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Erstellen der RamDisk: „mkinitrd -f /boot/initrd-%s.img %s“."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1325,24 +1325,24 @@ msgstr ""
"Benutzerkennzeichen „lilo“ in einer Konsole aus, um die Themen-Installation "
"zu beenden."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "LILO ausfĂźhren"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Anmerkung"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Installation des LILO- und Start-Themas erfolgreich."
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Die Installation des Themas schlug fehl!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1351,21 +1351,21 @@ msgstr ""
"Sie verwenden momentan „%s“ als Betriebssystemstarter.\n"
"Wählen Sie „Konfigurieren“, wenn Sie den Assistenten starten wollen."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurieren"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Startschirmauswahl"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Themen"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1382,44 +1382,44 @@ msgstr ""
"unterschiedliche\n"
"Varianten wählen."
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "LILO-MenĂź"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Startschirm"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "System-Modus"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "X-Window nach dem Hochfahren automatisch starten "
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nein ich will kein Autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja ich will Autologin mit diesem Kennzeichen und dieser Oberfläche"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr " Ok "
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ich kann „/etc/inittab“ nicht zum lesen öffnen: %s"
@@ -1517,50 +1517,58 @@ msgstr "Östereich"
msgid "United States"
msgstr "Vereinigte Staaten von Amerika"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Neu"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Einhängen"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Bitte geben Sie die WebDAV-Server URL an"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Die URL muss mit „http://“ oder „https://“ beginnen!"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Optionen: %s"
@@ -1647,7 +1655,7 @@ msgstr "Leer"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Andere"
@@ -1791,7 +1799,7 @@ msgstr ""
"Die gesicherte Partitionstabelle hat nicht dieselbe Größe\n"
"Soll trotzdem fortgefahren werden?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Warnung"
@@ -2360,7 +2368,7 @@ msgid ""
msgstr ""
"Bitte geben Sie Benutzerkennzeichen, Passwort und Domäne des Rechners an."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Benutzerkennzeichen"
@@ -2372,25 +2380,25 @@ msgstr "Domäne"
msgid "Search servers"
msgstr "Server suchen"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatieren von %s schlug Fehl"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, 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:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "Fehler beim Aushängen von %s: %s"
@@ -2484,47 +2492,110 @@ msgstr "Nichts zu tun."
msgid "Error opening %s for writing: %s"
msgstr "Fehler beim Öffnen von %s zum Schreiben: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
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)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Es existiert kein alternativer OSS/ALSA Treiber fĂźr Ihre Soundkarte (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Sound Konfiguration"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Hier kĂśnnen Sie einen alternativen Treiber (entweder OSS odr ALSA) fĂźr Ihre "
"Soundkarte (%s) auswählen"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Treiber:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Hilfe"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Einen Moment ... ich richte die Konfiguration ein"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Bitte warten"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Kein bekannter Treiber"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, 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
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Unbekannter Treiber"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, fuzzy, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2655,7 +2726,8 @@ msgid "/_Quit"
msgstr "/_Beenden"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hilfe"
@@ -2676,14 +2748,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Fehler Melden"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Über ..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Über HardDrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2691,56 +2767,53 @@ msgstr ""
"HardDrake - das Mandrake Linux Hardware-Konfigurationswerkzeug.\n"
"Version:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "HardDrake2 Version "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Gefundene Hardware"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informationen"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Modul konfigurieren"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Konfigurationswerkzeug starten"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Erkennung läuft"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Bitte warten"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Sie kĂśnnen alle Modulparamerter hier einstellen."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "„%s“ ausführen ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "Primär"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "Sekundär"
@@ -4779,7 +4852,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Sie mĂźssen auch %s formatieren."
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4804,7 +4877,7 @@ msgstr ""
"\n"
"Wollen Sie diese Server wirklich installieren?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4818,22 +4891,22 @@ msgstr ""
"\n"
"Wollen Sie diese Pakete wirklich entfernen?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
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:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Diese Diskette ist nich FAT formatiert"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4841,12 +4914,12 @@ msgstr ""
"Um diese gespeicherte Paketauswahl zu verwenden, starten Sie die \n"
"Installation bitte mit: „boot defcfg=floppy“"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Fehler beim Lesen der Datei %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -5097,7 +5170,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Willkommen auf %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Kein Disketten-Laufwerk verfĂźgbar"
@@ -5128,11 +5201,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Auswahl der Paketgruppen"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuelle Paketauswahl"
@@ -5214,7 +5287,7 @@ msgstr "Anzeige automatisch markierter Pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installation"
@@ -5234,7 +5307,7 @@ msgstr "Minimal-Installation"
msgid "Choose the packages you want to install"
msgstr "Zu installierende Pakete auswählen"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installation wird durchgefĂźhrt"
@@ -5261,17 +5334,17 @@ msgid "Installing package %s"
msgstr "Installation des Pakets %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akzeptieren"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "ZurĂźckweisen"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5287,16 +5360,16 @@ msgstr ""
"Falls Sie sie nicht vorliegen haben, drĂźcken Sie Abbruch."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Wollen Sie trotzdem fortfahren?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Bei der Anforderung folgender Pakete trat ein Fehler auf:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Bei der Installation der Pakete trat ein Fehler auf:"
@@ -5423,7 +5496,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5719,7 +5792,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Sind Sie sicher, dass Sie die Lizenz zurĂźckweisen wollen?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatur"
@@ -5934,11 +6007,11 @@ msgstr ""
msgid "Selected size is larger than available space"
msgstr "Gewünschte Größe übersteigt den verfügbaren Platz"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Installationsklasse"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5946,19 +6019,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:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Mit X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Mit minimaler Dokumentation (Empfohlen)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Extrem minimale Installation (ohne „urpmi“)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5969,16 +6042,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM „%s“"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Installation vorbereiten"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5987,23 +6060,23 @@ msgstr ""
"Installiere Paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Einstellungen fĂźr nach der Installation"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -6079,7 +6152,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -6098,163 +6171,163 @@ msgstr ""
"\n"
"MĂśchten Sie die Aktualisierungen vornehmen?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
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:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wählen Sie Ihre Zeitzone"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardware Uhr liefert GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische Zeit-Synchronisation (durch NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "CUPS-Server im Netzwerkbetrieb"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Kein Drucker"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "VerfĂźgen Sie Ăźber eine ISA soundkarte?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zusammenfassung"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Maus"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zeitzone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Drucker"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN Karte"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Soundkarte"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-Karte"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domäne"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokale Dateien"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-Passwort setzen"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Kein Passwort"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS Authentifizierung"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -6286,19 +6359,19 @@ msgstr ""
"Mit „wbinfo -t“ können Sie anschließend testetn, ob die Anmeldung "
"erfolgreich war."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Windows Domänenauthentifizierung"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Name des Domänenadministrators"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Paswort des Administrators"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6329,19 +6402,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "erste Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "zweite Disketten-Laufwerk"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Überspringen"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6370,7 +6443,7 @@ msgstr ""
"MĂśchten Sie jetzt eine Startdiskette fĂźr Ihr System erstellen?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6384,30 +6457,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ich kann kein Laufwerk finden"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr ""
"Legen Sie eine Diskette, die keine relevanten Daten mehr enthält in „%s“ ein."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Startdiskette wird erstellt..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Betriebssystemstarter vorbereiten"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6421,11 +6494,11 @@ msgstr ""
"„BootX“ verwenden müssen um LINUX auf Ihrem Rechner\n"
"zu starten."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Möchten Sie „aboot“ verwenden?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6434,16 +6507,16 @@ msgstr ""
"mit Gewalt versuchen, auch wenn dies die ZerstĂśrung der ersten \n"
"Partition verursachen kann?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Betriebssystemstarter installieren"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6461,17 +6534,17 @@ msgstr ""
"Tippen Sie dann: shut-down\n"
"Beim darauffolgenden Neustart sollte Sie die Eingabeaufforderung sehen."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6481,7 +6554,7 @@ msgstr ""
"\n"
"Wollen Sie DrakX wirklich beenden?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6511,15 +6584,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Erstellen einer Auto-Installationsdiskette"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6536,15 +6609,15 @@ msgstr ""
"Vermutlich werden Sie es vorziehen, erneut eine normale\n"
"Installation durchzufĂźhren.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatisiert"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Erneut abspielen"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Paketauswahl speichern"
@@ -6580,14 +6653,14 @@ msgstr "Fortgeschritten"
msgid "Basic"
msgstr "Einfach"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Weiter"
@@ -7032,7 +7105,7 @@ msgstr "Rechte „Windows“-Taste"
msgid "Circular mounts %s\n"
msgstr "Schleife bei den Einhängpunkten %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Entfernen Sie erst die Logischen Medien\n"
@@ -7169,15 +7242,15 @@ msgstr "keine"
msgid "No mouse"
msgstr "Keine Maus"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Bitte testen Sie Ihre Maus"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Um Ihre Maus zu aktivieren:"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BEWEGEN SIE IHR MAUS-RAD!"
@@ -7213,11 +7286,11 @@ msgstr "Baum verkleinern"
msgid "Toggle between flat and group sorted"
msgstr "Umschalten zwischen unsortiert und gruppiert"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Internetverbindung"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7227,23 +7300,19 @@ msgstr ""
"Einige Verbindungen benutzen jedoch pptp, andere dhcp.\n"
"Wenn Sie nicht wissen was Sie brauchen, wählen Sie „pppoe verwenden“"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "DHCP verwenden"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "PPPOE verwenden"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "PPTP verwenden"
@@ -7347,7 +7416,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:362
msgid "Configuring network"
msgstr "Netzwerk konfigurieren"
@@ -7363,15 +7432,15 @@ 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:367
msgid "Host name"
msgstr "Rechnername"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netzwerk Konfigurationsassistent"
@@ -7420,8 +7489,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Alte Konfiguration (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Konfiguration"
@@ -7457,23 +7526,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Welches Protokoll wollen Sie verwenden?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Welchen Kartentyp verwenden Sie?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Keine Ahnung"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA/PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7488,19 +7562,19 @@ msgstr ""
"Falls Sie eine PCMCIA-Karte besitzen, mĂźssen Sie IRQ und E/A-Bereich Ihrer "
"Karte kennen.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abbruch"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Fortfahren"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Bitte wählen Sie Ihre ISDN Karte"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7509,7 +7583,7 @@ msgstr ""
"kenne sie jedoch nicht. Bitte helfen Sie mir,\n"
"indem Sie im nächsten Menß eine auswählen."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Ich konnte keine PCI ISDN-Karte finden.\n"
@@ -7563,7 +7637,7 @@ msgstr "Erster DNS Server (optional)"
msgid "Second DNS Server (optional)"
msgstr "Zweiter DNS Server (optional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7571,7 +7645,7 @@ msgstr ""
"\n"
"Sie kĂśnnen die Verbindung trennen oder sie neu konfigurieren."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7579,11 +7653,11 @@ msgstr ""
"\n"
"Sie kĂśnnen Ihre Internetverbindung neu konfigurieren"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Sie sind momentan mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7592,32 +7666,32 @@ msgstr ""
"Sie kĂśnnen eine Internetverbindung aufbauen oder die Verbindung neu "
"konfigurieren"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Sie sind momentan nicht mit dem Internet verbunden."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Verbindung trennen"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Die Verbindung konfigurieren"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetverbindung und -einrichtung"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Wir werden nun die Verbindung „%s“ konfigurieren."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7636,12 +7710,12 @@ msgstr ""
"\n"
"Wählen Sie „OK“, um fortzufahren."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netzwerk konfigurieren"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7653,7 +7727,7 @@ msgstr ""
"„Abbruch“, um Ihre Internet- und Netzwerk-Konfiguration neu zu\n"
"konfigurieren.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7665,72 +7739,72 @@ msgstr ""
"Ich versuche nun Ihre Internet-/Netzwerk-Verbindung zu konfigurieren.\n"
"Falls Sie keine Autodetektion wĂźnschen, entfernen Sie bitte die Markierung.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Wählen Sie das Profil, dass eingestellt werden soll"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Autoerkennung benutzen"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Geräteerkennung..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale Modem Verbindung"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "an Prot %s gefunden"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN Verbindung"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s gefunden"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL Verbindung"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "an Schnittstelle %s gefunden"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabel Verbindung"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kabel Verbindung gefunden"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN Verbindung"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "Netzwerkkarte(n) gefunden"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Wählen Sie die Verbindung, die Sie konfigurieren wollen"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7741,23 +7815,23 @@ msgstr ""
"ich versuchen soll.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet-Verbindung"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "MĂśchten Sie die Verbindung bei Betriebssystemstart herstellen?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netzwerk Konfiguration"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Das Netzwerk muss neu gestartet werden"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7768,7 +7842,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7778,7 +7852,7 @@ msgstr ""
"\n"
"Die Konfiguration wird nun in Ihr System integriert.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7787,7 +7861,7 @@ msgstr ""
"neu zu starten, um Probleme, die durch die Änderung des\n"
"Rechnernamens hervorgerufen werden, zu vermeiden."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7798,7 +7872,7 @@ msgstr ""
"Kontrollzentrum. Falls die Verbindung nicht funktioniert, sollten Sie erneut "
"die Konfguration starten."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7810,7 +7884,7 @@ msgstr ""
"Drücken Sie einfach „OK“, um die Einstellungen zu behalten.\n"
"Fall Sie Felder verändern, wird die Konfiguration ßberschrieben."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7820,42 +7894,42 @@ msgstr ""
"Jeder Eintrag muss als dezimale IP-Adresse in Punktschreibweise \n"
"angegeben werden (etwa „192.168.1.42“)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurieren der Netzwerkkarte %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (Treiber %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP Adresse"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netzmaske"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatische IP-Adressen Zuweisung"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Beim BS-Start aktivieren"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7867,42 +7941,52 @@ 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:368
msgid "DNS server"
msgstr "DNS-Server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (etwa %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway Gerät"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Proxies einstellen"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP Proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP Proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
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:400
msgid "Proxy should be http://..."
msgstr "Proxy muss „http://...“ sein"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy muss „ftp://...“ sein"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9464,7 +9548,7 @@ msgstr "Drucken auf Drucker „%s“"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -10027,10 +10111,6 @@ msgstr ""
"Falls sie keinen FTP Proxy wolen, lassen Sie einfach\n"
"alle Felder leer."
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Die URL muss mit „http://“ oder „ftp://“ beginnen"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -10079,6 +10159,43 @@ msgstr "mkraid schlug Fehl (MĂśglicherweise fehlen die RAID-Tools)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nicht genĂźgend Partitionen fĂźr RAID Level %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sicherheitsebene"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sicherheitsebene"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Sicherheitsadministrator (Kennzeichen oder E-Mail)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Standard)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Wählen Sie Ihre Sicherheitsebene"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Bitte warten, bereite Installation vor"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Startet das ALSA (Advanced Linux Sound Architecture) Sound System"
@@ -10420,7 +10537,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Gemeinsamer Dateizugriff"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "System"
@@ -10516,7 +10633,7 @@ msgstr "Nutzen Sie das Internet nach Ihren WĂźnschen"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
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"
msgstr ""
@@ -10575,7 +10692,7 @@ msgstr "Arbeitsumgebungen"
#: ../../share/advertising/07-desktop.pl_.c:10
#, fuzzy
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 bietet 11 Arbeitsumgebungen, die Sie nach Ihren WĂźnschen "
@@ -10605,7 +10722,7 @@ msgstr "Verwandeln Sie Ihren Rechner in einen zuverlässigen Server."
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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 "
@@ -10626,7 +10743,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Dieses Firewall-Produkt enthält die Netzwerkkomponenten, um all Ihren "
@@ -10643,7 +10760,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -10691,8 +10808,8 @@ 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 your 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
@@ -10728,11 +10845,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Pakete Installieren ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -10778,16 +10895,6 @@ msgstr "Benutzer hinzufĂźgen"
msgid "Add/Del Clients"
msgstr "DHCP-Klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Hilfe"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Bootdiskette"
@@ -10838,49 +10945,64 @@ msgstr "Benutzer hinzufĂźgen -->"
msgid "<-- Del User"
msgstr "<-- Benutzer lĂśschen"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Klient hinzufĂźgen -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Klient lĂśschen"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "DHCP Konfigurieren ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Expertenkonfiguration"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Konfiguration speichern"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Bitte legen Sie eine Diskette ein:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Kein Diskettenzugriff mĂśglich!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Sie kĂśnnen die Diskette nun entfernen"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Kein Disketten-Laufwerk verfĂźgbar"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Es trat ein Fehler auf! Ist „mkisofs“ installiert?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "„/etc/dhcpd.conf“ muss erst angelegt werden!"
@@ -11024,13 +11146,13 @@ msgstr ""
" DrakBackup Report Details\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Vortschritt"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -11039,41 +11161,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Kein Passwort"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -11084,65 +11206,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Systemdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Backup-Dateien auf der Festplatte ..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Benutzerdateien sichern ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Festplattenbackup in Bearbeitung ..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Andere Dateien sichern ..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -11150,7 +11272,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -11159,7 +11281,7 @@ msgstr ""
"Dateiliste per FTP senden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -11170,41 +11292,41 @@ msgstr ""
"(!) FTP Verbindungsprobleme: Es war nicht mĂśglich, Ihre Dateien per FTP zu "
"Ăźbertragen.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Fehler beim Verschicken der Mail. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Dateiauswahl"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
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:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -11212,27 +11334,27 @@ msgstr ""
"\n"
"Bitte wählen Sie alle benÜtigten Parameter.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sichern Ihrer Systemdateien (Verzeicnis „/etc“)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Inkrementelles Backup (alte Backups nicht Ăźberschreiben)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Keine kritischen Dateien (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -11240,66 +11362,68 @@ msgstr ""
"Mit dieser Option sind Sie in der Lage, jede Version Ihres \n"
"„/etc“ Verzeichnisses wiederherzustellen."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Die Browser-Caches nicht archivieren."
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Inkrementelle Archivierung (alte Archive nicht ersetzen)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Benutzer"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "FTP-Verbindung zum erstellen der Sicherungskopien verwenden"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Übertragen"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Rechnernamen oder IP eingeben."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -11308,69 +11432,69 @@ msgstr ""
"Bitte geben Sie das Verzeichnis an,\n"
" in dem die Archive erstellt werden sollen."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Bitte geben Sie Ihr Benutzerkennzeichen ein"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Bitte geben Sie Ihr Passwort ein"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Passwort behalten"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
#, fuzzy
msgid "Need hostname, username and password!"
msgstr "Ich mich unter „%s“ micht anmelden! Stimmt das Passwort?"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Sicherungskopie auf CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Bitte wählen Sie Ihren CD-Paltz"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Übertragen"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Kontrollieren Sie, ob Sie ein CDRW-Medium verwenden."
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11378,36 +11502,36 @@ msgstr ""
"Bitte geben Sie den Gerätenamen \n"
"Ihres Brenners an, etwa „0,1,0“."
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Datei auswählen"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Auf Bandlaufwerk sichern"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Bitte geben Sie den Gerätenamen fß Archivierung an."
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11415,57 +11539,57 @@ msgstr ""
"Bitte geben Sie die Maximalgröße \n"
"fĂźr DrakBackup an."
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Quota fĂźr Backup-Datei verwenden."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Netzwerk"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Festplatte/NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Typ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "stĂźndlich"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "täglich"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "wĂśchendlich"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "monatlich"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Dämon verwenden"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11473,7 +11597,7 @@ msgstr ""
"Bitte wählen Sie das Zeitintervall \n"
"zwischen zwei Sicherungen."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11481,7 +11605,7 @@ msgstr ""
"Bitte wählen Sie ein\n"
"Sicherungsmedium."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11489,71 +11613,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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "E-Mail Bericht nach jedem Sicherungsvorgang an: "
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Was"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Wo"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Wann"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Mehr Parameter"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "DrakBackup Konfiguration"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Bitte wählen Sie wohin Sie die Sicherungskopien machen wollen."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "auf Festplatte"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "Ăźber Netzwerk"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Bitte wählen Sie, was Sie sichern wollen"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "System sichern"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Benutzerkennzeichen sichern"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Benutzerkennzeichen auswählen"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11561,7 +11685,7 @@ msgstr ""
"\n"
"Sicherungsquellen: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11569,7 +11693,7 @@ msgstr ""
"\n"
"- Systemdateien:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11577,7 +11701,7 @@ msgstr ""
"\n"
"- Benutzerdateien:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11585,7 +11709,7 @@ msgstr ""
"\n"
"- Sonstige Dateien:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11594,32 +11718,32 @@ msgstr ""
"\n"
"- Auf Festplatte sichern unter: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Mausschnittstelle: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11628,12 +11752,12 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11642,7 +11766,7 @@ msgstr ""
"\n"
"- Via FTP sichern auf: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11651,7 +11775,7 @@ msgstr ""
"\t\t Benutzer: %s\n"
"\t\t Pfad: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11659,19 +11783,19 @@ msgstr ""
"\n"
"- Optionen:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tKeine Systemdateien\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tSicherungen verwenden „tar“ und „bzip2“\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tSicherungen verwenden „tar“ und „gzip“\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11680,42 +11804,42 @@ msgstr ""
"\n"
"- Dämon (%s) enthält:\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t- Festplatte.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t- CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t- Netzwerk per SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t- Netzwerk per FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
"Keine Konfiguration. Wählen Sie dein Assistenten oder Fortgeschritten.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11723,7 +11847,7 @@ msgstr ""
"Liste der wiederherzustellenden Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11731,260 +11855,260 @@ msgstr ""
"Liste der beschädigten Daten:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
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:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Die Sicherungen sind beschädigt."
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Alle Ihre gewälhten Daten wurden "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " erfolgreich auf %s wiederhergestellt "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Konfiguration wiederherstellen "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK, die Ăźbrigen Dateien zu aktualisieren."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Systemdateien sichern vor:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Bitte wählen Sie, welches Datum wiederhergestellt werden soll."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Auf Festpaltte sichern"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Bitte geben Sie das Archivverzeichnis an:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP Verbindung"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sichere Verbindung"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Bitte geben Sie das Verzeichnis an, in dem die Sicherungskopien liegen"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Wählen Sie ein anderes Medium von dem Sie wiederherstellen wollen."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Anderes Medium"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "System wiederherstellen"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Auswahl des Pfades der wiederhergestellt werden soll (statt „/“"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Erstelle Sicherung vor dem Wiederherstellen (nur fĂźr inkrementelle "
"Sicherungen)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Benutzerkennzeichen vor dem Wiederherstellen entfernen."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Markierte entfernen"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Anlegen einer Sicherheitskopie von „%s“ unter „%s.old“."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Von Festplatte wiederherstellen"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Rechnername"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Passwort"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Benutzerkennzeichen"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Rechnername: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Sonstiges wiederherstellen"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Alle Sicherungen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "BenutzergefĂźhrte Wiederherstellung"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Partitionstabelle wiederherstellen"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Benutzerkennzeichen wiederherstellen"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "<- ZurĂźck"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Speichern"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Sicherung erstellen"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Wiederherstellen"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11995,14 +12119,14 @@ msgstr ""
" Ihre Bericht-Mail konnte nicht versandt werden.\n"
" Bitte richten Sie Sendmail korrekt ein."
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -12011,19 +12135,19 @@ msgstr ""
"Fehler bei der Üertragung via FTP.\n"
"Bitte korrigieren Sie Ihre FTP-Konfiguration."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Bitte wählen Sie die wiederherzustellenden Daten..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Bitte wählen Sie ein Sicherungsmedium..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Bitte wählen Sie die zu sichernden Daten..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -12031,59 +12155,59 @@ msgstr ""
"Keine Konfigurationsdatei gefunde.\n"
"Bitte wählen Sie den „Assistenten“ oder „Erweitert“."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "In Entwicklung, haben Sie noch etwas Geduld ..."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Systemdateien sichern"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Benutzerdateien sichern"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Andere Dateien sichern"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Fortschritt"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "DatenĂźagung via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Dateien Ăźbertragen ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Jetzt Sicherung anhand der Konfigurationsdatei erstellen."
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Sicherungskonfiguration anzeiegen"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "AssistentengestĂźtzte Konfiguration"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Expertenkonfiguration"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Jetzt sichern"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "DrakBackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -12146,7 +12270,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -12161,7 +12285,7 @@ msgstr ""
" in „/etc/postfix/main.cf“ korrigieren.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -12244,7 +12368,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -12315,18 +12439,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -12356,7 +12480,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:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12396,7 +12520,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12414,7 +12538,7 @@ msgstr ""
"Rechner erstellt werden.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12437,7 +12561,7 @@ msgstr ""
"Seien Sie daher vorsichtig und ändern Sie die Sicherungskopien \n"
"nicht manuell.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12519,8 +12643,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolen-Werkzeuge"
@@ -12597,28 +12721,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Nach dem Entfernen"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Die Bildschim-Schnappschüsse liegen nach der Installation unter „%s“"
@@ -12718,10 +12842,6 @@ msgstr "Assistent..."
msgid "Apply"
msgstr "Anwenden"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Einen Moment ... ich richte die Konfiguration ein"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Verbunden"
@@ -12845,7 +12965,7 @@ msgstr " Modulname "
msgid "Size"
msgstr " Größe "
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "DrakFloppy"
@@ -12910,12 +13030,12 @@ msgstr "Ausgabe"
msgid "Build the disk"
msgstr " Diskette erstellen "
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Stellen Sie sicher, dass ein Medium in Laufwerk %s liegt."
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12924,12 +13044,12 @@ msgstr ""
"In Laufwerk %s liegt kein Medum.\n"
"Bitte legen Sie eins ein."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ich kann nicht forken: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13421,158 +13541,158 @@ msgstr ""
"\n"
"Wählen Sie „Konfigurieren“ wenn Sie den Assistenten starten wollen."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Arbeitsgruppe"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Partition %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Benutzer"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "LĂśschen"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fertig"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Modul hinzufĂźgen"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Drucker hinzufĂźgen"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Markierung lĂśschen"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Markierte entfernen"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Benutzer akzeptieren"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Version: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Autoerkennung benutzen"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Autoerkennung benutzen"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Startschirmauswahl"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Benutzer"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Arbeitsgruppe"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nicht Verbunden"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13584,136 +13704,146 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Boot-Disketten Erstellung"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "AuflĂśsung"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Wählen Sie eine Datei"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Freigabename"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "Gerät"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "Gerät"
+msgid "Save theme"
+msgstr "Themen installieren"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Wählen Sie Ihren Monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
#, fuzzy
msgid "Display logo on Console"
msgstr "Bildschirm-Thema fĂźr die Konsole"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Farbauswahl fĂźr den Fortschrittsbalken"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, 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
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Vorschau erzeugen ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Ich kan keine Start-Vorschau erzeugen"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13848,6 +13978,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Verwendung: keyboarddrake [--expert] [keyboard]\n"
@@ -13877,13 +14014,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ich bin nicht in der Lage, eine Live Aktualisierung durchzufĂźhren!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Die Einstellungen wurden vorgenommen, werden jedoch erst nach einer "
"Neuanmeldung wirksam"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "LogDrake"
@@ -14151,16 +14288,14 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "Einige Geräte in der Klasse %s wurden entfernt:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Einige Geräte in der Klasse %s wurden hinzugefßgt:\n"
@@ -14237,7 +14372,7 @@ msgstr "Systemaktualisierungen"
msgid "Exit install"
msgstr "Installation beenden"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14488,8 +14623,28 @@ msgstr "Multimedia / CD-Brenner"
msgid "Scientific Workstation"
msgstr "Wissenschaftlicher Arbeitsplatzrechner"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Ich kan keine Start-Vorschau erzeugen"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Einstellungen fĂźr nach der Installation"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ 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)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy muss „ftp://...“ sein"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Verlassen"
#~ msgid "%s"
#~ msgstr "%s"
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 37c9a428e..856746718 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.43\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 00:12+0300\n"
"Last-Translator: Íßęďň Íýęôáńçň (Nick Niktaris) <niktaris@yahoo.com>\n"
"Language-Team: Greek <nls@hellug.gr>\n"
@@ -90,24 +90,24 @@ msgstr "Ńýčěéóç üëůí ôůí ęĺöáëţí áíĺîÜńôçôá"
msgid "Use Xinerama extension"
msgstr "×ńŢóç ĺđÝęôáóçň Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ńýčěéóç ěüíď ôçň ęÜńôáň \"%s\" %s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ěĺ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -118,19 +118,19 @@ msgstr ""
"Ç ęÜńôá óáň őđďóôçńßćĺôáé áđü ôá XFree %s ôá ďđďßá ěđďńĺß íá äßíďőí ęáëýôĺńç "
"őđďóôŢńéîç ăéá äéóäéÜóôáôá ăńáöéęÜ."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Ç ęÜńôá ăńáöéęţí óáň őđďóôçńßćĺé ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí óôá XFree "
"%s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ěĺ ĐĹÉŃÁĚÁÔÉĘÇ ĺđéôÜ÷őíóç ôńéóäéÜóôáôůí ăńáöéęţí"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -143,7 +143,7 @@ msgstr ""
"Ç ęÜńôá óáň őđďóôçńßćĺôáé áđü ôá XFree %s ôá ďđďßá ěđďńĺß íá äßíďőí ęáëýôĺńç "
"őđďóôŢńéîç ăéá äéóäéÜóôáôá ăńáöéęÜ."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -153,12 +153,12 @@ msgstr ""
"%s,\n"
"ĐŃĎÓĎ×Ç: ĐĹÉŃÁĚÁÔÉĘÇ ŐĐĎÓÔÇŃÉÎÇ - ĚĐĎŃĹÉ ÍÁ ĐÁĂŮÓĹÉ ÔĎÍ ŐĐĎËĎĂÉÓÔÇ ÓÁÓ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ďäçăüň đńďâďëŢň ĺăęáôÜóôáóçň)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "ĐńďóáńěďóěÝíď"
@@ -178,32 +178,32 @@ msgstr "ÁíÜëőóç"
msgid "Test"
msgstr "ÄďęéěŢ"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "ĹíôÜîĺé"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "¸îďäďň"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -300,25 +300,25 @@ msgstr "ĹđéëÝîôĺ áíÜëőóç ęáé âÜčďň ÷ńţěáôďň"
msgid "Graphics card: %s"
msgstr "ĘÜńôá ăńáöéęţí: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "śęőńď"
@@ -396,11 +396,11 @@ msgstr "ĹîőđçńĺôçôŢň XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Ďäçăüň XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Ăńáöéęü đĺńéâÜëëďí óôçí ĺęęßíçóç"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"ăńáöéęü đĺńéâÜëëďí (XFree).\n"
"Ĺđéčőěĺßôĺ ôçí áőôüěáôç ĺęęßíçóç ăńáöéęďý đĺńéâÜëëďíôďň;"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Đďéď óýóôçěá ÷ńçóéěďđďéĺß ç ôçëĺüńáóç óáň;"
@@ -494,7 +494,7 @@ msgstr "ÓőěđáăŢň"
msgid "compact"
msgstr "óőěđáăŢň"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "ÁíÜëőóç ďčüíçň"
@@ -502,17 +502,17 @@ msgstr "ÁíÜëőóç ďčüíçň"
msgid "Delay before booting default image"
msgstr "ĘáčőóôÝńçóç đńéí ôçí ĺęęßíçóç"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Ęůäéęüň Đńüóâáóçň"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Ęůäéęüň Đńüóâáóçň (îáíÜ)"
@@ -548,14 +548,14 @@ msgstr ""
"Ç ĺđéëďăŢ ``Áđáăüńĺőóç ĺđéëďăţí ăńáěěŢň ĺíôďëŢň'' ĺßíáé Ü÷ńçóôç ÷ůńßň ęůäéęü "
"đńüóâáóçň"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Đáńáęáëţ đńďóđáčŢóôĺ îáíÜ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ďé ęůäéęďß đńüóâáóçň ĺßíáé áíüěďéďé"
@@ -597,7 +597,7 @@ msgstr ""
"\n"
"Áđü đďéüí äßóęď îĺęéíÜôĺ;"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -605,148 +605,148 @@ msgstr ""
"ŐđÜń÷ďőí ďé áęüëďőčĺň ĺđéëďăÝň.\n"
"Ěđďńĺßôĺ íá đńďóčÝóĺôĺ ęé Üëëĺň Ţ íá áëëÜîĺôĺ ôéň őđÜń÷ďőóĺň."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ĐńďóčŢęç"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Ďëďęëçńţčçęĺ"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ôńďđďđďßçóç"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Ôé ôýđďő ĺđéëďăŢ čÝëĺôĺ íá đńďóčÝóĺôĺ;"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "śëëď ëĺéôďőńăéęü (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "śëëď ëĺéôďőńăéęü (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "śëëď ëĺéôďőńăéęü (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Ĺéęüíá"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr ""
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Đßíáęáň"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "ÁíáóöáëÝň"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "ĹôéęÝôá"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ĐńďĺđéëĺăěÝíď"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "ěÝăĺčďň Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "×ůńßňVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Áöáßńĺóç ĺđéëďăŢň"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Äĺí ĺđéôńÝđĺôáé Üäĺéá ĺôéęÝôá"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "ĐńÝđĺé íá ďńßóĺôĺ ěéá ĺéęüíá đőńŢíá"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "ĐńÝđĺé íá ďńßóĺôĺ ěéá ęáôÜôěçóç root"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "ÁőôŢ ç ĺôéęÝôá ÷ńçóéěďđďéĺßôáé Ţäç"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "ÂńÝčçęáí %s %s đńďóáńěďăĺßň"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "¸÷ĺôĺ Üëëďí;"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "¸÷ĺôĺ ęÜđďéďí đńďóáńěďăÝá %s;"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "ź÷é"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Íáé"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "ĐńďâďëŢ đëçńďöďńéţí őëéęďý"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "ĹăęáôÜóôáóç ďäçăďý ăéá %s ęÜńôá %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(Üńčńůěá %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,7 +756,7 @@ msgstr ""
"Óçěĺéţóôĺ üôé ęÜčĺ äéĺýčőíóç đńÝđĺé íá ĺéóÜăĺôáé ěĺ ôď đńüčĺěá 0x üđůň "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -767,17 +767,17 @@ msgstr ""
"Ďé đáńÜěĺôńďé Ý÷ďőí ôçí ěďńöŢ ``üíďěá=ôéěŢ üíďěá2=ôéěŢ2 ...''.\n"
"Ăéá đáńÜäĺéăěá, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "ĹđéëďăÝň áńčńţěáôďň:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Đďéüí ďäçăü %s íá äďęéěÜóů;"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -794,15 +794,15 @@ msgstr ""
"ôď őëéęü óáň ăéá ôéň đáńáěÝôńďőň đďő ÷ńĺéÜćĺôáé; Ç ĺîÝôáóç áőôŢ ßóůň\n"
"đńďęáëÝóĺé đÜăůěá ôďő óőóôŢěáôďň, áëëÜ äĺí čá đńďęáëÝóĺé âëÜâç."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Áőôüěáôç ĺîÝôáóç"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Đńďóäéďńéóěüň đáńáěÝôńůí"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -811,62 +811,62 @@ msgstr ""
"Ç öüńôůóç ôďő áńčńţěáôďň %s áđÝôő÷ĺ.\n"
"ČÝëĺôĺ íá äďęéěÜóĺôĺ îáíÜ ěĺ äéáöďńĺôéęÝň đáńáěÝôńďőň;"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "đńüóâáóç óĺ đńďăńÜěěáôá ×"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "đńüóâáóç óĺ ĺńăáëĺßá rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "äőíáôüôçôá \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "đńüóâáóç óĺ äéá÷ĺéńéóôéęÜ áń÷ĺßá"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "đńüóâáóç óĺ ĺńăáëĺßá äéęôýďő"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ôď %s Ý÷ĺé Ţäç đńďóôĺčĺß)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ď ęůäéęüň đńüóâáóçň ĺßíáé đďëý áđëüň"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ üíďěá ÷ńŢóôç"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Ôď ęůäéęü üíďěá ěđďńĺß íá đĺńéÝ÷ĺé ěüíď đĺćÜ ăńÜěěáôá, áńéčěďýň, `-' ęáé `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Áőôü ôď üíďěá ÷ńŢóôç ĺßíáé đďëý ěáęńý"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Áőôü ôď üíďěá ÷ńŢóôç őđÜń÷ĺé Ţäç"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "ĐńďóčŢęç ÷ńŢóôç"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -875,32 +875,32 @@ msgstr ""
"ĹéóÜăĺôĺ ÷ńŢóôç\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Áđďäď÷Ţ ÷ńŢóôç"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Đńáăěáôéęü üíďěá"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "źíďěá ÷ńŢóôç"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Öëďéüň (shell)"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ĺéęďíßäéď"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Áőôüěáôç óýíäĺóç"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -909,19 +909,19 @@ msgstr ""
"ôçí ĺęęßíçóç óĺ Ýíáí ÷ńŢóôç.\n"
"ČÝëĺôĺ áőôŢ ôçí äőíáôüôçôá;"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "ĹđéëÝîôĺ ôďí đńďĺđéëĺăěÝíď ÷ńŢóôç:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "ĹđéëÝîôĺ ôďí äéá÷ĺéńéóôŢ đáńáčýńůí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôç ăëţóóá."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -931,37 +931,37 @@ msgstr ""
"ôéň Üëëĺň ăëţóóĺň đďő čá ĺßíáé äéáčÝóéěĺň ěĺôÜ ôď đÝńáň ôçň \n"
"ĺăęáôÜóôáóçň ęáé ôçí ĺđáíĺęęßíçóç ôďő óőóôŢěáôüň óáň."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "źëá"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "ĹđéôńÝđĺôáé ăéá üëďőň ôďőň ÷ńŢóôĺň"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "×ůńßň ęďéíŢ ÷ńŢóç"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Ěđďńĺßôĺ íá ăßíĺé ĺîáăůăŢ ěĺ ôçí ÷ńŢóç NFS Ţ Samba. Đáńáęáëţ ĺđéëÝîôĺ đďßď "
"čÝëĺôĺ."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "¸íá áđáńáßôçôď áń÷ĺßď (ôď %s ) äĺí őđÜń÷ĺé"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 +975,11 @@ msgstr ""
"\n"
"Ôď \"ĐńďóáńěďóěÝíď\" ĺđéôńÝđĺé ôçí áíÜ ÷ńŢóôç ńýčěéóç.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Ĺęęßíçóç userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -988,31 +988,31 @@ msgstr ""
"Ěđďńĺßôĺ íá ôçí đńďóčÝóĺôĺ óôďí ęÜčĺ ÷ńŢóôç óĺ áőôŢ ôçí ďěÜäá ěĺ ôď "
"userdrake."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Ęáëţň ďńßóáôĺ óôďőň Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Öôů÷ü"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Ôőđéęü"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Őřçëü"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Őřçëüôĺńď"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Đáńáíďúęü"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1022,7 +1022,7 @@ msgstr ""
"đéď ĺý÷ńçóôď, áëëÜ đďëý ĺőáßóčçôď. Äĺí đńÝđĺé íá ÷ńçóéěďđďéçčĺß óĺ óýóôçěá\n"
"óőíäĺäĺěÝíď óôď Äéáäßęôőď Ţ LAN. Äĺí őđÜń÷ďőí ęůäéęďß đńüóâáóçň."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1030,7 +1030,7 @@ msgstr ""
"Ôţńá őđÜń÷ďőí ęůäéęďß đńüóâáóçň, áëëÜ ç ÷ńŢóç ôďő óőóôŢěáôďň óĺ äßęôőď áęüěá "
"äĺí óőíßóôáôáé."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1038,7 +1038,7 @@ msgstr ""
"Áőôü ĺßíáé ôď óőíçčéóěÝíď ĺđßđĺäď áóöáëĺßáň ăéá Ýíá óýóôçěá đďő čá óőíäĺčĺß "
"ůň đĺëÜôçň óôď Äéáäßęôőď."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1046,7 +1046,7 @@ msgstr ""
"ŐđÜń÷ďőí Ţäç ęÜđďéďé đĺńéďńéóěďß, ęáé đĺńéóóüôĺńďé Ýëĺă÷ďé ĺęôĺëďýíôáé ęÜčĺ "
"âńÜäő."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1062,7 +1062,7 @@ msgstr ""
"Óçě: Áí ôď ěç÷Üíçěá ĺßíáé ěüíď ăéá ôçí ÷ńŢóç ůň đĺëÜôç óôď Äéáäßęôőď ôüôĺ "
"ęáëýôĺńá íá ĺđéëÝîĺôĺ ÷áěçëüôĺńď ĺđßđĺäď áóöÜëĺéáň"
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1070,32 +1070,32 @@ msgstr ""
"Ç áóöÜëĺéá ĺßíáé ßäéá ôďő đńďçăďýěĺíďő ĺđéđÝäďő, ěĺ ôď óýóôçěá ôĺëĺßůň "
"ęëĺéóôü. Ç áóöÜëĺéá ĺßíáé óôď ěÝăéóôď äőíáôü."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "ÂáóéęÝň ĹđéëďăÝň DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "ĹđéëÝîôĺ ôď ĺđéčőěçôü ĺđßđĺäď áóöáëĺßáň"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Ĺđßđĺäď áóöáëĺßáň"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "×ńŢóç libsafe ăéá äéáęďěéóôÝň"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Äéá÷ĺéńéóôŢň Áóöáëĺßáň (đńďóđÝëáóç Ţ ôá÷őäńďěĺßď)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1111,7 +1111,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1135,58 +1135,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Äĺí ěđďńĺßôĺ íá ĺăęáôáóôŢóĺôĺ ôď đńüăńáěěá ĺęęßíçóçň óĺ ęáôÜôěçóç %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "äĺí őđÜń÷ĺé áęüěá äéáčÝóéěç âďŢčĺéá.\n"
@@ -1238,63 +1238,63 @@ msgstr "Ëĺéôďőńăßá Lilo/grub"
msgid "Yaboot mode"
msgstr "Ëĺéôďőńăßá Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "ĹăęáôÜóôáóç čĺěÜôůí"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "ĹěöÜíéóç čÝěáôďň óôçí ęďíóüëá"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Äçěéďőńăßá íÝďő čÝěáôďň"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Áíôßăńáöď Áóöáëĺßáň ôďő %s óĺ %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "ÓöÜëěá"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "áäőíáěßá äçěéďőńăßáň áíôéăńÜöďő áóöáëĺßáň ôďő ěçíýěáôďň lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "ÁíôéăńáöŢ %s óĺ %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "áäőíáěßá áëëáăŢň ěçíýěáôďň lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Äĺí âńÝčçęĺ ôď ěŢíőěá lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Áäőíáěßá ĺăăńáöŢň ôďő /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "ĹăăńáöŢ %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1302,17 +1302,17 @@ msgstr ""
"Áäőíáěßá ĺăăńáöŢň /etc/sysconfig/bootsplash\n"
"Ôď áń÷ĺßď äĺí âńÝčçęĺ."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Áäőíáěßá ĺęęßíçóçň mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Äçěéďőńăßá initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1321,24 +1321,24 @@ msgstr ""
"ĹęôĺëÝóôĺ \"lilo\" ůň root óôçí ăńáěěŢ ĺíôďëţí ăéá íá ďëďęëçńůčĺß ç "
"ĺăęáôÜóôáóç ôďő čÝěáôďň LiLo"
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Ĺđáíĺęęßíçóç 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Óçěĺßůóç"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Ĺđéôő÷Ţň ĺăęáôÜóôáóç čĺěÜôůí LiLo ęáé Bootsplash"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Ç ĺăęáôÜóôáóç čÝěáôďň áđÝôő÷ĺ!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1347,21 +1347,21 @@ msgstr ""
"×ńçóéěďđďéĺßôĺ ôďí %s ůň đńüăńáěěá ĺęęßíçóçň.\n"
"ĘÜíôĺ ęëéę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Ńýčěéóç"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "ÔěŢěá Splash"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "ČÝěáôá"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1376,44 +1376,44 @@ msgstr ""
"íá ôá ĺđéëÝîĺôĺ ęáé\n"
"îĺ÷ůńéóôÜ"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Ďčüíç Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "ĘáôÜóôáóç óőóôŢěáôďň"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Ëĺéôďőńăßá ăńáöéęďý đĺńéâÜëëďíôďň ęáôÜ ôçí ĺęęßíçóç ôďő óőóôŢěáôďň"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "ź÷é, äĺí ĺđéčőěţ áőôüěáôç đńďóđÝëáóç"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Íáé, ĺđéčőěţ áőôüěáôç đńďóđÝëáóç ěĺ (÷ńŢóôçň, đĺńéâÜëëďí)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "ĹíôÜîĺé"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "áäőíáěßá áíďßăěáôďň ôďő /etc/inittab ăéá áíÜăíůóç: %s"
@@ -1510,50 +1510,58 @@ msgstr "Áőóôńßá"
msgid "United States"
msgstr "Ç.Đ.Á."
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "ÍÝď"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Óýíäĺóç"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "ĹîőđçńĺôçôŢň"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôçí äéĺýčőíóç ôďő ĺîőđçńĺôçôŢ WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "Ç äéĺýčőíóç đńÝđĺé íá îĺęéíÜ ěĺ http:// Ţ https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "ĹîőđçńĺôçôŢň:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Óçěĺßď óýíäĺóçň: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "ĹđéëďăÝň: %s"
@@ -1641,7 +1649,7 @@ msgstr "śäĺéď"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "śëëď"
@@ -1785,7 +1793,7 @@ msgstr ""
"Ď ĺöĺäńéęüň đßíáęáň ęáôáôěŢóĺůí Ý÷ĺé äéáöďńĺôéęü ěÝăĺčďň\n"
"Íá óőíĺ÷ßóů;"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Đńďóď÷Ţ"
@@ -2347,7 +2355,7 @@ msgstr ""
"Đáńáęáëţ ĺéóÜăĺôĺ ôď üíďěá ÷ńŢóôç ôďí ęůäéęü đńüóâáóçň ęáé ôď üíďěá ôďěÝá "
"ăéá ôç óýíäĺóç óôďí host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "źíďěá ÷ńŢóôç"
@@ -2359,23 +2367,23 @@ msgstr "ÔďěÝáň"
msgid "Search servers"
msgstr "ÁíáćŢôçóç äéáęďěéóôţí"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ěďńöďđďßçóç ôďő %s áđÝôő÷ĺ"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "äĺí îÝńů đţň íá ěďńöďđďéŢóů ôď %s óĺ ôýđď %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "ç óýíäĺóç ôçň ęáôÜôěçóçň %s óôďí ęáôÜëďăď %s áđÝôő÷ĺ"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "óöÜëěá ęáôÜ ôçí áđďóýíäĺóç ôďő %s: %s"
@@ -2470,47 +2478,110 @@ msgstr "Ęáěßá ĺíÝńăĺéá đńďň ĺęôÝëĺóç"
msgid "Error opening %s for writing: %s"
msgstr "ÓöÜëěá ęáôÜ ôď Üíďéăěá ôďő %s ăéá ĺăăńáöŢ: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
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)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Äĺí őđÜń÷ĺé ăíůóôüň ĺíáëëáęôéęüň ďäçăüň OSS/ALSA ăéá ôçí ęÜńôá Ţ÷ďő óáň (%s)"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Ńýčěéóç Ţ÷ďő"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Ĺäţ ěđďńĺßôĺ íá ĺđéëÝîĺôĺ Ýíáí ĺíáëëáęôéęü ďäçăü (OSS Ţ ALSA) ăéá ôçí ęÜńôá "
"Ţ÷ďő óáň (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Ďäçăüň:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "ÂďŢčĺéá"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ... ĹöáńěďăŢ ńőčěßóĺůí"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "ĘáíÝíáň ăíůóôüň ďäçăüň"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Äĺí őđÜń÷ĺé ęÜđďéďň ăíůóôüň ďäçăüň ăéá ôçí ęÜńôá Ţ÷ďő óáň (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "śăíůóôďň ďäçăüň"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2628,7 +2699,8 @@ msgid "/_Quit"
msgstr "/_¸îďäďň"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_ÂďŢčĺéá"
@@ -2649,14 +2721,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_ÁíáöďńÜ Bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Ó÷ĺôéęÜ ěĺ..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Ó÷ĺôéęÜ ěĺ ôď Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2664,56 +2740,53 @@ msgstr ""
"Áőôü ĺßíáé ôď HardDrake, Ýíá ĺńăáëĺßď ńýčěéóçň ôçň Mandrake\n"
"¸ęäďóç:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "¸ęäďóç Harddrake2 "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Őëéęü đďő áíé÷íĺýčçęĺ"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Đëçńďöďńßĺň"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Ńýčěéóç áńčńţěáôďň"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "ĹęôÝëĺóç ĺńăáëĺßď ńýčěéóçň"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "áíß÷íĺőóç óĺ ĺîÝëéîç %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Ĺäţ ěđďńĺßôĺ íá ńőčěßóĺôĺ ôéň đáńáěÝôńďőň ôďő áńčńţěáôďň."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "ĹęôÝëĺóç ôďő \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "đńůôĺýďőóá"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "äĺőôĺńĺýďőóá"
@@ -4105,7 +4178,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "ĐńÝđĺé ĺđßóçň íá ěďńöďđďéŢóĺôĺ ôď %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4130,7 +4203,7 @@ msgstr ""
"\n"
"ČÝëĺôĺ đńáăěáôéęÜ íá ĺăęáôáóôŢóĺôĺ áőôďýň ôďőň ĺîőđçńĺôçôÝň;\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4143,20 +4216,20 @@ msgstr ""
"\n"
"ČÝëĺôĺ đńáăěáôéęÜ íá áöáéńÝóôĺ áőôÜ ôá đáęÝôá;\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Äĺí ěđďńţ íá ÷ńçóéěďđďéŢóů broadcast ÷ůńßň ôďěÝá NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ĹéóÜăĺôĺ ěéá ěďńöďđďéçěÝíç äéóęÝôá FAT óôďí ďäçăü %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "ÁőôŢ ç äéóęÝôá äĺí Ý÷ĺé ěďńöďđďßçóç FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4164,12 +4237,12 @@ msgstr ""
"Ăéá íá ÷ńçóéěďđďéŢóĺôĺ áőôŢí ôçí áđďčçęĺőěÝíç ĺđéëďăŢ đáęÝôůí, îĺęéíŢóôĺ ôçí "
"ĺăęáôÜóôáóç ěĺ ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "ÓöÜëěá ęáôÜ ôçí áíÜăíůóç ôďő áń÷ĺßďő %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4418,7 +4491,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Ęáëţň ďńßóáôĺ óôď %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôáň"
@@ -4449,11 +4522,11 @@ msgstr "Ôýđďň ĺăęáôÜóôáóçň"
msgid "Please choose one of the following classes of installation:"
msgstr "Đáńáęáëţ ĺđéëÝîáôĺ ěéá áđü ôďőň đáńáęÜôů ôýđďň ĺăęáôÜóôáóçň:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "ĹđéëďăŢ ĎěÜäůí ĐáęÝôůí"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "ĹđéëďăŢ îĺ÷ůńéóôţí đáęÝôůí"
@@ -4530,7 +4603,7 @@ msgstr "Áőôüěáôç đńďâďëŢ ĺđéëĺăěÝíůí đáęÝôůí"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "ĹăęáôÜóôáóç"
@@ -4550,7 +4623,7 @@ msgstr "ĹëÜ÷éóôç ĹăęáôÜóôáóç"
msgid "Choose the packages you want to install"
msgstr "ĹđéëÝîôĺ ôá đáęÝôá đďő čÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "ĹăęáôÜóôáóç"
@@ -4577,17 +4650,17 @@ msgid "Installing package %s"
msgstr "ĹăęáôÜóôáóç đáęÝôďő %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Áđďäď÷Ţ"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "śńíçóç"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4602,16 +4675,16 @@ msgstr ""
"ĹÜí äĺí ôď Ý÷ĺôĺ, đáôŢóôĺ Áęýńůóç ăéá áđďöőăŢ ĺăęáôÜóôáóçň áđü áőôü ôď CdRom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Íá óőíĺ÷ßóů;"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ôáîéíüěçóç ôůí đáęÝôůí:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "ĐńďęëŢčçęĺ óöÜëěá ęáôÜ ôçí ĺăęáôÜóôáóç ôůí đáęÝôůí:"
@@ -4707,7 +4780,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4785,7 +4858,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ĺßóôĺ âÝâáéďé ăéá ôçí Üńíçóç ôçň Üäĺéáň ÷ńŢóçň;"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Đëçęôńďëüăéď"
@@ -4998,11 +5071,11 @@ msgstr "ĹéóÜăĺôĺ äéóęÝôá đďő đĺńéÝ÷ĺé ôçí ĺđéëďăŢ đáęÝôůí"
msgid "Selected size is larger than available space"
msgstr "Ôď ĺđéëĺăěÝíď ěÝăĺčďň ĺßíáé ěĺăáëýôĺńď áđü ôď äéáčÝóéěď ÷ţńď"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Ôýđďň ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5010,19 +5083,19 @@ msgstr ""
"Äĺí Ý÷ĺôĺ ĺđéëÝîĺé ďěÜäá đáęÝôůí.\n"
"Đáńáęáëţ ĺđéëÝîôĺ ôçí ĺëÜ÷éóôç ĺăęáôÜóôáóç đďő čÝëĺôĺ:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Ěĺ ×"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Ěĺ ôçí âáóéęŢ ôĺęěçńßůóç (óőíéóôÜôáé!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "ĐńáăěáôéęÜ ĺëÜ÷éóôç ĺăęáôÜóôáóç (ĺéäéęÜ ÷ůńßň urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5032,16 +5105,16 @@ msgstr ""
"ĹÜí äĺí Ý÷ĺôĺ ęáíÝíá áđü ôá đáńáęÜôů CDs, đáôŢóôĺ Áęýńůóç.\n"
"ĹÜí äĺí Ý÷ĺôĺ ęÜđďéá áđü áőôÜ, áđďĺđéëÝîôĺ ôá ęáé đáôŢóôĺ Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ďíüěáôé \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Đńďĺôďéěáóßá ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5050,21 +5123,21 @@ msgstr ""
"ĹăęáôÜóôáóç đáęÝôďő %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ńőčěßóĺéň ěĺôÜ ôçí ĺăęáôÜóôáóç"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôá Ĺęęßíçóçň óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôç äéóęÝôá ÁíáâÜčěéóçň ÁńčńůěÜôůí óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5130,7 +5203,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5151,160 +5224,160 @@ msgstr ""
"ČÝëĺôĺ íá ĺăęáôáóôŢóĺôĺ ôéň áíáâáčěßóĺéň ;"
# fuzzy
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Óýíäĺóç ěĺ ôçí ôďđďčĺóßá ôçň Mandrake Linux ăéá ëŢřç ôůí äéáčÝóéěůí ôüđůí "
"ëŢřçň..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "ĹđéëÝîôĺ ôüđď áđü ôďí ďđďßď čá ăßíĺé ç ëŢřç đáęÝôůí"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Óýíäĺóç ěĺ ôďí ôüđď ăéá ôçí ëŢřç ôůí äéáčÝóéěůí đáęÝôůí..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Đďéá ĺßíáé ç ćţíç ţńáň;"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Ôď ńďëüé ôďő őđďëďăéóôŢ óáň ĺßíáé ńőčěéóěÝíď óĺ GMT (ţńá Ăęńßíďőéôň)"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Áőôüěáôďň óőă÷ńďíéóěüň ţńáň (÷ńŢóç NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "ĹîőđçńĺôçôŢň NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "ÁđďěáęńőóěÝíďň ĺîőđçńĺôçôŢň CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "ĘáíÝíáň ĺęôőđůôŢň"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "¸÷ĺôĺ ęÜńôá Ţ÷ďő ISA;"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"ĹęôĺëÝóôĺ \"sndconfig\" ěĺôÜ ôçí ĺăęáôÜóôáóç ăéá ôçí ńýčěéóç ôçň ęÜńôáň"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"Äĺí âńÝčçęĺ ęÜńôá Ţ÷ďő. ÄďęéěÜóôĺ ôď \"harddrake\" ěĺôÜ ôçí ĺăęáôÜóôáóç"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Đĺńßëçřç"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Đďíôßęé"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "ŮńďëďăéáęŢ Ćţíç"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "ĹęôőđůôŢň"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ĘÜńôá ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "ĘÜńôá Ţ÷ďő"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "ĘÜńôá TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "ÔďěÝáň Windows "
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "ÔďđéęÜ áń÷ĺßá"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ęůäéęüň đńüóâáóçň root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "×ůńßň ęůäéęü đńüóâáóçň"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Áőôüň ď ęůäéęüň đńüóâáóçň ĺßíáé đďëý áđëüň (đńÝđĺé íá Ý÷ĺé ôďőëÜ÷éóôďí %d "
"÷áńáęôŢńĺň)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Đéóôďđďßçóç"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Đéóôďđďßçóç LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "ĹîőđçńĺôçôŢň LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Đéóôďđďßçóç NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "ÔďěÝáň NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "ĹîőđçńĺôçôŢň NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5320,19 +5393,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Đéóôďđďßçóç ÔďěÝá Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "źíďěá ×ńŢóôç Äéá÷ĺéńéóôŢ ÔďěÝá"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Ęůäéęüň Đńüóâáóçň Äéá÷ĺéńéóôŢ ÔďěÝá"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5363,19 +5436,19 @@ msgstr ""
"ďäçăü\n"
"äéóęÝôáň ęáé đáôŢóôĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Đńţôďň ďäçăüň äéóęÝôáň"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Äĺýôĺńďň ďäçăüň äéóęÝôáň"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "ĐáńÜëĺéřç"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5401,7 +5474,7 @@ msgstr ""
"ČÝëĺôĺ íá äçěéďőńăŢóĺôĺ äéóęÝôá ĺęęßíçóçň;\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5415,28 +5488,28 @@ msgstr ""
"ç äçěéďőńăßá äéóęÝôá ĺęęßíçóçň ěĺăÝčďőň 1.44 Mb ěÜëëďí čá áđďôý÷ĺé,\n"
"ĺđĺéäŢ ôď XFS ÷ńĺéÜćĺôáé đďëý ěĺăÜëďőň ďäçăďýň.)"
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "ËőđÜěáé, äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôáň"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ĹđéëÝîôĺ ďäçăü äéóęÝôáň ăéá äçěéďőńăßá äéóęÝôáň ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "ĹéóÜăĺôĺ äéóęÝôá óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Äçěéďőńăßá äßóęďő ĺęęßíçóçň..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Đńďĺôďéěáóßá đńďăńÜěěáôďň ĺęęßíçóçň..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5448,11 +5521,11 @@ msgstr ""
"Ç ĺăęáôÜóôáóç čá óőíĺ÷éóôĺß, áëëÜ\n"
"čá ÷ńĺéáóôĺß íá ÷ńçóéěďđďéŢóĺôĺ ôď BootX ăéá íá îĺęéíŢóĺôĺ ôď ěç÷ÜíçěÜ óáň"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "ČÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôď aboot;"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5461,17 +5534,17 @@ msgstr ""
"đńďóđÜčĺéá âĺâéáóěÝíçň ĺăęáôÜóôáóçň, áęüěá ęáé áí áőôü Ý÷ĺé óáí áđďôÝëĺóěá "
"ôçí ęáôáóôńďöŢ ôçň đńţôçň ęáôÜôěçóçň;"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Đńüăńáěěá ĺęęßíçóçň"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ç ĺăęáôÜóôáóç ôďő đńďăńÜěěáôďň ĺęęßíçóçň áđÝôő÷ĺ. ĐńďęëŢčçęĺ ôď áęüëďőčď "
"óöÜëěá:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5490,17 +5563,17 @@ msgstr ""
"Óôçí ĺđüěĺíç ĺęęßíçóç čá đńÝđĺé íá äĺßôĺ ôçí đńďôńďđŢ ôďő đńďăńÜěěáôďň "
"ĺęęßíçóçň ."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "ĹéóÜăĺôĺ Üäĺéá äéóęÝôá óôďí ďäçăü %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Äçěéďőńăßá äéóęÝôáň áőôüěáôçň ĺăęáôÜóôáóçň..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5510,7 +5583,7 @@ msgstr ""
"\n"
"ČÝëĺôĺ óßăďőńá íá ĺăęáôáëĺßřĺôĺ ôţńá;"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5544,15 +5617,15 @@ msgstr ""
"ó÷ĺôéęü\n"
"ęĺöÜëáéď ôďő ĺđßóçěďő ďäçăďý ÷ńŢóçň ôďő Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Äçěéďőńăßá äéóęÝôáň áőôüěáôçň ĺăęáôÜóôáóçň"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5566,15 +5639,15 @@ msgstr ""
"\n"
"Ěđďńĺß íá đńďôéěÜôĺ íá ĺđáíáëÜâĺôĺ ôçí ĺăęáôÜóôáóç.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Áőôüěáôď"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ĺđáíáöüńôůóç"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "ÁđďčŢęĺőóç ĺđéëďăŢň đáęÝôůí"
@@ -5610,14 +5683,14 @@ msgstr "Ăéá Đńď÷ůńçěÝíďőň"
msgid "Basic"
msgstr "ÂáóéęŢ"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Ĺđüěĺíď"
@@ -6060,7 +6133,7 @@ msgstr "Äĺîéü đëŢęôńď \"Windows\""
msgid "Circular mounts %s\n"
msgstr "ĘőęëéęÝň óőíäÝóĺéň %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "ÁöáéńÝóôĺ đńţôá ôéň ëďăéęÝň ěďíÜäĺň\n"
@@ -6197,15 +6270,15 @@ msgstr "ęáíÝíá"
msgid "No mouse"
msgstr "×ůńßň đďíôßęé"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Đáńáęáëţ äďęéěÜóôĺ ôď đďíôßęé"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Ăéá ĺíĺńăďđďßçóç đďíôéęéďý"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "ĘÉÍÇÓÔĹ ÔĎ ŃĎÄÁĘÉ!"
@@ -6241,11 +6314,11 @@ msgstr "Óýěđôőîç äÝíôńďő"
msgid "Toggle between flat and group sorted"
msgstr "ĹíáëëáăŢ ěĺôáîý ĺđßđĺäçň ęáé ďěáäéęŢň ôáîéíüěçóçň"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Óýíäĺóç óôď Äéáäßęôőď"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6255,23 +6328,19 @@ msgstr ""
"ĎńéóěÝíĺň óőíäÝóĺéň ÷ńçóéěďđďéďýí pptp, ęÜđďéĺň ëßăĺň dhcp.\n"
"ĹÜí äĺí îÝńĺôĺ, ĺđéëÝîôĺ '÷ńŢóç pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "÷ńŢóç dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "÷ńŢóç pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "÷ńŢóç pptp"
@@ -6374,7 +6443,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:362
msgid "Configuring network"
msgstr "Ńýčěéóç äéęôýďő"
@@ -6390,15 +6459,15 @@ 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:367
msgid "Host name"
msgstr "źíďěá óőóôŢěáôďň"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Ďäçăüň Ńýčěéóçň Äéęôýďő"
@@ -6446,8 +6515,8 @@ msgid "Old configuration (isdn4net)"
msgstr "ĐáëéÜ ńýčěéóç (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Ńőčěßóĺéň ISDN"
@@ -6483,23 +6552,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Đďéď đńůôüęďëëď čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ;"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Ôé ĺßäďőň ęÜńôáň Ý÷ĺôĺ;"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Äĺí îÝńů"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6512,19 +6586,19 @@ msgstr ""
"\n"
"ĹÜí Ý÷ĺôĺ PCMCIA ęÜńôá, đńÝđĺé íá îÝńĺôĺ ôď irq ęáé ôď io ôçň ęÜńôáň óáň.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Áęýńůóç"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "ÓőíÝ÷ĺéá"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Đďéá ĺßíáé ç ISDN ęÜńôá óáň;"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6532,7 +6606,7 @@ msgstr ""
"Ĺíôüđéóá ěéá ISDN ęÜńôá, áëëÜ äĺí îÝńů ôďí ôýđď ôçň. Đáńáęáëţ ĺđéëÝîôĺ ěéá "
"ęÜńôá PCI áđü ôçí đáńáęÜôů ďčüíç."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Äĺí âńÝčçęĺ ęÜńôá ISDN. Đáńáęáëţ ĺđéëÝîôĺ ěéá áđü ôçí đáńáęÜôů ďčüíç."
@@ -6584,7 +6658,7 @@ msgstr "Đńţôďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
msgid "Second DNS Server (optional)"
msgstr "Äĺýôĺńďň ĺîőđçńĺôçôŢň DNS (đńďáéńĺôéęü)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6592,7 +6666,7 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá áđďóőíäĺčĺßôĺ Ţ íá ĺđáíáńőčěßóĺôĺ ôç óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6600,11 +6674,11 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá ĺđáíáńőčěßóĺôĺ ôç óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "ÁőôŢ ôç óôéăěŢ ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6612,32 +6686,32 @@ msgstr ""
"\n"
"Ěđďńĺßôĺ íá óőíäĺčĺßôĺ óôď Äéáäßęôőď Ţ íá ĺđáíáńőčěßóĺôĺ ôç óýíäĺóŢ óáň."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "ÁőôŢ ôç óôéăěŢ äĺí ĺßóôĺ óőíäĺäĺěÝíďé óôď Äéáäßęôőď."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Óýíäĺóç"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Áđďóýíäĺóç"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Ńýčěéóç ôçň óýíäĺóçň"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Óýíäĺóç ęáé ńýčěéóç Äéáäéęôýďő"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Ôţńá čá ńőčěßóďőěĺ ôçí %s óýíäĺóç."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6656,12 +6730,12 @@ msgstr ""
"\n"
"ĐáôŢóôĺ ôď OK ăéá íá îĺęéíŢóĺôĺ"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6672,7 +6746,7 @@ msgstr ""
"ĘÜíôĺ ęëéę óôď Ok ăéá íá äéáôçńŢóĺôĺ ôéň ńőčěßóĺéň óáň, Ţ Üęőńď ăéá "
"íáîáíáńőčěßóĺôĺ ôç óýíäĺóç óôď Äéáäßęôőď.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6685,72 +6759,72 @@ msgstr ""
"Áí äĺí čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ ôçí áőôüěáôç áíß÷íĺőóç, áđďĺđéëÝîôĺ ôď "
"ęďőôÜęé.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "ĹđéëÝîôĺ ôď đńďößë ăéá ńýčěéóç"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Ĺíôďđéóěüň óőóęĺőţí..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "ÁđëŢ óýíäĺóç ěĺ ěüíôĺě"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "áíé÷íĺýčçęĺ óôçí đüńôá %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Óýíäĺóç ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "áíé÷íĺýčçęĺ ôď %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Óýíäĺóç ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "áíé÷íĺýčçęĺ óôçí äéĺđáöŢ %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "ĘáëůäéáęŢ óýíäĺóç"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "áíé÷íĺýčçęĺ ęáëůäéáęŢ óýíäĺóç"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Óýíäĺóç LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "áíé÷íĺýčçęáí ęÜńôá(ĺň) ethernet"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "ĹđéëÝîôĺ ôç óýíäĺóç đďő čÝëĺôĺ íá ńőčěßóĺôĺ"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6760,23 +6834,23 @@ msgstr ""
"ĹđéëÝîôĺ áőôüí đďő čÝëĺôĺ íá ÷ńçóéěďđďéŢóĺôĺ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Óýíäĺóç Äéáäéęôýďő"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "ČÝëĺôĺ íá óőíäÝĺóôĺ ęáôÜ ôçí ĺęęßíçóç;"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Ńőčěßóĺéň äéęôýďő"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Ôď äßęôőď đńÝđĺé íá ĺđáíĺęęéíçčĺß"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6787,7 +6861,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6797,7 +6871,7 @@ msgstr ""
"Ďé ńőčěßóĺéň čá ĺöáńěďóôďýí ôţńá óôď óýóôçěÜ óáň.\n"
"\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6805,7 +6879,7 @@ msgstr ""
"Áöďý ăßíĺé áőôü, đńďôĺßíďőěĺ íá ĺđáíĺęęéíŢóĺôĺ ôď ×đĺńéâÜëëďí ăéá íá "
"áđďöýăĺôĺ ôá đńďâëŢěáôá áëëáăŢň hostname."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -6815,7 +6889,7 @@ msgstr ""
"ÄďęéěÜóôĺ ôç óýíäĺóç ěĺ ôď net_monitor Ţ ôď mcc. Áí äĺí ëĺéôďőńăŢóĺé ç "
"óýíäĺóç, ôüôĺ čá đńÝđĺé íá ĺęęéíŢóĺôĺ îáíÜ ôç ńýčěéóç."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6827,7 +6901,7 @@ msgstr ""
"ÁđëÜ đáôŢóôĺ OK ăéá íá ęńáôŢóĺôĺ ôéň őđÜń÷ďőóĺň ńőčěßóĺéň.\n"
"ÁëëÜćďíôáň ôá đáńáęÜôů đĺäßá čá áëëÜîĺôĺ ôçí őđÜń÷ďőóá ńýčěéóç."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6837,42 +6911,42 @@ msgstr ""
"ĘÜčĺ óôďé÷ĺßď đńÝđĺé íá ĺéóá÷čĺß ůň IP äéĺýčőíóç ěĺ áńéčěďýň\n"
"÷ůńéóěÝíďőň ěĺ ôĺëĺßĺň (đáńÜäĺéăěá: 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Ńýčěéóç óőóęĺőŢň äéęôýďő %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (ďäçăüň %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Äéĺýčőíóç IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "ĚÜóęá äéęôýďő"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Áőôüěáôď IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Óôçí ĺęęßíçóç óőóôŢěáôďň"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6884,43 +6958,53 @@ msgstr ""
"üđůň đ.÷. ``mybox.mylab.myco.com''.\n"
"Ěđďńĺßôĺ ĺđßóçň íá ĺéóÜăĺôĺ ęáé ôçí äéĺýčőíóç IP ôçň đýëçň äéęôýďő"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "ĹîőđçńĺôçôŢň DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Đýëç (đ.÷. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "ÓőóęĺőŢ đýëçň"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Ç IP äéĺýčőíóç đńÝđĺé íá ĺßíáé óĺ ěďńöŢ 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Ńőčěßóĺéň proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
"ÁíáćŢôçóç ôáőôüôçôáň ôçň ęÜńôáň äéęôýďő (÷ńŢóéěď ăéá öďńçôďýň őđďëďăéóôÝň)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Ď proxy đńÝđĺé íá ĺßíáé http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Ď proxy đńÝđĺé íá ĺßíáé ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Ôď URL đńÝđĺé íá îĺęéíÜ ěĺ 'http:' Ţ 'ftp:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8410,7 +8494,7 @@ msgstr "Ĺęôýđůóç óôďí ĺęôőđůôŢ \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8957,10 +9041,6 @@ msgstr ""
"Đáńáęáëţ óőěđëçńţóôĺ ôéň đëçńďöďńßĺň ăéá ôď ftp proxy\n"
"ÁöŢóôĺ ôá ęĺíÜ áí äĺí ĺđéčőěĺßôĺ ftp proxy"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Ôď URL đńÝđĺé íá îĺęéíÜ ěĺ 'http:' Ţ 'ftp:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9010,6 +9090,43 @@ msgstr "áđďôő÷ßá mkraid (ěŢđůň áđďőóéÜćďőí ôá raidtools;)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Äĺí őđÜń÷ďőí áńęĺôÝň ęáôáôěŢóĺéň ăéá RAID ĺđéđÝäďő %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Ĺđßđĺäď áóöáëĺßáň"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Ĺđßđĺäď áóöáëĺßáň"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Äéá÷ĺéńéóôŢň Áóöáëĺßáň (đńďóđÝëáóç Ţ ôá÷őäńďěĺßď)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (ĐńďĺđéëĺăěÝíďň)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ, đńďĺôďéěáóßá ĺăęáôÜóôáóçň..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Ĺęęßíçóç ôďő ALSA (Advanced Linux Sound Architecture) óőóôŢěáôďň Ţ÷ďő"
@@ -9327,7 +9444,7 @@ msgstr "Äéáäßęôőď"
msgid "File sharing"
msgstr "Ęďéíü÷ńçóôá áń÷ĺßá"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Óýóôçěá"
@@ -9417,7 +9534,7 @@ 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"
msgstr ""
@@ -9462,7 +9579,7 @@ msgstr "ÄéĺđáöÝň ×ńçóôţí"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9487,7 +9604,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9503,7 +9620,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9518,7 +9635,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9567,8 +9684,8 @@ 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 your 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
@@ -9604,11 +9721,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "ĹăęáôÜóôáóç đáęÝôůí..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Đáńáęáëţ áđďóőíäĺčĺßôĺ ęáé ěĺôÜ đáôŢóôĺ Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Đáńáęáëţ ĺđáíáóőíäĺčĺßôĺ ůň %s ăéá ĺíĺńăďđďßçóç ôůí áëëáăţí"
@@ -9649,16 +9766,6 @@ msgstr "ĐńďóčŢęç/Áöáßńĺóç ×ńçóôţí"
msgid "Add/Del Clients"
msgstr "ĐńďóčŢęç/Áöáßńĺóç Đĺëáôţí"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "ÂďŢčĺéá"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "ÄéóęÝôá Ĺęęßíçóçň"
@@ -9707,48 +9814,64 @@ msgstr "ĐńďóčŢęç ÷ńŢóôç -->"
msgid "<-- Del User"
msgstr "<-- ÄéáăńáöŢ ×ńŢóôç"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Ĺéęüíĺň Net Boot"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "ĐńďóčŢęç ĐĺëÜôç -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- ÄéáăńáöŢ ĐĺëÜôç"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Ńýčěéóç dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Đńď÷ůńçěÝíĺň Ńőčěßóĺéň"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "ĹăăńáöŢ Ńýčěéóçň"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ äéóęÝôá Ĺęęßíçóçň:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Äĺí ĺßíáé äőíáôŢ ç đńüóâáóç óôç äéóęÝôá!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Ôţńá ěđďńĺßôĺ íá áöáéńÝóôĺ ôç äéóęÝôá"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Äĺí őđÜń÷ĺé äéáčÝóéěďň ďäçăüň äéóęÝôáň!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Ç ĺéęüíá Etherboot ISO ĺßíáé ç %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "ĘÜôé äĺí đŢăĺ ęáëÜ! Ĺßíáé ôď mkisofs ĺăęáôĺóôçěÝíď;"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "ĐńÝđĺé íá äçěéďőńăŢóů đńţôá ôď /etc/dhcpd.conf!"
@@ -9879,12 +10002,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "ÓőíďëéęŢ đńüďäďň"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9893,41 +10016,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Ěđďńĺß íá ÷ńĺéáóôďýí ěĺńéęÜ ëĺđôÜ ăéá ôç äçěéďőńăßá ôůí ęëĺéäéţí:"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "×ůńßň óőíčçěáôéęü"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Áäőíáěßá áíďßăěáôďň %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9945,64 +10068,64 @@ msgstr ""
"\n"
"÷ůńßň íá ćçôçčĺß ęůäéęüň đńüóâáóçň."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "Ôď áđďěáęńőóěÝíď WebDAV ĺßíáé Ţäç óĺ óőă÷ńďíéóěü!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "Ç ěĺôáöďńÜ WebDAV áđÝôő÷ĺ!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Äĺí őđÜń÷ĺé CDR/DVDR óôďí ďäçăü!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "şóůň ÷ńĺéáóôďýí ěĺńéęÜ ëĺđôÜ ăéá íá óâçóôĺß ôď ěÝóď."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Đńüâëçěá äéęáéůěÜôůí óôçí đńüóâáóç ôďő CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Áíôßăńáöď Áóöáëĺßáň óőóôŢěáôďň áń÷ĺßůí..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Áíôßăńáöá Áóöáëĺßáň Óęëçńďý Äßóęďő"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Áíôßăńáöď Áóöáëĺßáň ôůí áń÷ĺßůí ×ńçóôţí..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Äéáäéęáóßá ÁíôéăńÜöůí áóöáëĺßáň óôďí Óęëçńü Äßóęď..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Áíôßăńáöď Áóöáëĺßáň śëëůí áń÷ĺßůí..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Äĺí őđÜń÷ďőí áëëáăÝň ăéá íá ăßíďőí áíôßăńáöá áóöáëĺßáň!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10010,14 +10133,14 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10027,39 +10150,39 @@ msgstr ""
" ÓöÜëěá óôç óýíäĺóç FTP . Äĺí Ţôáí äőíáôŢ ç áđďóôďëŢ ôůí áíôéăńÜöůí "
"áóöáëĺßáň ěÝóů FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr "ÓöÜëěá ęáôÜ ôçí áđďóôďëŢ ěçíýěáôďň. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Áäýíáôç ç äçěéďőńăßá ęáôáëüăďő!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "ĹđéëďăŢ Áń÷ĺßďő"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ ôá áń÷ĺßá Ţ ôďőň ęáôáëüăďőň ęáé ęÜíôĺ ęëéę óôď 'đńďóčŢęç'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10067,26 +10190,26 @@ msgstr ""
"\n"
"Đáńáęáëţ ĺđéëÝîôĺ üëĺň ôéň ĺđéëďăÝň đďő ÷ńĺéÜćĺóôĺ.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"ÁőôÝň ďé ĺđéëďăÝň ěđďńďýí íá đÜńďőí áíôßăńáöá áóöáëĺßáň ęáé íá ĺđáíáöÝńďőí "
"ôď /etc\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Áíôßăńáöď áóöáëĺßáň ôůí áń÷ĺßůí ÓőóôŢěáôďň (ęáôÜëďăďň /etc )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10094,50 +10217,50 @@ msgstr ""
"Ěĺ áőôŢ ôçí ĺđéëďăŢ čá ěđďńĺßôĺ íá ĺđáíáöÝńĺôĺ ďđďéáäŢđďôĺ\n"
"Ýęäďóç ôďő ęáôáëüăďő /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ üóďőň ÷ńŢóôĺň čÝëĺôĺ íá őđÜń÷ďőí óôá áíôßăńáöá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Áöáßńĺóç ĹđéëĺăěÝíůí"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "×ńŢóôĺň"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "×ńŢóç óýíäĺóç äéęôýďő ăéá ôá áń÷ĺßá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10145,76 +10268,78 @@ msgstr ""
" ĚĺôáöďńÜ \n"
"Ôţńá"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Đáńáęáëţ ďńßóôĺ ôďí äéęôőáęü üíďěá Ţ ôçí IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôď üíďěá ÷ńŢóôç"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôďí ęůäéęü đńüóâáóçň"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Áđďěíçěüíĺőóç ôďő ęůäéęďý đńüóâáóçň"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "×ńŢóç CD/DVDROM ăéá ôá áń÷ĺßá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Đáńáęáëţ ďńßóôĺ ôďí ÷ţńď ôďő CD/DVD "
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Đáńáęáëţ ďńßóôĺ áí ęÜíĺôĺ ÷ńŢóç óőóęĺőŢň CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr "ÓâŢóéěď Ôţńá "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Đáńáęáëţ ďńßóôĺ áí ęÜíĺôĺ ÷ńŢóç óőóęĺőŢň DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Đáńáęáëţ ďńßóôĺ áí ęÜíĺôĺ ÷ńŢóç óőóęĺőŢň DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10222,33 +10347,33 @@ msgstr ""
"Đáńáęáëţ ĺéóÜăĺôĺ ôď üíďěá ôçň óőóęĺőŢň ĺăăńáöŢň CD\n"
"đ.÷. : 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Äĺí ęáčďńßóôçęĺ óőóęĺőŢ CD"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "×ńŢóç ôáéíßáň ăéá ôá áń÷ĺßá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
"Đáńáęáëţ ĺéóÜăĺôáé ôď üíďěá óőóęĺőŢň ăéá ôç ÷ńŢóç ôůí áíôéăńÜöůí áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10256,55 +10381,55 @@ msgstr ""
"Đáńáęáëţ ĺđéëÝîôĺ ôď ěÝăéóôď ěÝăĺčďň\n"
"đďő ĺđéôńÝđĺôáé óôď Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Đáńáęáëţ ďńßóôĺ ôďí ęáôÜëďăď áđďčŢęĺőóçň: "
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Äßęôőď"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Óęëçńüň Äßóęďň / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "ůńéáßá"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "ęáčçěĺńéíÜ"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "ĺâäďěáäéáßá"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "ěçíéáßá"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "×ńŢóç äáßěďíá"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10313,7 +10438,7 @@ msgstr ""
"äéÜóôçěá ěĺôáîý ôďő ęÜčĺ\n"
"áíôßăńáöďő áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10322,79 +10447,79 @@ msgstr ""
"ěÝóď ăéá ôá áíôßăńáöá \n"
"áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
"ÁđďóôďëŢ çëĺęôńďíéęďý ěçíýěáôďň ěĺôÜ áđü ęÜčĺ ëŢřç áíôéăńÜöůí áóöáëĺßáň óôď:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Ôé"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Đďő"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Đüôĺ"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Đĺńéóóüôĺńĺň ĹđéëďăÝň"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Ńőčěßóĺéň Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôçí čÝóç ôůí áíôéăńÜöůí áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "óôďí Óęëçńü Äßóęď"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "óôď Äßęôőď"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "óôď CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôé čÝëĺôĺ íá đÜńĺôĺ óĺ áíôßăńáöá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Áíôßăńáöď Áóöáëĺßáň ÓőóôŢěáôďň"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Áíôßăńáöď Áóöáëĺßáň ×ńçóôţí"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "ĹđéëďăŢ ÷ńŢóôç ÷ĺéńďęßíçôá"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10402,7 +10527,7 @@ msgstr ""
"\n"
"- ĐçăÝň ÁíôéăńÜöůí Áóöáëĺßáň:\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10410,7 +10535,7 @@ msgstr ""
"\n"
"- Áń÷ĺßá ÓőóôŢěáôďň:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10418,7 +10543,7 @@ msgstr ""
"\n"
"- Áń÷ĺßá ×ńçóôţí:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10426,7 +10551,7 @@ msgstr ""
"\n"
"- śëëá Áń÷ĺßá:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10435,13 +10560,13 @@ msgstr ""
"\n"
"- ÁđďčŢęĺőóç óôďí óęëçńü äßóęď óôçí čÝóç: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -10449,39 +10574,39 @@ msgstr ""
"\n"
"- ĹăăńáöŢ óĺ CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "Óôç ÓőóęĺőŢ : %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10490,7 +10615,7 @@ msgstr ""
"\t\t üíďěá ÷ńŢóôç: %s\n"
"\t\t óôç čÝóç: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -10498,19 +10623,19 @@ msgstr ""
"\n"
"- ĹđéëďăÝň:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\t×ůńßň ôď Áń÷ĺßď ÓőóôŢěáôďň\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tÁíôßăńáöá Áóöáëĺßáň ůň tar ęáé bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tÁíôßăńáöá Áóöáëĺßáň ůň tar ęáé gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -10519,39 +10644,39 @@ msgstr ""
"\n"
"- Äáßěďíáň (%s) ěáćß ěĺ :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Óęëçńüň Äßóęďň.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Äßęôőď ěÝóů FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Äßęôőď ěÝóů SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -10559,7 +10684,7 @@ msgstr ""
"Ëßóôá ôůí äĺäďěÝíůí đńďň ĺđáíáöďńÜ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10567,106 +10692,106 @@ msgstr ""
"Ëßóôá ôůí ęáôĺóôńáěěÝíůí äĺäďěÝíůí:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Đáńáęáëţ áöáéńÝóôĺ ôď ôçí ĺđüěĺíç öďńÜ."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Ôá áíôßăńáöá áóöáëĺßáň ĺßíáé ęáôĺóôńáěěÝíá"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " źëá ôá ĺđéëĺăěÝíá äĺäďěÝíá Ý÷ďőí "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Áíáęôçčĺß ěĺ ĺđéôő÷ßá óôď %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Ńőčěßóĺéň ĹđáíáöďńÜň "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "ĹíôÜîĺé ăéá ôçí ĺđáíáöďńÜ ôůí Üëëůí áń÷ĺßůí."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Áíôßăńáöá áóöáëĺßáň áń÷ĺßůí óőóôŢěáôďň đńéí áđü:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôçí çěĺńďěçíßá ĺđáíáöďńÜň"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "×ńŢóç óęëçńďý äßóęďő ăéá ôá áíôßăńáöá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Đáńáęáëţ ďńßóôĺ ôďí ęáôÜëďăď áđďčŢęĺőóçň: "
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Óýíäĺóç FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Áóöáëĺßň óýíäĺóç"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "ĹđáíáöďńÜ áđü ôďí óęëçńü äßóęď."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Đáńáęáëţ ĺéóÜăĺôĺ ôďí ęáôÜëďăď đďő âńßóęďíôáé ôá áíôßăńáöá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "ĹđéëÝîôĺ Üëëď ěÝóď ăéá ôçí áíÜęôçóç"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "śëëá ĚÝóá"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "ĹđáíáöďńÜ óőóôŢěáôďň"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "ĹđáíáöďńÜ ×ńçóôţí"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "ĹđáíáöďńÜ śëëůí"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "ĺđéëÝîôĺ ôç čÝóç ĺđáíáöďńÜň (áíôß ôďő /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Áöáßńĺóç ęáôáëüăůí ÷ńçóôţí đńéí áđü ôçí ĺđáíáöďńÜ."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -10674,7 +10799,7 @@ msgstr ""
"ĹđáíáöďńÜ ĹđéëĺăěÝíůí\n"
"Áń÷ĺßůí"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -10682,131 +10807,131 @@ msgstr ""
"ÁëëáăŢ\n"
"ČÝóç ĹđáíáöďńÜň"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Ôá áíôßăńáöá áóöáëĺßáň äĺí âńÝčçęáí óôď %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
msgid "Restore From CD"
msgstr "ĹđáíáöďńÜ áđü CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
msgid "Restore From Tape"
msgstr ""
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "ĹđáíáöďńÜ ěÝóů äéęôýďő"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "źíďěá ÓőóôŢěáôďň"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Áđáéôĺßôáé ęůäéęüň đńüóâáóçň"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Áđáéôĺßôáé üíďěá ÷ńŢóôç"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Ç ČÝóç Ţ ôď śńčńůěá áđáéôĺßôáé"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Ç ĹđáíáöďńÜ ÁđÝôő÷ĺ..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "ĹđáíáöďńÜ üëůí ôůí áíôéăńÜöůí áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "ĐńďóáńěďóěÝíç ĹđáíáöďńÜ"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "Ôď CD ĺßíáé óôç čÝóç ôďő - óőíÝ÷ĺéá"
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "ĹđáíáöďńÜ áđü ĘáôÜëďăď"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "ĹđáíáöďńÜ áđü áń÷ĺßď"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Đńďçăďýěĺíď"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "ÁđďčŢęĺőóç"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Äçěéďőńăßá áíôéăńÜöůí áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "ĹđáíáöďńÜ"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10816,7 +10941,7 @@ msgstr ""
" Ç áíáöďńÜ äĺí óôÜëčçęĺ\n"
" đáńáęáëţ ńőčěßóôĺ ôď sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -10824,7 +10949,7 @@ msgstr ""
"Ôá đáńáęÜôů đáęÝôá đńÝđĺé íá ĺăęáôáóôáčďýí:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10832,19 +10957,19 @@ msgstr ""
"ÓöÜëěá ęáôÜ ôçí áđďóôďëŢ áń÷ĺßďő ěÝóů FTP.\n"
"Đáńáęáëţ äéďńčţóôĺ ôç ńýčěéóç ôďő FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá äĺäďěÝíá đńďň ĺđáíáöďńÜ..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôď ěÝóď ăéá ôá áíôßăńáöá áóöáëĺßáň..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Đáńáęáëţ ĺđéëÝîôĺ ôá áń÷ĺßá đďő čá ăßíďőí áíôßăńáöá áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10852,59 +10977,59 @@ msgstr ""
"Äĺí âńÝčçęĺ ńýčěéóç\n"
"đáńáęáëţ ęÜíôĺ ęëéę óôď Ďäçăü Ţ óôď Đńď÷ůńçěÝíď."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Őđü ÁíÜđôőîç ... đáńáęáëţ đĺńéěÝíĺôĺ."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Áíôßăńáöá áóöáëĺßáň ôďő óőóôŢěáôďň áń÷ĺßůí"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Áíôßăńáöá áóöáëĺßáň áń÷ĺßůí ÷ńçóôţí"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Áíôßăńáöá áóöáëĺßáň Üëëůí áń÷ĺßůí"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "ÓőíďëéęŢ Đńüďäďň"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "áđďóôďëŢ áń÷ĺßůí ěÝóů FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "ÁđďóôďëŢ áń÷ĺßůí..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Äçěéďőńăßá ÁíôéăńÜöůí Áóöáëĺßáň áđü ôď áń÷ĺßď ńőčěßóĺůí"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "ĐńďâďëŢ Ńőčěßóĺůí ÁíôéăńÜöůí Áóöáëĺßáň"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Ńőčěßóĺéň Ďäçăďý"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Đńď÷ůńçěÝíĺň Ńőčěßóĺéň"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Áíôßăńáöá áóöáëĺßáň Ôţńá"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10936,7 +11061,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10945,7 +11070,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10986,7 +11111,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11014,20 +11139,20 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
"áíáâáčěßóĺéň 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11044,7 +11169,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11084,7 +11209,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11095,7 +11220,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11108,7 +11233,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11222,8 +11347,8 @@ msgid "Synchronization tool"
msgstr "Ĺńăáëĺßď Óőă÷ńďíéóěďý"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -11288,26 +11413,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "ÁíáöďńÜ"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr ""
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "óýíäĺóç óôďí ďäçăü Bugzilla ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Äĺí âńÝčçęĺ đĺńéçăçôŢň! Đáńáęáëţ ĺăęáôáóôŢóôĺ ôďí"
@@ -11408,10 +11533,6 @@ msgstr "Ďäçăüň..."
msgid "Apply"
msgstr "ĹöáńěďăŢ"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Đáńáęáëţ đĺńéěÝíĺôĺ... ĹöáńěďăŢ ńőčěßóĺůí"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "ÓőíäÝčçęĺ"
@@ -11533,7 +11654,7 @@ msgstr "źíďěá áńčńţěáôďň"
msgid "Size"
msgstr "ĚÝăĺčďň"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11598,12 +11719,12 @@ msgstr "¸îďäďň"
msgid "Build the disk"
msgstr "Äçěéďőńăßá äéóęÝôáň"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Óéăďőńĺőôĺßôĺ đůň Ýíá ěÝóď ĺßíáé đáńüí ăéá ôç óőóęĺőŢ %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11612,12 +11733,12 @@ msgstr ""
"Äĺí őđÜń÷ĺé ěÝóď Ţ őđÜń÷ĺé đńďóôáóßá ĺăăńáöŢň ăéá ôç óőóęĺőŢ %s.\n"
"Đáńáęáëţ ĺéóÜăĺôĺ Ýíá."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Áäőíáěßá fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12104,159 +12225,159 @@ msgstr ""
"\n"
"ĘÜíôĺ ęëéę óôď Ńýčěéóç ăéá íá îĺęéíŢóĺôĺ ôďí ďäçăü ĺăęáôÜóôáóçň."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "ĎěÜäá ĺńăáóßáň:"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "ęáôÜôěçóç %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "×ńŢóôçň"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "ÄéáăńáöŢ"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Ďëďęëçńţčçęĺ"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "ĐńďóčŢęç áńčńţěáôďň"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "ĐńďóčŢęç íÝďő ĺęôőđůôŢ"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "ÁđďĺđéëďăŢ źëůí"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr ""
"ĹđáíáöďńÜ ĹđéëĺăěÝíůí\n"
"Áń÷ĺßůí"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "áíáćŢôçóç"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Áđďäď÷Ţ ÷ńŢóôç"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "¸ęäďóç: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Čýńá"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "×ńŢóç áőôüěáôçň áíß÷íĺőóçň"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "ÔěŢěá Splash"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "×ńŢóôçň"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "ĎěÜäá ĺńăáóßáň:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Äĺí âńÝčçęĺ ĘÜńôá š÷ďő!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12268,123 +12389,138 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "ôď đáęÝôď ImageMagick áđáéôĺßôáé ăéá ôç óůóôŢ ëĺéôďőńăßá"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "đńţôď âŢěá äçěéďőńăßáň"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "ôĺëéęŢ áíÜëőóç"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "ĹđéëÝîôĺ ěéá ĺéęüíá"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "źíďěá čÝěáôďň"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "äçěéďőńăßá bootsplash âŢěá 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "đŢăáéíĺ óôç ńýčěéóç ôďő lilosplash"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "¸îďäďň"
-
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "áđďčŢęĺőóç čÝěáôďň"
+#: ../../standalone/draksplash_.c:85
+#, fuzzy
+msgid "Browse"
+msgstr "áíáćŢôçóç"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Ńýčěéóç ĺéęüíáň 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "đëÜôďň ęĺéěÝíďő"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
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"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "ôď đëÜôďň ôçň ăńáěěŢň đńďüäďő"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "ôď ýřďň ôçň ăńáěěŢň đńďüäďő"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "Ôď ÷ńţěá ôçň ăńáěěŢň đńďüäďő"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "đńďĺđéóęüđçóç"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "ĹđéëÝîôĺ ÷ńţěá"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "áđďčŢęĺőóç čÝěáôďň"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "ĹđéëÝîôĺ ÷ńţěá"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "ĹěöÜíéóç ëďăüôőđďő óôçí Ęďíóüëá"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Áőôü ôď čÝěá äĺí Ý÷ĺé áęüěá ęÜđďéď bootsplash óôď %s !"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "áđďčŢęĺőóç čÝěáôďň Bootsplash ..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "ĹđéëďăŢ ÷ńţěáôďň ăńáěěŢň đńďüäďő"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "ĐńÝđĺé íá ĺđéëÝîôĺ đńţôá ěéá ĺéęüíá!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Äçěéďőńăßá đńďĺđéóęüđçóçň ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Áäőíáěßá äçěéďőńăßáň đńďĺđéóęüđçóçň Bootsplash"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12538,6 +12674,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "÷ńŢóç: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "÷ńŢóç: keyboarddrake [--expert] [keyboard]\n"
@@ -12566,11 +12709,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Äĺí ěđďńţ íá îĺęéíŢóů ôď live upgrade!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "Ç áëëáăŢ Ýăéíĺ, áëëÜ ăéá íá éó÷ýóĺé čá đńÝđĺé íá ăßíĺé áđďóýíäĺóç"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12844,16 +12987,13 @@ msgstr ""
"Ěđďńĺßôĺ ôţńá íá óáńţóĺôĺ Ýăăńáöá ěĺ ôď ``XSane'' áđü ôď ěĺíďý ĐďëőěÝóá/"
"ĂńáöéęÜ áđü ěĺíďý ĺöáńěďăţí."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12928,7 +13068,7 @@ msgstr "ĹăęáôÜóôáóç áíáâáčěßóĺůí"
msgid "Exit install"
msgstr "¸îďäďň"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13175,8 +13315,26 @@ msgstr "ĐďëőěÝóá - ĹăăńáöŢ CD"
msgid "Scientific Workstation"
msgstr "Óôáčěüň Ĺńăáóßáň Ĺđéóôçěďíéęţí ĺöáńěďăţí"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Áäőíáěßá äçěéďőńăßáň đńďĺđéóęüđçóçň Bootsplash"
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "äçěéďőńăßá bootsplash âŢěá 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "đŢăáéíĺ óôç ńýčěéóç ôďő lilosplash"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Äĺí őđÜń÷ĺé ăíůóôüň ĺíáëëáęôéęüň ďäçăüň OSS/ALSA ăéá ôçí ęÜńôá Ţ÷ďő óáň "
+#~ "(%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Ď proxy đńÝđĺé íá ĺßíáé ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "¸îďäďň"
#~ msgid ""
#~ "The \"%s\" driver for your sound card is unlisted\n"
@@ -13646,9 +13804,6 @@ msgstr "Óôáčěüň Ĺńăáóßáň Ĺđéóôçěďíéęţí ĺöáńěďăţí"
#~ "Đáńáęáëţ ĺđéëÝîôĺ áí čÝëĺôĺ íá îĺíéęÜ ôď CD áőôüěáôá ęáôÜ ôçí ĺęęßíçóç "
#~ "ôďő őđďëďăéóôŢ. "
-#~ msgid "Setting security level"
-#~ msgstr "Ńýčěéóç ĺđéđÝäďő áóöáëĺßáň"
-
#~ msgid "Setting security user"
#~ msgstr "Ńýčěéóç áóöáëĺßáň ÷ńŢóôç"
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 2a66ed081..9093f3c98 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -87,24 +87,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "ISDN-a Konfiguraźon"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s kun EKSPERIMENTA 3D aparata akcelado"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -144,12 +144,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Akomodata"
@@ -170,32 +170,32 @@ msgstr "Distingivo"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Jeso"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Ćesu"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Elektu distingivon kaj kolorprofundon"
msgid "Graphics card: %s"
msgstr "Grafika karto: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Nuligu"
@@ -387,11 +387,11 @@ msgstr "XFree86 servilo: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 pelilo: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X Fenestro će komenco"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Mi povas konfiguri vian komputilon tiel ke ři aýtomate lanćos X kiam ři\n"
"ekfunkcias. Ću vi deziras ke X aýtomate lanćos?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Kia estas via ISDN-a konektaźo?"
@@ -485,7 +485,7 @@ msgstr "Kompakta"
msgid "compact"
msgstr "kompakta"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Grafika reřimo"
@@ -493,17 +493,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasvorto"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Pasvorto (denove)"
@@ -537,14 +537,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Bonvole provu denove"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "La pasvortoj ne egalas"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,156 +589,156 @@ msgstr ""
"Jen la diversaj enskriboj.\n"
"Vi povas aldoni pli aý ţanři la ekzistantajn."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aldonu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Finata"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Ţanřu"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linukso"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Alia Mastruma Sistemo (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Alia Mastruma Sistemo (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Alia Mastruma Sistemo (Vindozo...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kerna bildo"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Radiko"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Alfiksu"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lega-skriba"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabelo"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Danřera"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etikedo"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Defaýlta"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grandeco"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Forigu enskribon"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Malplena etikedo ne estas permesata"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Vi devas havi interţanřan subdiskon"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ći tiu etikedo estas jam uzata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovis %s %s interfacojn"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Ću vi havas alian?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ću vi havas iun %s interfacon?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jes"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Vidu hardvaran informon"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalas pelilon por %s karto %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -749,17 +749,17 @@ msgstr ""
"Opcioj estas en la formo ``nomo=valoro nomo2=valoro2 ...''.\n"
"Ekzemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulaj opcioj:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kiun %s pelilon devus mi provi?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -776,15 +776,15 @@ msgstr ""
"por la informo ři bezonas? Kelkfoje, esplori svenas komputilon, sed\n"
"ři ne devus kaýzi difekton."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Aýtomate esploru"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specifu opciojn"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -793,62 +793,62 @@ msgstr ""
"Ţargado de modulo %s malsukcesis.\n"
"Ću vi deziras trovi denove kun aliaj parametroj?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(jam aldonis %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ći tiu pasvorto estas tro simpla"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Bonvole donu salutnomon"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Salutnomo devas enhavi nur minusklojn, ciferojn, `-' kaj `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ći tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ći tiu salutnomo estas jam aldonita"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Aldonu uzanto"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -857,32 +857,32 @@ msgstr ""
"Enigu uzanton\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Akceptu uzanto"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Vera nomo"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Salutnomo"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Ţelo"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Piktogramo"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Aýtomata-enregistrado"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -891,20 +891,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:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Elektu la fenestro-administrilon por lanći:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -912,39 +912,39 @@ msgid ""
msgstr ""
"Vi povas elektu aliajn lingvojn kiujn estos uzeblaj malantaý la instalado"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Ćiuj"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Aldonu uzulon"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS startas"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -953,42 +953,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Bonvenon Al Rompistoj"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Malbona"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Laýnorma"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alta"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Alta"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoja"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -998,7 +998,7 @@ msgstr ""
"por uzi, sed delikatega: vi devus neniam uzi ři surrete.\n"
"Ři ne havas pasvortojn."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1006,7 +1006,7 @@ msgstr ""
"Pasvortoj nun estas ebligataj, sed uzado kiel reta komputilo estas ankoraý\n"
"ne rekomendita."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1015,13 +1015,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1035,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:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1044,36 +1044,36 @@ 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:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcioj"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Elektu sekurnivelon?"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Elektas sekurnivelon"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Elektu opciojn por servilo"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1081,7 +1081,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1098,20 +1098,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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"
@@ -1119,39 +1119,39 @@ 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:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1204,128 +1204,128 @@ msgstr "Lilo/grub modalo"
msgid "Yaboot mode"
msgstr "Yaboot modalo"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instalu sistemon"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Kreu novan subdiskon"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Eraro"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "agrabla(j)"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Elektu instalklason"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, 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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguru"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1334,44 +1334,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistema modalo"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Jes"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1478,54 +1478,62 @@ msgstr "seria"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nova"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntu"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Bonvole, provu la muson"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Prokura servilo devus esti http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Servilo"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Surmetingo: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcioj: %s"
@@ -1615,7 +1623,7 @@ msgstr "Malplena"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Alia"
@@ -1769,7 +1777,7 @@ msgstr ""
"La rezerva subdisktabelo ne estas la sama grandeco\n"
"Ću daýras tamen?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Averto"
@@ -2331,7 +2339,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:3529
#, fuzzy
msgid "Username"
msgstr "Salutnomo"
@@ -2346,23 +2354,23 @@ msgstr "NIS Domajno"
msgid "Search servers"
msgstr "DNA servilo"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatado de %s malsukcesis"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "eraro dum malmunti %s: %s"
@@ -2448,46 +2456,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Eraro dum malfermado de %s por skribi: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN Konfiguraźo"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Pelilo"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Helpo"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Provu konfiguraźon"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Bonvole atendu"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2614,7 +2687,8 @@ msgid "/_Quit"
msgstr "Ćesu"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Helpo"
@@ -2634,76 +2708,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Raportu Cimo"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Helpo/_Pri..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Aýtomate esploru"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detektado de fiksdisko(j)"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Vidu hardvaran informon"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Montru informon"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Konfiguru muson"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Duobla surmetingo %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Bonvole atendu"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Legas datumbason de CUPS peliloj..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundoj"
@@ -3797,7 +3872,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3812,7 +3887,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3821,31 +3896,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Eraro legante dosiero %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4096,7 +4171,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Bonvenon al %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Neniu disketilo havebla"
@@ -4127,11 +4202,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Elektado de Pakaźaj Grupoj"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Elektado de individuaj pakaźoj"
@@ -4209,7 +4284,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalu"
@@ -4231,7 +4306,7 @@ msgstr "Eliru instalprogramon"
msgid "Choose the packages you want to install"
msgstr "Elektu la pakaźojn kiuj vi deziras instali"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalanta"
@@ -4259,17 +4334,17 @@ msgid "Installing package %s"
msgstr "Instalanta pakaźo %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akceptu"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Malakceptu"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4286,16 +4361,16 @@ msgstr ""
"Se vi ne havas řin, klaku \"Nuligu\" por eviti la instaladon de ći tiu KDROM."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Ću vi deziras daýri tamen?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Estis eraro ordigi pakaźojn:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Estis eraro dum instalado de pakaźoj:"
@@ -4392,7 +4467,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4470,7 +4545,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klavaro"
@@ -4678,29 +4753,29 @@ msgstr "Enţovu disketon en drajvo %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4711,16 +4786,16 @@ msgstr ""
"Se vi mankas nur iujn de la KDROM-oj, malelektu ilin, kaj poste klaku \"Jes"
"\"."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "KDROM etikedata \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Preparas instaladon"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4729,21 +4804,21 @@ msgstr ""
"Instalas pakaźo %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Post-instala konfigurado"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4810,7 +4885,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4822,159 +4897,159 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Elektu spegulon de kiu havigi la pakaźojn"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "kio estas vian horzonon?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ću via hardvara horlořo estas řustigata en GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Servilo"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Malproksima CUPS-a servilo"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Neniu printilo"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ću vi havas alian?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muso"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printilo"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-karto"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Sonkarto"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokaj dosieroj"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Difinu pasvorton de root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Neniu pasvorto"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Aýtentikigado"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Aýtentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Servilo"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Aýtentikiga NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS Domajno"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Servilo"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -4990,21 +5065,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Aýtentikiga LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domajna nomo"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5032,19 +5107,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Unua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Dua disketa drajvo"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ellasu"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5068,7 +5143,7 @@ msgstr ""
"sistemaj paneoj. Ću vi deziras krei startdisketo por via sistemo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5077,28 +5152,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Bedaýrinde, neniu disketdrajvo havebla"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Kreas startdisketon"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparas startţargilon"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5106,11 +5181,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ću vi deziras uzi aboot-on?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5118,16 +5193,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalu restart-ţargilon"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalado de startţargilo malsukcesis. La sekvanta eraro okazis:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5138,24 +5213,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Kreas aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5174,15 +5249,15 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Kreu aýtoinstalan disketon"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5191,15 +5266,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Aýtomata"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Reludu"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Elektado de individuaj pakaźoj"
@@ -5236,14 +5311,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Sekvanta ->"
@@ -5695,7 +5770,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Cirklaj surmetingoj %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5834,16 +5909,16 @@ msgstr "neniu"
msgid "No mouse"
msgstr "Neniu Muso"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Bonvole, provu la muson"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVU VIAN RADON!"
@@ -5879,11 +5954,11 @@ msgstr "Maletendu Arbon"
msgid "Toggle between flat and group sorted"
msgstr "Ţanřu inter ebena kaj ordigita je grupoj"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektu al la Interreto"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
#, fuzzy
msgid ""
"The most common way to connect with adsl is pppoe.\n"
@@ -5894,23 +5969,19 @@ msgstr ""
"Tamen, ekzistas konektojn kiuj nur uzas dhcp.\n"
"Se vi ne scias, elektu 'uzu pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "uzu dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "uzu pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "uzu pptp"
@@ -6007,7 +6078,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:362
msgid "Configuring network"
msgstr "Konfiguras reto"
@@ -6023,15 +6094,15 @@ 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:367
msgid "Host name"
msgstr "Poţtejo"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "ISDN-a Konfiguraźon"
@@ -6073,8 +6144,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Konfiguraźo de barilo detektata!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN-a Konfiguraźon"
@@ -6114,23 +6185,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Kiun protokolon vi deziras uzi?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Kiun specon de karto vi havas?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Mi ne scias"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6145,19 +6221,19 @@ msgstr ""
"Se vi havas PCMCIA-an karton, vi bezonas scii la IRQ-o kaj I/O (Eneligo)\n"
"por via karto.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Ćesigu"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Ću mi devus daýri?"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Kiu estas via ISDN-a karto?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6166,7 +6242,7 @@ msgstr ""
"elektu\n"
"unu el la PCI-aj kartojn sur la sekvanta ekrano."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Neniu ISDN-a PCI-a karto trovata. Bonvole elektu unu el la PCI-aj kartojn "
@@ -6221,59 +6297,59 @@ msgstr "Unu DNS-a Servilo (nedeviga)"
msgid "Second DNS Server (optional)"
msgstr "Du DNS-a Servilo (nedeviga)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Konektu al la Interreto / Konfiguru lokan Reton"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Kiel vi deziras konekti al la Interreto?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Malkonektu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Konfiguru retumon"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Interreta konektaźo kaj konfiguro"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6285,12 +6361,12 @@ msgid ""
"Press OK to continue."
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Reta Konfiguraźo"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6298,7 +6374,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6306,103 +6382,103 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Elektu la defaýltan uzulon:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detektas aparatojn..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy
msgid "Normal modem connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Duobla surmetingo %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN Konfiguraźo"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Reta interfaco"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Konfiguru interretan konektaźon"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN Konfiguraźo"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elektu la ilon kiun vi deziras instali"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Disdividado de Interreta Konekto"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Ću vi deziras starti vian konektaźon je startado de la sistemo?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Reta Konfiguraźo"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6410,27 +6486,27 @@ msgid ""
"%s"
msgstr "Ću vi deziras provi la konfiguraźon?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
#, fuzzy
msgid ""
"WARNING: this device has been previously configured to connect to the "
@@ -6443,7 +6519,7 @@ msgstr ""
"Simple klaki JES por teni la konfiguron de ći tiu aparato.\n"
"Se vi modifos la subajn kampojn, vi ţanřos ći tiun konfiguron."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6453,43 +6529,43 @@ msgstr ""
"Ćiu ero devus esti enigata kiel IP-adreson en punktita-decimala notacio\n"
"(ekzemple, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfiguras retan aparaton %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 pelilo: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-adreso"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Retmasko"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Aýtomata IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Kreu praţargdisketon"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6501,42 +6577,53 @@ 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:368
msgid "DNS server"
msgstr "DNA servilo"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Prokura kluzaparato"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Konfigurado de prokuraj serviloj"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP prokura servilo"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP prokura servilo"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Prokura servilo devus esti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Prokura servilo devus esti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Prokura servilo devus esti http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7934,7 +8021,7 @@ msgstr "Haltas de la reto"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8443,11 +8530,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Prokura servilo devus esti http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8495,6 +8577,43 @@ msgstr "mkraid malsukcesis (eble raidtools mankas)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ne estas sufićaj subdiskoj por RAID nivelo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Malproksimaj lpd Printilaj Opcioj"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Defaýlta)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Elektas sekurnivelon"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Preparas instaladon"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8790,7 +8909,7 @@ msgstr "Interreto"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistema modalo"
@@ -8887,7 +9006,7 @@ msgstr "Konektu al la Interreto"
#: ../../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"
msgstr ""
@@ -8934,7 +9053,7 @@ msgstr "Reta interfaco"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8959,7 +9078,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -8975,7 +9094,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8990,7 +9109,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9039,8 +9158,8 @@ 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 your 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
@@ -9077,12 +9196,12 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalanta pakaźo %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Bonvolu resaluti en %s-n por aktivigi la ţanřojn."
@@ -9129,17 +9248,6 @@ msgstr "Aldonu uzanto"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Helpo"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9192,52 +9300,67 @@ msgstr "Aldonu uzanto"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Mi konfiguras..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "LAN Konfiguraźo"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "rekonfiguru"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Enţovu disketon en drajvo %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Neniu disketilo havebla"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9361,13 +9484,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Provu pordojn"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9376,41 +9499,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne povis malfermi %s por skribi: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9421,68 +9544,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9490,923 +9613,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Eraro legante dosiero %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Elektado de Pakaźoj"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, 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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Forigu Vindozon"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Bonvole provu denove"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Neniu pasvorto"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Bonvole, elektu vian klavaran aranřon."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Bonvolu klaki sur subdiskon"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Elektu dosieron"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Reta interfaco"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Rado"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modulaj opcioj:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Bonvole, elektu la pakaźojn kiujn vi deziras instali."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Musaparato: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcioj"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Bonvole, elektu al kiu seria pordo estas via modemo konektata?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Bonvole, provu la muson"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN Konfiguraźo"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Elektu Printilan Konekton"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaýru de disketo"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Alia"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Instalu sistemon"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Bonvole, elektu la specon de via muso."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaýru de disketo"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Sava subdiskotabelo"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Poţtejo"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Pasvorto"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Salutnomo"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Poţtejo: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Akomodata"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Sava subdiskotabelo"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Antaýa"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Stato:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Restaýru de dosiero"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Bonvole, elektu lingvon por uzi."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Malbona rezerva dosiero"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Konservu en dosiero"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Reta Konfiguraźo"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfiguraźo"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfiguraźo"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Dosiersistemo konfiguro"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10438,7 +10563,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10447,7 +10572,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10488,7 +10613,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10516,17 +10641,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10543,7 +10668,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10583,7 +10708,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10594,7 +10719,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10607,7 +10732,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10689,8 +10814,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -10765,28 +10890,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "porto"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Eliru instalprogramon"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr ""
@@ -10893,11 +11018,6 @@ msgstr "Sorćisto..."
msgid "Apply"
msgstr "Apliku"
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Provu konfiguraźon"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektita"
@@ -11015,7 +11135,7 @@ msgstr "Modulonomo"
msgid "Size"
msgstr "Grandeco"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11080,12 +11200,12 @@ msgstr "Skribu"
msgid "Build the disk"
msgstr "Konstruu la diskon"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Kontrolu ke medio estas en la aparato %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11094,12 +11214,12 @@ msgstr ""
"Ne estas medio en aparato %s.\n"
"Bonvole enţovu řin."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne povis forki: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11580,155 +11700,155 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Disdividado de Interreta Konekto"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Laborgrupo"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "subdisko: %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Salutnomo"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Forigu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Finata"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Aldonu modulon"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Neniu printilo"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Malinstalu printvicon"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Akceptu uzanto"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versio: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Pordo"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Elektado de individuaj pakaźoj"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Salutnomo"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Laborgrupo"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ne konektita"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11740,137 +11860,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Startdiskokreado"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Distingivo"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Elektu agon"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Opuza nomo"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Retrokonektado"
+msgid "Preview"
+msgstr "aparato"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "aparato"
+msgid "Save theme"
+msgstr "Instalu sistemon"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Elektu ekranon"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Printilan Konekton"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Printila Aparato URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Detektas aparatojn..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12011,6 +12141,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uzado: keyboarddrake [--expert] [klavaro]\n"
@@ -12044,11 +12181,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12329,16 +12466,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12414,7 +12548,7 @@ msgstr "Instalu sistemon"
msgid "Exit install"
msgstr "Eliru instalprogramon"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12666,6 +12800,21 @@ msgstr "Plurmedia - KD-ROM Kreado"
msgid "Scientific Workstation"
msgstr "Laborstacio"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Post-instala konfigurado"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Retrokonektado"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Prokura servilo devus esti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Ćesu"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ne funkcias kun malnovaj BIOSoj)"
@@ -12759,9 +12908,6 @@ msgstr "Laborstacio"
#~ msgid "Test again"
#~ msgstr "Provu denove"
-#~ msgid "Setting security level"
-#~ msgstr "Elektas sekurnivelon"
-
#~ msgid "Select a graphics card"
#~ msgstr "Elektu grafikan karton"
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index c63c16b3f..fdd814e16 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-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -90,24 +90,24 @@ msgstr "Seadista kőik monitorid sőltumatult"
msgid "Use Xinerama extension"
msgstr "Kasuta Xinerama laiendusi"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Seadista ainult kaart \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s koos EKSPERIMENTAALSE 3D kiirendi toega"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -146,12 +146,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Isetehtud"
@@ -172,32 +172,32 @@ msgstr "Kuvatihedus"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Välju"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ msgstr "Valige kuvatihedus ja värvisügavus"
msgid "Graphics card: %s"
msgstr "Graafikakaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Katkesta"
@@ -387,11 +387,11 @@ msgstr "XFree86 server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 juhtprogramm: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X stardib nüüd"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Teie arvutis on vőimalik käivitada X juba alglaadimisel.\n"
"Kas soovite nii teha?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Millist ISDN ühendust kasutate?"
@@ -485,7 +485,7 @@ msgstr "Kompaktne"
msgid "compact"
msgstr "kompaktne"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Graafikamood"
@@ -493,17 +493,17 @@ msgstr "Graafikamood"
msgid "Delay before booting default image"
msgstr "Ooteaeg alglaadimisel"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasőna"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Salasőna (uuesti)"
@@ -537,14 +537,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Palun proovige veel"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Salasőnad ei klapi"
@@ -581,7 +581,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -589,157 +589,157 @@ msgstr ""
"Praegu on kasutusel sellised kirjed.\n"
"Te vőite neid lisada ning olemasolevaid muuta."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisa"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Tehtud"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Modifitseeri RAIDi"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Millisele sektorile soovite seda tősta?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Muu OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Muu OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Muu OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Laadefail"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Juur"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Lisada"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Ebaturvaline"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Tähis"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Vaikimisi"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd suurus"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Eemalda kirje"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tühi kirjetähis ei ole lubatud"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Teil peab olema saaleala"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Selline tähis on juba kasutusel"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Leiti %s %s liidest"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "On Teil veel kaarte?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Kas Teil on ikka mőni %s liides?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jah"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Info riistvara kohta"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installime juhtprogrammil %s kaardile %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(moodul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -750,17 +750,17 @@ msgstr ""
"Parameetrid on vormingus \"nimi=väärtus nimi2=väärtus2 ...\".\n"
"Näiteks: \"io=0x300 irq=7\""
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Mooduli parameetrid:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Millist %s juhtprogrammi peaksime proovima?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -776,15 +776,15 @@ msgstr ""
"määratleda vői lasta juhtprogrammil ise Teie arvutit kompida? Vőib juhtuda,\n"
"et see viib arvuti segadusse kuid ei tohiks mingit jäävat kahju teha."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Proovida niisama"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Määrake parameetrid"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -793,62 +793,62 @@ msgstr ""
"Moodule %s laadimine ei őnnestunud.\n"
"Kas soovite proovida parameetreid muuta?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(juba lisatud %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Salasőna on liiga lihtne"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Palun andke kasutajatunnus"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "See kasutajatunnus on juba lisatud"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Lisa kasutaja"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -857,32 +857,32 @@ msgstr ""
"Sisesta kasutaja\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Kasutaja őige"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Pärisnimi"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Kasutajatunnus"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Käsurida"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikoon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Vaikimisi sisenemine"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -891,57 +891,57 @@ msgstr ""
"Teie arvutit saab seada vaikimisi kasutaja sisenemisele.\n"
"Kui Te seda ei soovi, valige <Katkesta>"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Valige uus vaikimisi kasutaja :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Valige palun käivitatav aknahaldur:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Palun valige kasutatav keel"
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kőik"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Tavakasutaja"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS käivitatakse"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 +950,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Tere tulemast, kräkkerid"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Vähene"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Tavahiir"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Kőrge"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Kőrge"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoiline"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -995,14 +995,14 @@ msgstr ""
"haavatavaks: ligipääsupiirangute puudumise tőttu ei peaks arvutit ühendama\n"
"ei teiste arvutitega ega ka mitte Internetti."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
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:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1010,13 +1010,13 @@ msgid ""
msgstr ""
"See on sobilik turvatase arvutile, mis ühendatakse Internetti kui klient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1027,7 +1027,7 @@ msgid ""
"Internet, you should choose a lower level."
msgstr "Sellel turvatasemel vőib süsteemi kasutada Internetis ka serverina."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1036,36 +1036,36 @@ msgstr ""
"Süsteem on täielikult suletud. Vőrgust kasutamine on vőimalik ainult\n"
"spetsiaalselt loodud juurdepääsuteid kasutades."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Eelistused"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Valige turvatase"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Turvataseme seadmine"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Valige X server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1078,7 +1078,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1103,58 +1103,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Valik laetakse automaatselt %d sekundi jooksul"
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Töölaud"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Startmenüü"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kuhu soovite alglaaduri installida"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "selle kohta (veel) abi ei saa.\n"
@@ -1208,106 +1208,106 @@ msgstr "Valimisviis"
msgid "Yaboot mode"
msgstr "Alglaadimismood"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Süsteemi installimine"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Looge uus partitsioon"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Viga"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree86 %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "pintsaklips"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Valige paigaldusmeetod"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, fuzzy, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1319,23 +1319,23 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Seadista"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Salvest paketivalik"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Puu"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1344,45 +1344,45 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Töömood"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Käivita X-Windows alglaadimisel"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ei taha automaatselt siseneda"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Jah, soovin automaatset sisselogimist sellele (kasutajale, keskkonnale)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei saa lugeda faili /etc/inittab: %s"
@@ -1486,53 +1486,61 @@ msgstr "seerial"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Uus"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Ühenda"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Palun testige hiirt"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Ühenduspunkt:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Eelistused: %s"
@@ -1621,7 +1629,7 @@ msgstr "Tühi"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Muu"
@@ -1772,7 +1780,7 @@ msgstr ""
"Tabeli tagavarakoopia ei ole sama suurusega\n"
"Soovite jätkata?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Hoiatus"
@@ -2333,7 +2341,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:3529
#, fuzzy
msgid "Username"
msgstr "Kasutajatunnus"
@@ -2348,23 +2356,23 @@ msgstr "NIS domeen"
msgid "Search servers"
msgstr "Nimeserver"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s vormindamine seadmel %s ebaőnnestus"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "viga %s lahti ühendamisel: %s"
@@ -2450,46 +2458,110 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Seadme %s avamine kirjutamiseks ebaőnnestus: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN sätted"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Juhtprogramm"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Abi"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Palun oodake... Rakendan seadistusi"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Palun oodake"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2616,7 +2688,8 @@ msgid "/_Quit"
msgstr "Välju"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Abi"
@@ -2636,76 +2709,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Vearaport"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Abi/_Misvärk"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Proovida niisama"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kővaketta leidmine"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Info riistvara kohta"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Näita lisainfot"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Hiire seadmine"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "leiti port %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Palun oodake"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Loetakse CUPS juhtprogramme"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundit"
@@ -4140,7 +4214,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4155,7 +4229,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4164,20 +4238,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Üldlevi kasutamine on ilma NIS domeenita vőimatu"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Pane FAT formaadis flopi seadmesse %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "See flopi ei ole FAT formaadis"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4185,12 +4259,12 @@ msgstr ""
"Et kasutada seda paketivalikut, alustage installimist käsureaga \"linux "
"defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Viga faili %s lugemisel"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4428,7 +4502,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "See ongi %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
@@ -4458,11 +4532,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paketigruppide valik"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Valik paketthaaval"
@@ -4538,7 +4612,7 @@ msgstr "Näita automaatselt valitud pakette"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installimine"
@@ -4561,7 +4635,7 @@ msgstr "Eemaldamine"
msgid "Choose the packages you want to install"
msgstr "Valige paketid installimiseks"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installin"
@@ -4588,17 +4662,17 @@ msgid "Installing package %s"
msgstr "Paketi %s installimine"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Nőus"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Keeldun"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4613,16 +4687,16 @@ msgstr ""
"Kui teil säherdust ei ole, vajutage <Katkesta>"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Ikkagi edasi?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Pakettide tellimisel tekkis viga:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Pakettide installimisel tekkis viga:"
@@ -4747,7 +4821,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4867,7 +4941,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4944,7 +5018,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatuur"
@@ -5154,31 +5228,31 @@ msgstr "Pane flopi seadmesse %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Valige pakett installimiseks"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Oodake"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5188,16 +5262,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD pealdisega \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Valmistun installimiseks"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5206,21 +5280,21 @@ msgstr ""
"Paketi %s installimine\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Paigaldusjärgsed sätted"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5288,7 +5362,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5300,164 +5374,164 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Valige peegel, millelt lugeda pakettide nimekiri"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Proovin lugeda peeglilt pakettide nimekirja"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Millises ajavöötmes asute?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Kas Teie arvuti sisekell on seatud GMT ajale?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "CUPS printserver"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Printerit ei ole"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "On Teil veel kaarte?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kokkuvőte"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Hiir"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Ajavööde"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Helikaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kaart"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Kasuta NIS-i"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Gnome tööjaam"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Kohalik printer"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Juurkasutaja salasőna"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Salasőna puudub"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "NIS autentimine"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domeen"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS server:"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5473,22 +5547,22 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentimisviis"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeeninimi"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
#, fuzzy
msgid "Domain Admin Password"
msgstr "Salasőna uuesti"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5516,19 +5590,19 @@ msgstr ""
"Alglaadimisketta loomiseks asetage flopi esimesse seadmesse ning vajutage\n"
"\"Ok\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Esimene flopiseade"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Teine flopiseade"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Jäta vahele"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5552,7 +5626,7 @@ msgstr ""
"ka Jumal!\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5561,28 +5635,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Pane flopi seadmesse %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Loome alglaadimisketta"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5590,11 +5664,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Soovite aboot-i kasutada?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5602,16 +5676,16 @@ msgstr ""
"Viga aboot-i installimisel, \n"
"kas forseerida, riskides esimese partitsiooni hävinguga?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Alglaaduri sätted"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Alglaaduri installimine ebaőnnestus. Tekkis järgnev viga:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5628,17 +5702,17 @@ msgstr ""
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Loon kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5648,7 +5722,7 @@ msgstr ""
"\n"
"Olete kindel, et väljute programmist?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5680,15 +5754,15 @@ msgstr ""
"Abi süsteemi edasiseks konfigureerimiseks saab eelkőige dokumendist\n"
"\"Official Mandrake Linux User's Guide\""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Loo kiirpaigaldusflopi"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5701,15 +5775,15 @@ msgstr ""
"\n"
"Vőite valida ka lihtsalt installi kordamise.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automaatne"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Korda"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Salvest paketivalik"
@@ -5745,14 +5819,14 @@ msgstr "Edasijőudnud"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Tekst"
@@ -6208,7 +6282,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Ringühendus %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Eemalda enne kettarühmad (logical volumes)\n"
@@ -6346,15 +6420,15 @@ msgstr "ei soovi"
msgid "No mouse"
msgstr "Hiirt ei ole"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Palun testige hiirt"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Hiire aktiveerimiseks"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "KEERUTAGE RATTAKEST!"
@@ -6390,11 +6464,11 @@ msgstr "Sule puu"
msgid "Toggle between flat and group sorted"
msgstr "Sorteeritud vői sorteerimata"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Loo internetiühendus"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6404,23 +6478,19 @@ msgstr ""
"Mőnel juhul aga kasutatakse pptp-d, harva dhcp-d.\n"
"Kui Te ei tea, kasutage pppoe-d"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptp"
@@ -6524,7 +6594,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:362
msgid "Configuring network"
msgstr "Vőrguseadistused"
@@ -6540,15 +6610,15 @@ 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:367
msgid "Host name"
msgstr "Masinanimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Vőrgu sätete abimees"
@@ -6590,8 +6660,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Leitud tulemüüri sätted!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN sätted"
@@ -6631,23 +6701,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Mis protokolli soovite kasutada?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Mis tüüpi kaart Teil on?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ei tea"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6661,19 +6736,19 @@ msgstr ""
"Kui Teil on PCMCIA kaart, peaksite Te ise teadma selle IRQ ning IO "
"väärtusi.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Katkesta"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Jätka"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Milline on Teie ISDN kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6681,7 +6756,7 @@ msgstr ""
"Leidsin küll PCI ISDN kaardi, kui selle tüüp on tundmatu. Palun valige üks "
"PCI kaart järgmisel sammul."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "PCI ISDN kaarti ei leitud. Palun valige üks järgmisel sammul."
@@ -6733,7 +6808,7 @@ msgstr "Esimene nimeserver (soovituslik)"
msgid "Second DNS Server (optional)"
msgstr "Teine nimeserver (soovituslik)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6741,7 +6816,7 @@ msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6749,11 +6824,11 @@ msgstr ""
"\n"
"Saate seadistada ühenduse uuesti."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Hetkel olete Internetiga ühendatud."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6761,37 +6836,37 @@ msgstr ""
"\n"
"Saate ühenduda Internetti vői seadistada ühendus uuesti."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Hetkel ei ole Te Internetti ühendatud."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Ühendatud"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Lahuta..."
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Seadista TV-kaabli ühendus"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetiühenduse seadistamine"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6805,12 +6880,12 @@ msgstr ""
"\n"
"Saate ühenduse katkestada vői uuesti seadistada."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Vőrgu sätted"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6821,7 +6896,7 @@ msgstr ""
"Kui soovite neid seadistusi säilitada, valige OK, muidu katkestage ja saate "
"seadistada uuesti.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6833,99 +6908,99 @@ msgstr ""
"Nüüd hakkame internetiühendust seadistama.\n"
"Kui Te ei soovi automaatset tuvastamist siis jätke see märkimata.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Valige profiil, mida seadistada"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Kasuta automaattuvastust"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Otsin printerit..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Tavaline modemiühendus"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "leiti port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN ühendus"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "tuvastati %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "leiti liidesel %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kaabliühendus"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN ühendus"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "vőrgukaart(i) leiti üles"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Valige kasutatav vahend"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Internetiühenduse jagamine"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Kas soovite luua ühenduse juba alglaadimisel?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Vőrgusätted"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6933,7 +7008,7 @@ msgid ""
"%s"
msgstr "Kas soovite vőrguühendust taaskäivitada?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6943,7 +7018,7 @@ msgstr ""
"\n"
"Sätted salvestatakse nüüd.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6951,14 +7026,14 @@ msgstr ""
"Soovitame taaskäivitada ka X keskkonna, et vältida vőimalikke\n"
"masinanime muutmisest tingitud probleeme."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6968,7 +7043,7 @@ msgstr ""
"HOIATUS: See seade on juba seadistatud Interneti jaoks.\n"
"Valige lihtsalt OK, et sätteid mitte muuta."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6978,43 +7053,43 @@ msgstr ""
"Kőik read tuleb sisestada IP-aadressi kujul\n"
"(Näiteks 12.34.56.78)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Seadistame vőrgukaardi %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (juhtprogramm %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-aadress"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Vőrgu mask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automaatne IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Käivitub laadimisel"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7026,42 +7101,53 @@ 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:368
msgid "DNS server"
msgstr "Nimeserver"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Lüüsipoolne seade"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-aadress peab olema formaadis 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-aadress peab olema formaadis 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Vahendajate sätted"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP vahendaja"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP vahendaja"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Vahendaja peab olema kujul http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Vahendaja peab olema kujul ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Vahendaja peab olema kujul http://..."
#
#: ../../network/shorewall.pm_.c:24
@@ -8461,7 +8547,7 @@ msgstr "Seiskame vőrguliidesed"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8974,11 +9060,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Vahendaja peab olema kujul http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9028,6 +9109,43 @@ msgstr "mkraid ebaőnnestus (puudub 'raidtools'?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei ole piisavalt partitsiooni RAID-%d jaoks\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Vőrguprinteri sätted"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (vaikimisi %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Turvataseme seadmine"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Palun oodake, valmistun installimiseks"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9306,7 +9424,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Töömood"
@@ -9402,7 +9520,7 @@ msgstr "Loo internetiühendus"
#: ../../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"
msgstr ""
@@ -9449,7 +9567,7 @@ msgstr "Vőrguliides"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9474,7 +9592,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9490,7 +9608,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9505,7 +9623,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9554,8 +9672,8 @@ 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 your 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
@@ -9592,12 +9710,12 @@ msgstr ""
msgid "Installing packages..."
msgstr "Paketi %s installimine"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Muudatuste aktiveerimiseks käivitage %s uuesti"
@@ -9646,17 +9764,6 @@ msgstr "Lisa kasutaja"
msgid "Add/Del Clients"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Abi"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9709,53 +9816,68 @@ msgstr "Lisa kasutaja"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klient"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Seadista..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "ISDN sätted"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "seadista uuesti"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Pane flopi seadmesse %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Flopiseade ei ole kättesaadav"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9879,13 +10001,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Proovin porte"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9894,41 +10016,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Salasőna puudub"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Vőrgukaart %s: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9939,68 +10061,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10008,926 +10130,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Viga faili %s lugemisel"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketigruppide valik"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Eemalda Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Palun proovige veel"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Salasőna puudub"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Palun valige klaviatuuriasetus"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Palun valige partitsioon"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Valige fail"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tüüp"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Oodake"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Ratas"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Mooduli parameetrid:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
#, fuzzy
msgid "across Network"
msgstr "Vőrgu mask:"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
#, fuzzy
msgid "on Tape Device"
msgstr "Printeri seade"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Palun valige paketid installimiseks"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Hiire port: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Eelistused"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Millisesse seerialporti on Teie modem ühendatud?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Palun testige hiirt"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN ühendus"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Vali printeri ühendusviis"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Muu"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Süsteemi installimine"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Palun valige hiire tüüp"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Taasta flopilt"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Päästa partitsioonitabel"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Seadista kohtvőrk uuesti"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Masinanimi"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Salasőna"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Masinanimi: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Isetehtud"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Päästa partitsioonitabel"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Eelmine"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Olek:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Taasta failist"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Palun valige kasutatav keel"
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Kőlbmatu tagavarakoopia"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Salvesta faili"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Vőrgu sätted"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN sätted"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "ISDN sätted"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Failisüsteemid"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10959,7 +11083,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10968,7 +11092,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11009,7 +11133,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11037,17 +11161,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11064,7 +11188,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11104,7 +11228,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11115,7 +11239,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11128,7 +11252,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11210,8 +11334,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsooliprogrammid"
@@ -11288,29 +11412,29 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Välju programmist"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Seadistan uuesti abimehega..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Teisi keeli saab valida pärast installimist"
@@ -11411,10 +11535,6 @@ msgstr "Abimees..."
msgid "Apply"
msgstr "Rakenda"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Palun oodake... Rakendan seadistusi"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ühendatud"
@@ -11532,7 +11652,7 @@ msgstr "Mooduli parameetrid:"
msgid "Size"
msgstr "Suurus: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Taasta flopilt"
@@ -11606,24 +11726,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Keela vőrguühendus"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12106,158 +12226,158 @@ msgstr ""
"\n"
"Valige Abimehe käivitamiseks ``OK''"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Töögrupp"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Partitsioon %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Kasutajatunnus"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Kustuta"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Keskmine"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Tehtud"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Tavakasutaja"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Printerit ei ole"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Eemalda prindijärjekord"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Kasutaja őige"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versioon: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Kasuta automaattuvastust"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Kasuta automaattuvastust"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Salvest paketivalik"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Kasutajatunnus:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Töögrupp"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ei ole ühendatud"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12269,137 +12389,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Alglaadimise stiil"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Kuvatihedus"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Valige tegevus"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Jagatav printer"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "loopback"
+msgid "Preview"
+msgstr "seade"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "seade"
+msgid "Save theme"
+msgstr "Süsteemi installimine"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Valige monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Printeri ühendusviis"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Printeri seadme URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Otsin printerit..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12540,6 +12670,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "kasutamiseks: keyboarddrake [--expert] [keyboard]\n"
@@ -12568,11 +12705,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ei saa kiiruuendust alustada !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
#, fuzzy
msgid "logdrake"
msgstr "DrakNet"
@@ -12854,16 +12991,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12939,7 +13073,7 @@ msgstr "Süsteemi installimine"
msgid "Exit install"
msgstr "Välju programmist"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13185,6 +13319,21 @@ msgstr "Multimeedia - CD kirjutamine"
msgid "Scientific Workstation"
msgstr "Teadustööjaam"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Paigaldusjärgsed sätted"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Vahendaja peab olema kujul ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Välju"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ei tööta vanema BIOSi korral)"
@@ -13425,9 +13574,6 @@ msgstr "Teadustööjaam"
#~ msgid "Test again"
#~ msgstr "Proovi veel"
-#~ msgid "Setting security level"
-#~ msgstr "Turvataseme seadmine"
-
#~ msgid "Select a graphics card"
#~ msgstr "Valige graafikakaart"
@@ -13594,9 +13740,6 @@ msgstr "Teadustööjaam"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Mitmeselt mőistetav (%s), palun täpsustage\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (vaikimisi %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Teie valik? (vaikimisi %s, `none' - ei midagi)"
@@ -16014,3 +16157,6 @@ msgstr "Teadustööjaam"
#~ msgid "What usage do you want?"
#~ msgstr "Mis kasutusala soovite?"
+
+#~ msgid "/Help/_Report Bug"
+#~ msgstr "/Abi/_Vearaport"
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 51635cf69..4382e1101 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -6,8 +6,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-08-28 00:51+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-09 23:32+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"
@@ -91,24 +91,24 @@ msgstr "Buru guztiak independenteki konfiguratu"
msgid "Use Xinerama extension"
msgstr "Erabili Xinerama hedapena"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguratu \"%s\"%s txartela soilik"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazioarekin"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s 3D hardware-azelerazio ESPERIMENTALAREKIN"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -154,12 +154,12 @@ msgstr ""
"ekin,\n"
"KONTUAN IZAN EUSKARRI ESPERIMENTALA DELA ETA ORDENAGAILUA BLOKEA DEZAKEELA."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalazioaren bistaratze-kontrolatzailea)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Pertsonalizatua"
@@ -179,32 +179,32 @@ msgstr "Bereizmena"
msgid "Test"
msgstr "Froga"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ados"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Irten"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -301,25 +301,25 @@ msgstr "Aukeratu bereizmena eta kolorearen sakonera"
msgid "Graphics card: %s"
msgstr "Txartel grafikoa: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Utzi"
@@ -332,9 +332,8 @@ msgid "Do you want to test the configuration?"
msgstr "Konfigurazioa probatu nahi duzu?"
#: ../../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"
+msgstr "Adi: txartel grafiko hau frobatzeak zure konputagailua blokeatu dezake"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -396,11 +395,11 @@ msgstr "XFree86 zerbitzaria: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 kontrolatzailea: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X abioan"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -409,7 +408,7 @@ msgstr ""
"Ordenagailua abiatzean X automatikoki abiarazteko konfigura dezaket.\n"
"Berrabiaraztean X hastea nahi duzu?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -429,7 +428,7 @@ msgstr ""
"\n"
"Ezaugarri hau badaukazu?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Zein arau erabiltzen du zure TB?"
@@ -501,7 +500,7 @@ msgstr "Trinkoa"
msgid "compact"
msgstr "trinkotu"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Bideo modua"
@@ -509,17 +508,17 @@ msgstr "Bideo modua"
msgid "Delay before booting default image"
msgstr "Imajina lehenetsia abiarazi arteko atzerapena"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasahitza"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Pasahitza (berriro)"
@@ -554,14 +553,14 @@ msgid ""
msgstr ""
"``Murriztu komando-lerroko aukerak'' aukera ezin da erabili pasahitzik gabe"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Saiatu berriro"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Pasahitzak ez datoz bat"
@@ -603,7 +602,7 @@ msgstr ""
"\n"
"Zein da zure abioko unitatea?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -611,132 +610,132 @@ msgstr ""
"Hauek dira sarrerak.\n"
"Beste batzuk gehi ditzakezu edo lehendik daudenak aldatu."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Gehitu"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Eginda"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Aldatu"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Zer sarrera-mota gehitu nahi duzu?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Beste SE bat (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Beste SE bat (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Beste SE bat (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imajina"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Erantsi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Irakurri/idatzi"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Ez-segurua"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiketa"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Lehenetsia"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-tamaina"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "BideorikEz"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Kendu sarrera"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Ez da etiketa hutsik onartzen"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Nukleo-imajina bat zehaztu behar duzu"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Erroko partizio bat zehaztu behar duzu"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Etiketa hau jadanik erabili da"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s interfaze aurkitu dira"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Baduzu besterik?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ba duzu %s interfazerik?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ez"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Bai"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Ikus hardwarearen informazioa"
@@ -745,17 +744,17 @@ msgstr "Ikus hardwarearen informazioa"
# #msgstr "%2$s %1$s txartelaren kontrolatzailea instalatzen"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s %s txartelaren kontrolatzailea instalatzen"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(%s modulua)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -765,7 +764,7 @@ msgstr ""
"Ohartu sartzen den edozein helbide 0x aurrizkiarekin jarri behar dela, adib. "
"'0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -776,17 +775,17 @@ msgstr ""
"Aukerak ``izena=balioa izena2=balioa2 ...'' formatuan daude.\n"
"Adibidez, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulu-aukerak:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Zein %s kontrolatzaile probatu behar dut?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -805,15 +804,15 @@ msgstr ""
"blokeatuko du, baina\n"
"horrek ez luke kalterik egin beharko."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Autoproba"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Zehaztu aukerak"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -822,65 +821,63 @@ msgstr ""
"Huts egin du %s modulua kargatzean.\n"
"Beste parametro batzuekin saiatu nahi duzu berriro?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "X programen atzipena"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "rpm tresnen atzipena"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "onartu \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "administrazio-fitxategien atzipena"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "rpm tresnen atzipena"
+msgstr "sareko tresnen atzipena"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "rpm tresnen atzipena"
+msgstr "Konpilaketa tresnen atzipena"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s jadanik gehituta)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Pasahitz hau sinpleegia da"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Eman erabiltzaile-izen bat"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Erabiltzaile-izena luzeegia da"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Erabiltzaile-izen hau gehituta dago jadanik"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Gehitu erabiltzailea"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -889,32 +886,32 @@ msgstr ""
"Sartu erabiltzaile bat\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Onartu erabiltzailea"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Benetako izena"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Erabiltzaile-izena"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikonoa"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Automatikoki hasi saioa"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -922,19 +919,19 @@ msgstr ""
"Ordenagailua konfigura dezaket automatikoki erabiltzaile bat sartzeko.\n"
"Eginbide hau erabili nahi duzu?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Aukeratu erabiltzaile lehenetsia:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Aukeratu exekutatu beharreko leiho-kudeatzailea:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Aukeratu erabiltzeko hizkuntza bat."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -943,35 +940,35 @@ msgstr ""
"Instalatu ondoren erabilgarri egongo diren beste hizkuntza batzuk aukera "
"ditzakezu"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Denak"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Eman baimena erabiltzaile guztiei"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Ez konpartitu"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Derrigorrezko %s paketea falta da"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -987,11 +984,11 @@ msgstr ""
"\"Pertsonalizatua\" erabiliz erabiltzaile bakoitzarentzako ezarpena zehaztu "
"daiteke.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Abiarazi userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -1000,31 +997,31 @@ msgstr ""
"taldea erabiltzen du. Userdrake erabil dezakezu talde \n"
"honetan erabiltzeak gehitzeko."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Ongi etorri Crackers-era"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Txikia"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estandarra"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Handia"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Handiagoa"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoidea"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1034,7 +1031,7 @@ msgstr ""
"oso erraz erasotzekoa: ez da erabili behar beste ordenagailu batzuekin edo \n"
"Internetekin konektatuta dauden makinetan. Ez dago pasahitzik."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1042,7 +1039,7 @@ msgstr ""
"Pasahitzak gaituta daude orain, baina sareko ordenagailu gisa erabiltzea ez "
"da komeni oraindik."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1050,7 +1047,7 @@ msgstr ""
"Hau da Internetera bezero gisa konektatzeko erabiliko diren "
"ordenagailuentzat gomendatzen den segurtasun estandarra. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1058,7 +1055,7 @@ msgstr ""
"Murriztapen batzuk daude, eta egiaztapen automatiko gehiago gauero egiten "
"dira."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1072,7 +1069,7 @@ msgstr ""
"zerbitzari gisa erabili ahal izateko. Oharra: zure makina Interneteko bezero "
"soila bada, hobe duzu maila apalagoa."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1080,42 +1077,45 @@ msgstr ""
"Aurreko mailan oinarritua, baina sistema erabat itxita dago.\n"
"Segurtasun-eginbideak maximoan jarrita daude."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec Oinarrizko Aukerak"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Mesedez aukeratu nahi duzun segurtasun-maila"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Segurtasun-maila"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Erabili libsafe zerbitzarietarako"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Segurtasun Kudeatzailea (sarrera edo posta-e)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"Hemen aukeratu dezakezu zein tekla edo tekla konbinaziok\n"
+"egingo duen teklatu mota ezberdinen arteko konmutazioa\n"
+"(adib: latindarra eta ez latindarra)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1132,58 +1132,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Nabarmendutako sarrera automatikoki abiaraziko da %d segundotan."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Mahaigaina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Hasi menua"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "oraindik ez da laguntzarik inplementatu.\n"
@@ -1235,64 +1235,63 @@ msgstr "Lilo/grub modua"
msgid "Yaboot mode"
msgstr "Yaboot modua"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Instalatu gaiak"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Erakutsi gaia kontsolapean"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "Sortu partizio berria"
+msgstr "Gai berria sortu"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Babestu %s %s.old bezala"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Errorea"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "ezin da lilo mezuaren babes kopia egin"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopiatu %s %s-ra"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "ezin da lilo mezua aldatu"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Ez da lilo mezua aurkitzen"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Ezin da /etc/sysconfig/bootsplash idatzi."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Idatzi %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1300,17 +1299,18 @@ msgstr ""
"Ezin da /etc/sysconfig/bootsplash idatzi\n"
"Ez da fitxategia aurkitu."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
-#: ../../bootlook.pm_.c:246
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:245
+#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-msgstr "Ezin da mkinitrd -f /boot/initrd-%s.img %s jaurti."
+msgstr ""
+"Eraiki RAMdiskoa (initrd) honekin 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1318,25 +1318,24 @@ msgstr ""
"Ezin da LiLo berriro jaurti!\n"
"Jaurti \"lilo\" root bezala komando lerroan LiLo gai instalazioa osatzeko."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Berriro jaurti 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
-msgstr "BideorikEz"
+msgstr "Oharra"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "LiLo eta Bootsplash gai instalazio arrakastatsua"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Gai instalazioak hutsegin du!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1345,21 +1344,21 @@ msgstr ""
"Orain %s erabiltzen ari zara Abioko Kudeatzaile gisa.\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfiguratu"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Splash hautaketa"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Gaiak"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1373,44 +1372,44 @@ msgstr ""
"bakoitzarena banaka\n"
"hautatu dezakezu"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Lilo pantaila"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistema modua"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Abiarazi X-Window sistema hasieran"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ez, ez dut saioa automatikoki hasi nahi"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Bai, automatikoki honekin hasi nahi dut (erabiltzailea, mahaigaina)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ados"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ezin da ireki /etc/inittab irakurtzeko: %s"
@@ -1508,50 +1507,58 @@ msgstr "Austria"
msgid "United States"
msgstr "Estatu Batuak"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Berria"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Muntatu"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Zerbitzaria"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Mesedez sartu WebDAV zerbitzariaren URL"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URLak http:// edo https:// hasiera izan behar du"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Zerbitzaria: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Aukerak: %s"
@@ -1605,9 +1612,8 @@ msgid "Details"
msgstr "Xehetasunak"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr "Ez da inprimagairik aurkitu!"
+msgstr "Ez da disko zurrunik aurkitu"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1639,7 +1645,7 @@ msgstr "Hutsik"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Bestelakoa"
@@ -1783,7 +1789,7 @@ msgstr ""
"Babeskopiako partizio-taulak ez du tamaina bera\n"
"Jarraitu hala ere?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Kontuz"
@@ -2255,7 +2261,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm_.c:1150
msgid "Read-only"
-msgstr ""
+msgstr "Irakurketa-soilik"
#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
@@ -2344,7 +2350,7 @@ msgstr ""
"Mesedez sartu zure erabiltzaile-izena, pasahitza eta domeinu izena ostalari "
"honetara sartzeko."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Erabiltzaile-izena"
@@ -2359,23 +2365,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:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s(r)i formatua emateak huts egin du"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "%s partizioa %s direktorioan muntatzeak huts egin du"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "errorea %s desmuntatzean: %s"
@@ -2393,7 +2399,7 @@ msgid "server"
msgstr "zerbitzaria"
#: ../../fsedit.pm_.c:240
-#, fuzzy, c-format
+#, 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"
@@ -2402,11 +2408,11 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Ezin dut zure partizio-taula irakurri, hondatuegia dago :(\n"
+"Ezin dut %s gailuaren 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"
+"(okerra %s da)\n"
"\n"
"Ados zaude partizio guztiak galtzearekin?\n"
@@ -2462,48 +2468,110 @@ msgstr "Ez dago zer eginik"
msgid "Error opening %s for writing: %s"
msgstr "Errorea %s idazteko irekitzean: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
-msgstr ""
+msgstr "Ez dago gidari alternatiborik"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
+"Ez dago OSS/ALSA gidari alternatibo ezagunik zure soinu txartelarentzako (%s)"
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "CUPSen konfigurazioa"
+msgstr "Soinu konfigurazioa"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
+"Hemen gidari alternatibo bat hautatu dezakezu (OSS edo ALSA) zure soinu "
+"txartelarentzat (%s)"
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "Kontrolatzailea"
+msgstr "Gidaria:"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Laguntza"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Itxaron... Konfigurazioa aplikatzen"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Itxaron mesedez"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
-msgstr "X kontrolatzailea"
+msgstr "Ez dago gidari ezagunik"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgstr "Ez dago zure soinu txartelarentzako gidari ezagunik (%s)"
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr "Modelo ezezaguna"
+msgstr "Gidari ezezaguna"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2512,6 +2580,11 @@ msgid ""
"<install at mandrakesoft dot com>\n"
"with subject: unlisted sound driver \"%s\""
msgstr ""
+"Zure soinu txartelarentzako \"%s\" gidaria zerrendatu gabe dago\n"
+"\n"
+"Mesedez bidali \"lspcidrake -v\" komandoaren emaitza hona\n"
+"<install at mandrakesoft dot com>\n"
+"unlisted sound driver \"%s\" gaiarekin."
#: ../../harddrake/ui.pm_.c:16
msgid "Model"
@@ -2571,13 +2644,14 @@ msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
+"- PCI eta USB gailuak: honek saltzaile, gailu, azpi-saltzaile eta azpi-gailu "
+"PCI/USB id-ak zerrendatzen ditu"
#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
msgstr "Busean kokapena"
#: ../../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"
@@ -2588,13 +2662,12 @@ msgstr ""
"- scsi gailuak: scsi busa eta scsi gailu id-ak"
#: ../../harddrake/ui.pm_.c:32
-#, fuzzy
msgid "Old device file"
-msgstr "Gailu fitxategi zarra"
+msgstr "Gailu fitxategi zaharra"
#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "dev paketean erabiltzen den gailu estatikoaren izen zaharra"
#: ../../harddrake/ui.pm_.c:34
msgid "New devfs device"
@@ -2602,7 +2675,7 @@ msgstr "devfs gailu berria"
#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "kenelaren devfs-k sortutako gailu dinamikoaren izen berria"
#: ../../harddrake/ui.pm_.c:36
msgid "Number of buttons"
@@ -2610,23 +2683,23 @@ msgstr "Botoi kopurua"
#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
-msgstr ""
+msgstr "gailuaren saltzaile izena"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "Proba-orri alternatiboa (A4)"
+msgstr "Gidari alternatiboak"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
-msgstr ""
+msgstr "Soinu txartel honentzako gidari alternatiboen zerrenda"
#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Irten"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Laguntza"
@@ -2647,14 +2720,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Akatsa Txostendu"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Honi buruz..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Harddrakeri buruz"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2662,56 +2739,53 @@ msgstr ""
"HardDrake da hau, Mandrakeren hardware ezarpen tresna bat.\n"
"Bertsioa:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Egilea:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 bertsioa "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Detektatu hardwarea"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informazioa"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfiguratu modulua"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Exekutatu ezarpen tresna"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Detekzio martxan"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Itxaron mesedez"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Moduluaren parametro bakoitza konfiguratu dezakezu hemen."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "\"%s\" exekutatzen ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "%s klasea frogatzen\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "lehenengo mailakoa"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "bigarren mailakoa"
@@ -3267,7 +3341,6 @@ msgstr ""
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
#: ../../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"
@@ -3292,29 +3365,32 @@ msgid ""
"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"
-"eta, gonbitean, idatzi >>rescue<< (berreskuratu). Baina zure ordenagailua\n"
-"CD-ROMetik ezin bada abiarazi, urrats honetara itzuli beharko duzu\n"
-"gutxienez bi egoeratan laguntzeko:\n"
-"\n"
-" * abioko kargatzailea instalatzean, DrakXk disko nagusiko abioko sektorea\n"
-"(MBR) berridatziko du (baldin eta ez baduzu beste abioko kudeatzaile bat\n"
-"erabiltzen), Windows-ekin nahiz GNU/Linux-ekin hasi ahal izan zaitezen\n"
-"(zure sisteman Windows baduzu). Windows berrinstalatzen baduzu,\n"
+"Mandrake Linux-en CD-ROMak berreskuratze-modua dauka barnean. Hura erabili\n"
+"dezakezu CD-ROMetik abiatu, >>F1<< tekla abioan sakatu eta gonbitan "
+">>rescue<<\n"
+"idatziz. Baina zure ordenagailua CD-ROMetik abiatu ezin daitekeen kasuan, "
+"urrats\n"
+"honetara itzuli beharko zenuke laguntza bila gutxienez bi egoeratan:\n"
+"\n"
+" * abio-zamatzailea instalatzeko, DrakXek zure disko nagusiko abio-sektorea\n"
+"(MBR) berridatziko du (baldin eta ez baduzu beste abio-kudeatzaile bat\n"
+"erabiltzen), Windows nahiz GNU/Linux-ekin hasi ahal zaitezen (zure sisteman\n"
+"Windows daukazula suposatuz). Windows berrinstalatzen baduzu,\n"
"Microsoft-en instalazio-prozesuak abioko sektorea berridatziko du, eta gero\n"
"ezin izango duzu GNU/Linux abiarazi!\n"
"\n"
-" * arazoren bat sortzen bada eta GNU/Linux ezin baduzu abiarazi disko\n"
-"gogorretik, diskete hau izango da GNU/Linux abiarazteko bide bakarra.\n"
-"Sistema leheneratzeko makina bat sistema-tresna ditu, eta oso erabilgarria\n"
-"da sistemak huts egiten duenean, argindarra joan delako, idazketa-akats bat\n"
-"egin delako, pasahitzean akats tipografiko bat egin delako edo beste\n"
-"zerbait gertatu delako.\n"
+" * arazoren bat sortzen bada eta GNU/Linux disko zurrunetik abiarazi ezin "
+"baduzu,\n"
+"diskete hau izango da GNU/Linux abiarazteko bide bakarra. Sistema-tresna "
+"ugari ditu, argindarra eten, idazketa-akats tamalgarri bat, pasahitz batean "
+"akatsa, edo\n"
+"beste edozein arrazoigatik hondatu den sistema berreskuratzeko.\n"
"\n"
-"Urrats honetan klik egitean, unitatean disko bat sartzeko eskatuko zaizu.\n"
-"Diskete huts bat sartu behar duzu, edo garrantzirik gabeko datuak dituen\n"
-"bat. Ez duzu formateatu beharrik DrakXk disko osoa berridatziko baitu."
+"\"Bai\" esaten baduzu, unitatean diskete bat sartzea eskatuko zaizu. "
+"Sartuko\n"
+"duzun disketea hutsik egon behar da edo dituen datuak ez dira beharrezko "
+"izan\n"
+"behar. Ez duzu eratu beharko, DrakX-ek disko osoa gainidatziko baitu."
# DO NOT BOTHER TO MODIFY HERE, SEE:
# cvs.mandrakesoft.com:/cooker/doc/manual/literal/drakx/eu/drakx-help.xml
@@ -4658,7 +4734,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "%s ere formateatu behar duzu"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4683,7 +4759,7 @@ msgstr ""
"\n"
"Zerbitzari horiek benetan instalatu nahi dituzu?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4691,21 +4767,25 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"Ondorengo paketeak zure sistema eguneratu ahal izateko ezabatuko dira: %s\n"
+"\n"
+"\n"
+"Pakete hauek ezabatu nahi dituzu?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Ezin da difusioa erabili NIS domeinurik gabe"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Sartu FAT formatuko diskete bat %s unitatean"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Diskete honek ez du FAT formaturik"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4713,12 +4793,12 @@ msgstr ""
"Gordetako pakete-hautapen hau erabiltzeko, abiarazi instalazioa ``linux "
"defcfg=floppy''rekin"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Errorea %s fitxategia irakurtzean"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4959,7 +5039,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Ongi etorri %s(e)ra"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
@@ -4989,11 +5069,11 @@ msgstr "Instalazio-klasea"
msgid "Please choose one of the following classes of installation:"
msgstr "Aukeratu instalazio-klase hauetako bat:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Pakete-taldearen hautapena"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Pakete indibidualen hautapena"
@@ -5069,7 +5149,7 @@ msgstr "Erakutsi automatikoki hautatutako paketeak"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalatu"
@@ -5089,7 +5169,7 @@ msgstr "Gutxieneko instalazioa"
msgid "Choose the packages you want to install"
msgstr "Aukeratu instalatu nahi dituzun paketeak"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalatzen"
@@ -5116,17 +5196,17 @@ msgid "Installing package %s"
msgstr "%s paketea instalatzen"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Onartu"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Ezetsi"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5141,16 +5221,16 @@ msgstr ""
"Ez baduzu, sakatu Utzi instalazioa CDROM horretatik egin ez dezan."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Jarraitu hala ere?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Errore bat izan da paketeak ordenatzean:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Errore bat izan da paketeak instalatzean:"
@@ -5276,7 +5356,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5462,7 +5542,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:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teklatua"
@@ -5671,11 +5751,11 @@ msgstr "Sartu pakete-hautapena daukan diskete bat"
msgid "Selected size is larger than available space"
msgstr "Hautatutako tamaina handiagoa da leku erabilgarria baino"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Instalazio-mota"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5683,19 +5763,19 @@ msgstr ""
"Ez duzu talde edo paketerik hautatuta\n"
"Nahi duzun gutxieneko instalazioa hautatu behar duzu"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Xrekin"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Oinarrizko dokumentazioarekin (gomendatua)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalazio minimo-minimoa (batez ere, urpmi gabe)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5705,16 +5785,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "\"%s\" etiketadun CDROMa"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Instalazioa prestatzen"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5723,21 +5803,21 @@ msgstr ""
"%s paketea instalatzen\n"
"%% %d"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Instalazio-ondorengo konfigurazioa"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Sartu abioko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Sartu moduluak eguneratzeko disketea %s unitatean"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5811,7 +5891,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5831,159 +5911,159 @@ msgstr ""
"\n"
"Eguneratzeak instalatu nahi dituzu?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Aukeratu ispilu bat paketeak bertatik hartzeko"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Ispiluarekin kontaktatzen pakete erabilgarrien zerrenda lortzeko"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Zein da zure ordu-zona?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardwarearen ordua GMTn ezarria"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Ordu-sinkronizazio automatikoa (NTP erabiliz)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Urruneko CUPS zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Inprimagailurik ez"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ISA soinu-txartela duzu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Instalazioa egindakoan, exekutatu \"sndconfig\" soinu-txartela "
"konfiguratzeko "
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Laburpena"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Sagua"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Ordu-zona"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Inprimagailua"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN txartela"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Soinu-txartela"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Telebista-txartela"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domeinua"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Fitxategi lokalak"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ezarri root-aren pasahitza"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Pasahitzik ez"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP basea dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS Autentifikazioa"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domeinua"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS zerbitzaria"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5998,20 +6078,34 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
+"Honek W2K Domeinuko Kontrolatzaile Nagusi (PDC) batekin lanegin dezan, "
+"seguraski zure administratzaileak C:\\>net localgroup \"Pre-Windows 2000 "
+"Compatible Access\" everyone /add exekutatu beharko du eta ondoren "
+"zerbitzaria berrabiatu.\n"
+"Era berean Domeinuko Admin baten erabiltzaile-izen/pasahitza beharko dituzu "
+"makina Windows(TM) domeinura batzeko.\n"
+"Sarea oraindik gaitu gabe badago, Drakx saiatuko da domeinura batzen sareko "
+"ezarpen urratsaren ondoren.\n"
+"Ezarpen honek, edozein arrazoi medio, hutsegingo balu eta domeinu "
+"autentifikazioa ez badabil, exekutatu 'smbpasswd -j DOMEINUA -U ERABILTZAILEA"
+"%PASAHITZA' zure Windows(tm) Domeinua, eta Admin Erabiltzaile-izen/Pasahitza "
+"erabiliz, sistema abiatu ondoren.\n"
+"'wbinfo -t' komandoak autentifikazioaren sekretuak zuzenak diren frogatuko "
+"du."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "windowsen Autentifikazio Domeinua"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Domeinuaren Admin Erabiltzaile Izena"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Domeinuko Admin Pasahitza"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6042,19 +6136,19 @@ msgstr ""
"lehen\n"
"unitatean eta sakatu \"Ados\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Lehen diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Bigarren diskete-unitatea"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Saltatu"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6082,7 +6176,7 @@ msgstr ""
"Zure sistemarako abioko disko bat sortu nahi duzu?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6096,28 +6190,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ez dago diskete-unitate erabilgarririk"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Sartu diskete bat %s unitatean"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Abioko disketea sortzen"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Abioko kargatzailea prestatzen"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6129,11 +6223,11 @@ msgstr ""
"Instalazioak jarraitu egingo du, baina\n"
"BootX erabili beharko duzu makina abiarazteko"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot erabili nahi duzu?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6141,15 +6235,15 @@ msgstr ""
"Errorea aboot instalatzean, \n"
"instalazioa ezartzen saiatu lehen partizioa suntsitzen badu ere?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Abioko kargatzailea instalatzen"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6167,17 +6261,17 @@ msgstr ""
" Gero, idatzi: shut-down\n"
"Hurrengo abiaraztean abioko kargatzailearen gonbita ikusi behar duzu."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Auto-instalazioko disketea sortzen..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6187,7 +6281,7 @@ msgstr ""
"\n"
"Ziur zaude orain irten nahi duzula?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6220,15 +6314,15 @@ msgstr ""
"Zure sistema konfiguratzeko informazioa Mandrake-ren Erabiltzailearen \n"
"Gida Ofizialeko instalatu ondorengo azalpenei buruzko kapituluan duzu."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Sortu auto-instalazioko disketea"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6242,15 +6336,15 @@ msgstr ""
"\n"
"Beharbada nahiago izango duzu instalazioa errepikatzea.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizatua"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Errepikatu"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Gorde pakete-hautapena"
@@ -6286,14 +6380,14 @@ msgstr "Aurreratua"
msgid "Basic"
msgstr "Oinarrizkoa"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Hurrengoa"
@@ -6439,21 +6533,20 @@ msgid "Belgian"
msgstr "belgikarra"
#: ../../keyboard.pm_.c:177
-#, fuzzy
msgid "Bengali"
-msgstr "gaitu"
+msgstr "Bengaliarra"
#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
-msgstr "bulgariarra (fonetikoa)"
+msgstr "Bulgariarra (fonetikoa)"
#: ../../keyboard.pm_.c:179
msgid "Bulgarian (BDS)"
-msgstr "bulgariarra (BDS)"
+msgstr "Bulgariarra (BDS)"
#: ../../keyboard.pm_.c:180
msgid "Brazilian (ABNT-2)"
-msgstr "brasildarra (ABNT-2)"
+msgstr "Brasildarra (ABNT-2)"
#: ../../keyboard.pm_.c:183
msgid "Bosnian"
@@ -6461,35 +6554,35 @@ msgstr "Bosniarra"
#: ../../keyboard.pm_.c:184
msgid "Belarusian"
-msgstr "bielorrusiarra"
+msgstr "Bielorrusiarra"
#: ../../keyboard.pm_.c:185
msgid "Swiss (German layout)"
-msgstr "suitzarra (diseinu alemana)"
+msgstr "Suitzarra (diseinu alemana)"
#: ../../keyboard.pm_.c:186
msgid "Swiss (French layout)"
-msgstr "suitzarra (diseinu frantsesa)"
+msgstr "Suitzarra (diseinu frantsesa)"
#: ../../keyboard.pm_.c:188
msgid "Czech (QWERTY)"
-msgstr "txekiarra (QWERTY)"
+msgstr "Txekiarra (QWERTY)"
#: ../../keyboard.pm_.c:190
msgid "German (no dead keys)"
-msgstr "alemana (letra zaharkiturik ez)"
+msgstr "Alemana (letra zaharkiturik ez)"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
#: ../../keyboard.pm_.c:192
msgid "Danish"
-msgstr "daniarra"
+msgstr "Daniarra"
#: ../../keyboard.pm_.c:193
msgid "Dvorak (US)"
-msgstr "Dvorak (Estatu Batuak)"
+msgstr "Dvorak (AEB)"
#: ../../keyboard.pm_.c:194
msgid "Dvorak (Norwegian)"
@@ -6501,63 +6594,63 @@ msgstr "Dvorak (suediarra)"
#: ../../keyboard.pm_.c:196
msgid "Estonian"
-msgstr "estoniarra"
+msgstr "Estoniarra"
#: ../../keyboard.pm_.c:200
msgid "Georgian (\"Russian\" layout)"
-msgstr "georgiarra (diseinu \"errusiarra\")"
+msgstr "Georgiarra (diseinu \"errusiarra\")"
#: ../../keyboard.pm_.c:201
msgid "Georgian (\"Latin\" layout)"
-msgstr "georgiarra (diseinu \"latinoa\")"
+msgstr "Georgiarra (diseinu \"latinoa\")"
#: ../../keyboard.pm_.c:202
msgid "Greek"
-msgstr "grekoa"
+msgstr "Grekoa"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujaratera"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
-msgstr "hungariarra"
+msgstr "Hungariarra"
#: ../../keyboard.pm_.c:206
msgid "Croatian"
-msgstr "kroaziarra"
+msgstr "Kroaziarra"
#: ../../keyboard.pm_.c:207
msgid "Israeli"
-msgstr "israeldarra"
+msgstr "Israeldarra"
#: ../../keyboard.pm_.c:208
msgid "Israeli (Phonetic)"
-msgstr "israeldarra (fonetikoa)"
+msgstr "Israeldarra (fonetikoa)"
#: ../../keyboard.pm_.c:209
msgid "Iranian"
-msgstr "iraniarra"
+msgstr "Iraniarra"
#: ../../keyboard.pm_.c:210
msgid "Icelandic"
-msgstr "islandiarra"
+msgstr "Islandiarra"
#: ../../keyboard.pm_.c:211
msgid "Italian"
-msgstr "italiarra"
+msgstr "Italiarra"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
-msgstr "japoniarra 106 tekla"
+msgstr "Japoniarra 106 tekla"
#: ../../keyboard.pm_.c:216
msgid "Korean keyboard"
@@ -6565,11 +6658,11 @@ msgstr "Koreako teklatua"
#: ../../keyboard.pm_.c:217
msgid "Latin American"
-msgstr "latinamerikarra"
+msgstr "Latinamerikarra"
#: ../../keyboard.pm_.c:218
msgid "Laotian"
-msgstr "letoniarra"
+msgstr "Laostarra"
#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
@@ -6589,15 +6682,15 @@ msgstr "Lituaniako QWERTY \"fonetikoa\""
#: ../../keyboard.pm_.c:224
msgid "Latvian"
-msgstr "letoniarra"
+msgstr "Letoniarra"
#: ../../keyboard.pm_.c:225
msgid "Macedonian"
-msgstr "mazedoniarra"
+msgstr "Mazedoniarra"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanma (Birmaniarra)"
#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
@@ -6605,67 +6698,67 @@ msgstr "Mongoliarra (zirilikoa)"
#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Maltatarra (Erresuma Batua)"
#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Maltatarra (AEB)"
#: ../../keyboard.pm_.c:230
msgid "Dutch"
-msgstr "holandarra"
+msgstr "Holandarra"
#: ../../keyboard.pm_.c:232
msgid "Polish (qwerty layout)"
-msgstr "poloniarra (qwerty diseinua)"
+msgstr "Poloniarra (qwerty diseinua)"
#: ../../keyboard.pm_.c:233
msgid "Polish (qwertz layout)"
-msgstr "poloniarra (qwertz diseinua)"
+msgstr "Poloniarra (qwertz diseinua)"
#: ../../keyboard.pm_.c:234
msgid "Portuguese"
-msgstr "portugesa"
+msgstr "Portugesa"
#: ../../keyboard.pm_.c:235
msgid "Canadian (Quebec)"
-msgstr "kanadarra (Quebec)"
+msgstr "Kanadarra (Quebec)"
#: ../../keyboard.pm_.c:237
msgid "Romanian (qwertz)"
-msgstr "errumaniarra (qwertz)"
+msgstr "Errumaniarra (qwertz)"
#: ../../keyboard.pm_.c:238
msgid "Romanian (qwerty)"
-msgstr "errumaniarra (qwerty)"
+msgstr "Errumaniarra (qwerty)"
#: ../../keyboard.pm_.c:240
msgid "Russian (Yawerty)"
-msgstr "errusiarra (Yawerty)"
+msgstr "Errusiarra (Yawerty)"
#: ../../keyboard.pm_.c:242
msgid "Slovenian"
-msgstr "esloveniarra"
+msgstr "Esloveniarra"
#: ../../keyboard.pm_.c:243
msgid "Slovakian (QWERTZ)"
-msgstr "eslovakiarra (QWERTZ)"
+msgstr "Eslovakiarra (QWERTZ)"
#: ../../keyboard.pm_.c:244
msgid "Slovakian (QWERTY)"
-msgstr "eslovakiarra (QWERTY)"
+msgstr "Eslovakiarra (QWERTY)"
#: ../../keyboard.pm_.c:246
msgid "Serbian (cyrillic)"
-msgstr "serbiarra (zirilikoa)"
+msgstr "Serbiarra (zirilikoa)"
#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
-msgstr "tamila (Unicode)"
+msgstr "Tamila (Unicode)"
#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
-msgstr "tamila (TSCII)"
+msgstr "Tamila (TSCII)"
#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
@@ -6677,27 +6770,27 @@ msgstr "Tajikistango teklatua"
#: ../../keyboard.pm_.c:253
msgid "Turkish (traditional \"F\" model)"
-msgstr "turkiarra (tradizionala \"F\" modeloa)"
+msgstr "Turkiarra (tradizionala \"F\" eredua)"
#: ../../keyboard.pm_.c:254
msgid "Turkish (modern \"Q\" model)"
-msgstr "turkiarra (modernoa \"Q\" modeloa)"
+msgstr "Turkiarra (modernoa \"Q\" eredua)"
#: ../../keyboard.pm_.c:256
msgid "Ukrainian"
-msgstr "ukrainarra"
+msgstr "Ukrainarra"
#: ../../keyboard.pm_.c:259
msgid "US keyboard (international)"
-msgstr "Estatu Batuetako teklatua (nazioartekoa)"
+msgstr "AEBetako teklatua (nazioartekoa)"
#: ../../keyboard.pm_.c:260
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "vietnamdarra QWERTY \"ilara numerikoa\""
+msgstr "Vietnamdarra QWERTY \"ilara numerikoa\""
#: ../../keyboard.pm_.c:261
msgid "Yugoslavian (latin)"
-msgstr "jugoslaviarra (latinoa)"
+msgstr "Jugoslaviarra (latindarra)"
#: ../../keyboard.pm_.c:268
msgid "Right Alt key"
@@ -6740,7 +6833,7 @@ msgstr "Eskuineko \"Windows\" tekla"
msgid "Circular mounts %s\n"
msgstr "%s muntaketa zirkularrak\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Kendu bolumen logikoak lehendabizi\n"
@@ -6800,13 +6893,12 @@ msgid "Genius NetScroll"
msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+msgstr "Microsoft Explorer"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
-msgstr "1 botoi"
+msgstr "Botoi 1"
#: ../../mouse.pm_.c:45 ../../mouse.pm_.c:53
msgid "Generic 2 Button Mouse"
@@ -6876,22 +6968,21 @@ msgstr "bat ere ez"
msgid "No mouse"
msgstr "Sagurik gabe"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Probatu sagua"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Sagua aktibatzeko,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MUGITU GURPILA!"
#: ../../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-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
#: ../../my_gtk.pm_.c:159
msgid "Finish"
@@ -6921,11 +7012,11 @@ msgstr "Tolestu zuhaitza"
msgid "Toggle between flat and group sorted"
msgstr "Txandakatu alfabetikoaren eta taldeka ordenatuaren artean"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Konektatu Internetekin"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6935,53 +7026,43 @@ msgstr ""
"Konexio batzuek pptp erabiltzen dute, bakan batzuek dhcp.\n"
"Ez badakizu, aukeratu 'erabili pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "erabili dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "erabili pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "erabili pptp"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr "Zerbitzaria"
+msgstr "Web Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "Domeinu-izena:"
+msgstr "Domeinuko Izen Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "Gaitu Zerbitzaria"
+msgstr "Posta Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "LDAP Zerbitzaria"
+msgstr "POP eta IMAP Zerbitzaria"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
-msgstr "ez da sare-txartelik aurkitu"
+msgstr "Ez dago sare-txartelik"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6989,15 +7070,15 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"tinyfirewall konfiguratzailea\n"
+"drakfirewall konfiguratzailea\n"
"\n"
-"Mandrake Linux makina honetarako suebaki pertsonala konfiguratzen du.\n"
-"Suebaki ahaltsuagoa nahi baduzu, begiratu MandrakeSecurity Firewall \n"
-"banaketa espezializatua."
+"Honek Mandrake Linux makina honentzako suhesi pertsonala konfiguratzen du.\n"
+"Suhesi izatera zuzendutako soluzio ahaltsua nahi baduzu, mesedez begiratu\n"
+"MandrakeSecurity Firewall banaketa espezializatua."
#: ../../network/drakfirewall.pm_.c:147
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "Zein zerbitzuetara konektatzen utzi nahi duzu Internetetik?"
#: ../../network/drakfirewall.pm_.c:148
msgid ""
@@ -7005,6 +7086,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"Beste portu batzu sartu ditzakezu.\n"
+"Adibide onargarriak dira: 139/tcp 139/udp.\n"
+"Begiratu /etc/services informazioa jasotzeko."
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -7013,15 +7097,17 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"Portu onartezina: %s.\n"
+"Formatu egokiak \"portua/tcp\" edo \"portu/udp\" dira,\n"
+"non portua 1 eta 65535 artean dagoen."
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "Guztia (suhesirik gabe)"
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "Probatu atakak"
+msgstr "Beste portu batzu"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -7053,7 +7139,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:362
msgid "Configuring network"
msgstr "Sarea konfiguratzen"
@@ -7069,15 +7155,15 @@ 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:367
msgid "Host name"
msgstr "Ostalari-izena"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Sarea konfiguratzeko morroia"
@@ -7124,8 +7210,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Konfigurazio zaharra (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN konfigurazioa"
@@ -7161,23 +7247,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Zein protokolo erabili nahi duzu?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Nolako txartela duzu?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ez dakit"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7190,19 +7281,19 @@ msgstr ""
"\n"
"PCMCIA txartela baduzu, txartelaren irq eta io jakin behar dituzu.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abortatu"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Jarraitu"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Zein da zure ISDN txartela?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7210,7 +7301,7 @@ msgstr ""
"ISDN PCI txartel bat detektatu dut, baina ez dakit zein motatakoa den. "
"Hautatu PCI txartel bat hurrengo pantailan."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ez da ISDN PCI txartelik aurkitu. Hautatu bat hurrengo pantailan."
@@ -7262,7 +7353,7 @@ msgstr "Lehen DNS zerbitzaria (aukerakoa)"
msgid "Second DNS Server (optional)"
msgstr "Bigarren DNS zerbitzaria (aukerakoa)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7270,7 +7361,7 @@ msgstr ""
"\n"
"Deskonektatu egin zaitezke edo konexioa birkonfiguratu."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7278,11 +7369,11 @@ msgstr ""
"\n"
"Konexioa birkonfigura dezakezu."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Orain Internetekin konektatuta zaude."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7290,32 +7381,32 @@ msgstr ""
"\n"
"Internetekin konekta zaitezke, edo konexioa birkonfiguratu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Orain ez zaude Internetekin konektatuta."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Konektatu"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Deskonektatu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Konfiguratu konexioa"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Interneteko konexioa eta konfigurazioa"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "%s konexioa konfiguratuko dugu orain."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7334,12 +7425,12 @@ msgstr ""
"\n"
"Jarraitzeko, sakatu Ados."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Sare-konfigurazioa"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7350,7 +7441,7 @@ msgstr ""
"Hautatu Ados zure konfigurazioa mantentzeko, edo hautatu Utzi Internet eta "
"Sare-konexioa birkonfiguratzeko.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7362,72 +7453,72 @@ msgstr ""
"Zure Internet/sare-konexioa konfiguratzera goaz.\n"
"Ez baduzu auto-detekzioa erabili nahi, desautatu kontrol-laukia.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Aukeratu konfiguratzeko profila"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Erabili auto-detekzioa"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Gailuak detektatzen..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Modem-konexio normala"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s atakan detektatua"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN konexioa"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s detektatua"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL konexioa"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "%s interfazean detektatua"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kable-konexioa"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "kable bidezko konexioa detektatu da"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Sare lokaleko konexioa (LAN)"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet txartela(k) detektatuta"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Aukeratu konfiguratu nahi duzun konexioa"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7437,23 +7528,23 @@ msgstr ""
"Aukeratu erabili nahi duzuna.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Interneteko konexioa"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Abioan hasi nahi duzu konexioa?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Sare-konfigurazioa"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Sarea berrabiarazi egin behar da"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7464,7 +7555,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7474,7 +7565,7 @@ msgstr ""
"\n"
"Konfigurazioa zure sistemari aplikatuko zaio orain.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7482,7 +7573,7 @@ msgstr ""
"Ondoren, zure X ingurunea berrabiaraztea gomendatzen dugu,\n"
"ostalari-izena aldatzearen arazoa saihesteko."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7492,7 +7583,7 @@ msgstr ""
"Probatu konexioa net_monitor edo mcc bidez. Konexioak funtzionatzen ez badu, "
"konfigurazioa berrabiarazi beharko duzu"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7503,7 +7594,7 @@ msgstr ""
"Gailu hau konfiguratuta mantentzeko, onartu, besterik gabe.\n"
"Ondoko eremuak aldatzen badituzu konfigurazio hau gainidatziko da."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7513,42 +7604,42 @@ msgstr ""
"Elementu bakoitza IP helbide gisa sartu behar da puntuz\n"
"bereizitako zenbakizko notazioan (adibidez, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Sareko %s gailua konfiguratzen"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (%s kontrolatzailea)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP helbidea"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Sare-maskara"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automatikoa"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Abioan abiaraztekoa"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7560,42 +7651,52 @@ 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:368
msgid "DNS server"
msgstr "DNS zerbitzaria"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Atebidea (adib. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Atebide-gailua"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP helbideak 1.2.3.4 formatua izan behar du"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxy-en konfigurazioa"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy-a"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy-a"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Sare-txartelaren identifikazioa (eramangarrientzat baliagarria)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy-ak http://... izan behar du"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ak ftp://... izan behar du"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URLaren hasieran 'ftp:' edo 'http:' egon behar da"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7964,6 +8065,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:36
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
+"Inprimagailu auto-detekzioa (Bertakoa, TCP/Socket, eta SMB inprimagailuak)"
#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
@@ -8047,34 +8149,37 @@ msgid "Printerdrake"
msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "Inprimatze-sistema berrabiarazten ..."
+msgstr "Zure sistema egiaztatzen..."
#: ../../printerdrake.pm_.c:186
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "Ez dira inprimagailurik aurkitu zure makinara zuzenean lotuta"
#: ../../printerdrake.pm_.c:198
-#, fuzzy
msgid ""
"The following printers\n"
"\n"
-msgstr "Ondorengo pakete hauek kenduko dira"
+msgstr ""
+"Ondorengo inprimagailuak\n"
+"\n"
#: ../../printerdrake.pm_.c:199
-#, fuzzy
msgid ""
"The following printer\n"
"\n"
-msgstr "Ondorengo pakete hauek kenduko dira"
+msgstr ""
+"Ondorengo inprimagailua\n"
+"\n"
#: ../../printerdrake.pm_.c:201
msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"eta inprimagailu ezezagun bat dago "
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -8082,29 +8187,36 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+"eta %d inprimagailu ezezagun daude "
#: ../../printerdrake.pm_.c:207
msgid ""
"\n"
"are "
msgstr ""
+"\n"
+"daude "
#: ../../printerdrake.pm_.c:208
msgid ""
"\n"
"is "
msgstr ""
+"\n"
+"dago "
#: ../../printerdrake.pm_.c:210
-#, fuzzy
msgid "directly connected to your system"
-msgstr "Kopiatu zure sistemako letra-tipoak"
+msgstr "zure sistemara zuzenean lotuta"
#: ../../printerdrake.pm_.c:213
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"Inprimagailu ezezagun bat dago zure sistemara zuzenean lotuta"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -8112,33 +8224,32 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"%d inprimagailu ezezagun daude zure sistemara zuzenean lotuta"
#: ../../printerdrake.pm_.c:221
-#, fuzzy
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "Aukeratu inprimagailua konektatuta dagoen ataka."
+msgstr " (Ziurtatu zure inprimagailu guztiak lotuta eta piztuta daudela).\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 ""
+"Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan edo bertako "
+"sarean dauden inprimagailuetan?\n"
#: ../../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?"
+msgstr "Inprimaketa gaitu nahi duzu bertako sarean dauden inprimagailuetan?\n"
#: ../../printerdrake.pm_.c:238
-#, fuzzy
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "Abioan hasi nahi duzu konexioa?"
+msgstr "Inprimaketa gaitu nahi duzu goian aipatutako inprimagailuetan?\n"
#: ../../printerdrake.pm_.c:239
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "Ziur zaude makina honetan inprimaketa ezarri nahi duzula?\n"
#: ../../printerdrake.pm_.c:240
#, c-format
@@ -8146,6 +8257,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"OHARRA: Inprimagailu eredua eta inprimaketa sistemaren arabera %d MB-etik "
+"gora software gehigarri instalatuko da."
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -8196,6 +8309,24 @@ 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"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k), sarera "
+"zuzenean lotutakoa(k) edo Windows makina batera loturikoa(k) instalatzen "
+"lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen. Berdina sareko inprimagailu eta "
+"Windows makinetara lotutako inprimagailuekin ere.\n"
+"\n"
+"Ohartu sarera lotutako inprimagailuen auto-detekzioak denbora gehiago behar "
+"duela makina honetara lotuta dauden inprimagailuak bakarrik auto-"
+"detektatzeko baino. Beraz ezabatu sareko eta/edo windows-ostalari "
+"inprimagailuen auto-detekzioa behar ez dituzunean.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
msgid ""
@@ -8211,6 +8342,17 @@ 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"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k) "
+"instalatzen lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
#: ../../printerdrake.pm_.c:297
msgid ""
@@ -8231,19 +8373,37 @@ 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"
+"Ongi etorri Inprimagailu Ezarpen Morroira\n"
+"\n"
+"Morroi honek zure konputagailu honetara lotutako inprimagailua(k) edo sarera "
+"zuzenean lotutakoa(k) instalatzen lagunduko dizu.\n"
+"\n"
+"Makina honetara lotutako inprimagailuak badituzu, mesedez entxufatu eta "
+"piztu itzazu auto-detektatuak izan daitezen. Berdina sareko inprimagailuekin "
+"ere.\n"
+"\n"
+"Ohartu sarera lotutako inprimagailuen auto-detekzioak denbora gehiago behar "
+"duela makina honetara lotuta dauden inprimagailuak bakarrik auto-"
+"detektatzeko baino. Beraz ezabatu sareko inprimagailuen auto-detekzioa behar "
+"ez duzunean.\n"
+"\n"
+" Klikatu \"Hurrengoa\" prest zaudenean, eta \"Etsi\" zure inprimagailua "
+"orain ezarri nahi ez duzunean."
#: ../../printerdrake.pm_.c:315
-#, fuzzy
msgid "Auto-detect printers connected to this machine"
-msgstr "Automatikoki detektatu inprimagailuak"
+msgstr "Auto-detektatu makina honetara lotutako inprimagailuak"
#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+msgstr "Auto-detektatu bertako sarera zuzenean lotutako inprimagailuak"
#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
+"Auto-detektatu Microsoft Windows darabilten makinetara lotutako "
+"inprimagailuak"
#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
#: ../../printerdrake.pm_.c:587
@@ -8275,9 +8435,8 @@ msgstr ""
#: ../../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"
+msgstr "Inprimagailuen auto-detekzioa"
#: ../../printerdrake.pm_.c:408
#, c-format
@@ -8444,9 +8603,8 @@ msgid "Detected model: %s %s"
msgstr "Detektatutako eredua: %s %s"
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Scanning network..."
-msgstr "Sarea abiarazten ..."
+msgstr "Sarean bilatzen..."
#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
@@ -8480,6 +8638,8 @@ 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 ""
+" Nahi zenuen inprimagailua auto-detektatu bada, hautatu ezazu zerrendatik "
+"eta gehitu erabiltzaile-izena, pasahitza, eta/edo lantaldea beharrezko bada."
#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
@@ -8498,9 +8658,8 @@ msgid "Workgroup"
msgstr "Lantaldea"
#: ../../printerdrake.pm_.c:853
-#, fuzzy
msgid "Auto-detected"
-msgstr "Auto-detektatu"
+msgstr "Auto-detektatuta"
#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
@@ -8634,19 +8793,22 @@ 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 ""
+"Aukeratu auto-detektatutako inprimagailuetako bat zerrendatik edo sartu "
+"ostalari-izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) "
+"eremuetan."
#: ../../printerdrake.pm_.c:1085
-#, fuzzy
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 ""
-"Socket inprimagailuan inprimatzeko, inprimagailuaren ostalari-izena\n"
-"eman behar duzu eta, nahi baduzu, ataka-zenbakia. HP JetDirect "
-"zerbitzarietan ataka-zenbakia normalki 9100 izaten da, beste zerbitzari "
-"batzuetan aldatu egin daiteke. Begiratu zure hardwarearen eskuliburuan."
+"TCP edo Socket inprimagailu batera inprimatzeko, inprimagailuaren ostalari-"
+"izena edo IP eta, nahi baduzu, portu zenbakia (jatorrian 9100 da) eman behar "
+"dituzu. HP HP JetDirect zerbitzarietan portu-zenbakia normalki 9100 izaten "
+"da, beste zerbitzari batzuetan aldatu egin daiteke. Begiratu zure "
+"hardwarearen eskuliburuan."
#: ../../printerdrake.pm_.c:1090
msgid "Printer host name or IP missing!"
@@ -8806,7 +8968,6 @@ msgstr ""
"ezazu konektatuta dagoen makinan."
#: ../../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."
@@ -8817,20 +8978,19 @@ msgid ""
"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 "
-"(http://www.lexmark.com/). Joan Estatu Batuetako gunera eta egin klik "
-"\"Drivers\" botoian. Gero aukeratu modeloa eta ondoren \"Linux\" sistema "
-"eragile gisa. Kontrolatzaileak RPM pakete gisa edo instalazio grafiko "
+"Lexmark inkjet eta konfigurazio honekin inprimatu ahal izateko, Lexmark-ek "
+"emandako inkjet inprimagailu-gidariak behar dituzu (http://www.lexmark."
+"com/). Klikatu \"Drivers\" estekan. Gero aukeratu eredua eta ondoren \"Linux"
+"\" sistema eragile gisa. Gidariak RPM pakete gisa edo instalazio grafiko "
"interaktiboa duten shell script gisa egoten dira. Ez da beharrezkoa "
-"konfigurazio hau interfaze grafikoen bidez egitea. Ezeztatu zuzenean "
+"konfigurazio hau bitarteko grafikoen bidez egitea. Ezeztatu zuzenean "
"lizentzia-kontratuaren ondoren. Gero inprimatu inprimatze-burua lerrokatzeko "
"orriak \"lexmarkmaintain\"ekin eta doitu burua lerrokatzeko ezarpenak "
"programa honekin."
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "GDI Laser Inprimagailua Zenographics ZJ-Stream Formatua erabiliz"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8854,6 +9014,24 @@ msgid ""
"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 ""
+"Zure inprimagailua ekoizle desberdinek saltzen dituzten GDI laser "
+"inprimagailuen (winprinters) taldekoa da, Zenographics ZJ-stream raster "
+"formatua erabiltzen dute datuak inprimagailura bidaltzeko. Inprimagailu "
+"hauentzako gidaria hasierako garapen egoeran dago eta horregatik baliteke "
+"beti behar bezala ez ibiltzea. Bereziki posible da inprimagailuak A4 paper "
+"neurria aukeratzen duzunean bakarrik lanegitea.\n"
+"\n"
+"Inprimagailu hauetako batzuei, HP LaserJet 1000 esaterako, jatorrian gidaria "
+"beretzako sortu zen, pizterakoan beraien firmwarerra zamatu behar zaie. HP "
+"LaserJet 1000-ren kasuan inprimagailuaren Windows gidari CDa edo zure "
+"Windows partizioa behatu behar duzu \"sihp1000.img\" fitxategiaren bila eta "
+"inprimagailuari zamatu behar diozu ondorengo komandoetako batekin:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"Lehenengo komandoa edozein erabiltzaile arruntak eman dezake, bigarrena root "
+"bezala eman behar da. Hori egin ondoren normaltasunez inprimatu dezakezu.\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -9014,14 +9192,14 @@ msgstr ""
"<fitxategia>\". "
#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
-#, fuzzy, c-format
+#, 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 ""
"Uneko inprimagailuak dituen aukerak ezagutzeko, irakurri ondoko zerrenda edo "
-"egin klik \"Inprimatzeko aukeren zerrenda\" botoian.%s\n"
+"egin klik \"Inprimatu aukeren zerrenda\" botoian.%s%s\n"
"\n"
#: ../../printerdrake.pm_.c:2300
@@ -9109,9 +9287,9 @@ msgid "Printing/Scanning on \"%s\""
msgstr "\"%s\": inprimatzen/eskaneatzen"
#: ../../printerdrake.pm_.c:2346
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "\"%s\": inprimatzen/eskaneatzen"
+msgstr "Inprimaketa/Argazki Txartelen Sarrera \"%s\"-n"
#: ../../printerdrake.pm_.c:2347
#, c-format
@@ -9121,7 +9299,7 @@ msgstr "\"%s\" inprimagailuan inprimatzen"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9132,7 +9310,7 @@ msgid "Print option list"
msgstr "Inprimatzeko aukeren zerrenda"
#: ../../printerdrake.pm_.c:2373
-#, fuzzy, c-format
+#, 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 "
@@ -9144,13 +9322,12 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
-"Funtzio anitzeko HP gailua automatikoki konfiguratuta dago eskaneatzeko. "
-"Orain \"scanimage\"rekin eskanea dezakezu (\"scanimage -d hp:%s\" eskanerra "
-"zehazteko, bat baino gehiago badituzu) komando-lerrotik edo \"xscanimage\" "
-"edo \"xsane\" interfaze grafikoekin. GIMP erabiltzen baduzu, \"File\"/"
-"\"Acquire\" menuko puntu egokiaren bidez ere eskanea dezakezu. Informazio "
-"gehiago nahi baduzu, idatzi \"man scanimage\" eta \"man sane-hp\" komando-"
-"lerroan.\n"
+"Zure funtzio-anitzeko gailua automatikoki konfiguratu zen eskaneatu ahal "
+"izateko. Orain \"scanimage\"rekin eskanea dezakezu (\"scanimage -d hp:%s\" "
+"eskanerra zehazteko, bat baino gehiago badituzu) komando-lerrotik edo "
+"\"xscanimage\" edo \"xsane\" interfaze grafikoekin. GIMP erabiltzen baduzu, "
+"\"File\"/\"Acquire\" menuko puntu egokiaren bidez ere eskanea dezakezu. "
+"Informazio gehiago nahi baduzu, deitu \"man scanimage\" komando-lerroan.\n"
"\n"
"Ez erabili \"scannerdrake\" gailu honekin!"
@@ -9166,6 +9343,16 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"Zure inprimagailua automatikoki konfiguratu zen zure PC-tik argazki txartel "
+"unitateetara sarrera emateko. Orain \"MtoolsFM\" programa grafikoa erabiliz "
+"(Menua: \"Aplikazioak\" -> \"Fitxategi tresnak\" -> \"MTools Fitxategi "
+"Kudeatzailea\") edo \"mtools\" komando lerroko utilitatea erabiliz (sartu "
+"\"man mtools\" komando lerroan informazio gehiago jasotzeko) zure argazki "
+"txartelak atzitu ditzakezu. Txartelaren fitxategi-sistema \"p:\" unitate "
+"hizkipean aurkituko duzu, edo ondorengo hizkietan argazki txartela duten HP "
+"inprimagailu bat baino gehiago baduzu. \"MtoolsFM\" tresnan unitate hizki "
+"artean mugitu zaitezke fitxategi-zerrenden goi-eskuin ertzetan dagoen eremua "
+"erabiliz."
#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
#: ../../printerdrake.pm_.c:3170
@@ -9459,9 +9646,8 @@ msgid "Printer options"
msgstr "Inprimagailuaren aukerak"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
-msgstr "PrinterDrake prestatzen..."
+msgstr "Printerdrake prestatzen..."
#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
@@ -9684,10 +9870,6 @@ msgstr ""
"Bete ftp proxy-aren datuak\n"
"Utzi hutsik ez baduzu ftp proxy-rik nahi"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URLaren hasieran 'ftp:' edo 'http:' egon behar da"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9735,6 +9917,41 @@ msgstr "mkraid-ek huts egin du (beharbada raid-tresnak faltako dira?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ez dago nahikoa partizio %d RAID mailarako\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Segurtasun-maila:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Segurtasun-maila"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Segurtasun Kudeatzailea:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (lehenetsia)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Segurtasun-maila ezartzen"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Segurtasun aukerak ezartzen"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Abiarazi ALSA (Advanced Linux Sound Architecture) soinu-sistema"
@@ -10046,7 +10263,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Fitxategi-konpartitzea"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -10123,79 +10340,71 @@ msgstr "Sar zaitez software librearen munduan"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "Iturburu Irekiaren Komunitateari buruz gehiago jakin nahi?"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums 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."
+"Zure jakinduria elkarbanatzeko eta Linux tresnak eraikitzen laguntzeko, egin "
+"zaitez gure \"Komunitate\" web-orrian aurkituko dituzun eztabaida-taldeen "
+"partaide"
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "Konektatu Internetekin"
+msgstr "Eskuratu Internetek eman dezakeen guztia"
#: ../../share/advertising/03-internet.pl_.c:10
-#, fuzzy
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"
msgstr ""
-"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"
+"Mandrake Linux 9.0k zuretzako software honenak aukeratu ditu. Surfeatu "
+"Webean eta ikusi animazioak Mozilla eta Konquerorrekin, edo irakurri zure "
+"posta eta kudeatu zure informazio pertsonalak Evolution eta Kmail erabiliz"
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "Ezagutu itzazu tresna grafiko eta multimedia eguneratuenak!"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "Sakatu multimedia bere limitera!"
#: ../../share/advertising/04-multimedia.pl_.c:11
-#, fuzzy
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 ""
-"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 "
+"Mandrake Linux 9.0k audio fitxategiak jotzeko, zure argazkiak editatu eta "
+"manipulatzeko, eta bideoak ikusteko software berriena erabiltzeko aukera "
+"ematen dizu"
#: ../../share/advertising/05-games.pl_.c:9
msgid "Games"
msgstr "Jokoak"
#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
-"Mandrake Linux 8.2k iturburu irekiko jokorik onenak eskaintzen ditu - makina-"
-"jokoak, kiroletakoak, estrategiakoak, ..."
+"Mandrake Linux 9.0k Iturburu Irekiko jokorik onenak eskaintzen ditu - makina-"
+"jokoak, ekintza, estrategia, ..."
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Mandrake-ren Kontrol Zentroa"
#: ../../share/advertising/06-mcc.pl_.c:10
-#, fuzzy
msgid ""
"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"
+"Mandrake Linux 9.0k zure makina erabat pertsonalizatu eta konfiguratzeko "
+"tresna ahaltsua dauka"
#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
@@ -10203,78 +10412,80 @@ msgstr "Erabiltzaile-interfazeak"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"Mandrake Linux 9.0k erabat aldatu daitezkeen 11 erabiltzaile interfaze "
+"eskaintzen dizkizu: KDE 3, Gnome 2, WindowMaker, ..."
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "Garapena"
+msgstr "Garapena erraztuta"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
+msgstr "Mandrake Linux 9.0 garapen plataforma berriena da"
#: ../../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"
+"GNU gcc 3 konpilatzailearen indar osoa erabili, baita Iturburu Irekiko "
+"garapen ingurune onenak ere"
#: ../../share/advertising/09-server.pl_.c:9
msgid "Turn your machine into a reliable server"
-msgstr ""
+msgstr "Bihurtu zure makina zerbitzari fidagarria"
#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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,..."
+"eginez: Web zerbitzaria, posta, suhesia, routerra, fitxategi eta inprimaketa "
+"zerbitzaria, ..."
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "Optimizatu zure segurtasuna"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
msgstr ""
+"MandrakeSecurity aukeren artean Multi Network Firewall (M.N.F.) produktua "
+"dauka"
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
+"Suhesi produktu honek zure segurtasun beharrak hasetzeko aukera emango dizun "
+"sareko ezaugarriak ditu"
#: ../../share/advertising/10-mnf.pl_.c:12
msgid "This product is available on MandrakeStore website"
-msgstr ""
+msgstr "Produktu hau MandrakeStore webgunean eskuragarri dago"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "MandrakeSoft denda ofiziala"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-"Gure denda elektronikoan eskuragai dituzu gure Linux soluzioen aukera "
-"zabala, produktuei buruzko eskaintza bereziak eta bestelako 'gutiziak'"
+"Gure Linux soluzioen aukera osoa, eta baita produktu eta beste \"gutizia\" "
+"batzutan eskaintza bereziak eskuragarri daude lerroan gure e-dendan:"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "Kide estrategikoak"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -10282,20 +10493,25 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoftek, Mandrake Linuxentzako soluzio bateragarri profesionalak "
+"eskaintzen dituzten konpainien artean aukeratutako batzuekin lanegiten du. "
+"MandrakeStoren aipatutako kide horien zerrenda eskuratu daiteke."
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "Ezagutu MandrakeSoften Linux-Campus entrenamendu katalogoa"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"Entrenamendu programa bien, erabiltzaileen eta espertuen (Sare eta Sistema "
+"administratzaileak), beharrei erantzuteko sortu da"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "Zertifikatu zure burua Linux-ekiko"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -10303,43 +10519,52 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"Zeure buruari lerroan edo gure entrenamendu kide sarearen bitartez irakastea "
+"erabakitzen baduzu, Linux-Campus katalogoak LPI zertifikazio ezagunaren "
+"programarako prestatuko zaitu (mundu zabaleko zertifikazio tekniko "
+"profesionala)"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "MandrakeExpert"
+msgstr "Bilakatu zaitez MandrakeExpert"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
msgstr ""
+"Aurkitu zure arazoei erantzuna MandrakeSoft-en lerroko euskarri "
+"plataformaren bitartez"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your 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 ""
+"Batu MandrakeSoft Euskarri taldeetara eta Linuxen Lerroko Komunitateetara "
+"zure jakinduria elkarbanatu eta besteei lagundu lerroko euskarri teknikoko "
+"webguneetan Aditu ezaguna bilakatuz:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert"
+msgstr "MandrakeExpert Korporatiboa"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
-msgstr ""
+msgstr "Konpainien euskarri behar espezifikoei erantzuteko lerroko plataforma"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
+"Gertaera guztiek MandrakeSoften Aditu tekniko kualifikatu bakarraren "
+"jarraipena izango dute."
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "Ezagutu \"MandrakeClub\" eta \"Mandrake Corporate Club\""
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -10350,16 +10575,22 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub eta Mandrake Corporate Club beraien Linux banaketa gogokoenari "
+"laguntzearekin batera pribilegio bereziak jasotzen dituzten Mandrake Linuxen "
+"enpresa erabiltzaile eta erabiltzaile pribatuentzako sortu zen. Gure "
+"produktuak gustoko badituzu, zure konpainiak gure produktuengandik etekina "
+"badu lehiakortasuna lortzeko, Mandrake Linux garapenari euskarri eman nahi "
+"badiozu, sartu MandrakeClubera!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Paketeak instalatzen..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Amaitu saioa eta, ondoren, sakatu Ktrl-Alt-Atzera"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Hasi berriro saioa %s(e)n aldaketak aktibatzeko"
@@ -10400,16 +10631,6 @@ msgstr "Gehitu/Ezabatu erabiltzaileak"
msgid "Add/Del Clients"
msgstr "Gehitu/Ezabatu Bezeroak"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Laguntza"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Abiapen Disketea"
@@ -10458,48 +10679,64 @@ msgstr "Gehitu erabiltzailea -->"
msgid "<-- Del User"
msgstr "<-- Ezabatu Erabiltzailea"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Sare Abiapen Irudiak"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Gehitu Bezeroa -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Ezabatu Bezeroa"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "dhcpd Ezarpena..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Konfigurazio aurreratua"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Idatzi Ezarpena"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Mesedez sartu disketea:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Ezin izan da disketea atzitu!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Disketea kendu dezakezu orain"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Ez dago diskete-unitate erabilgarririk!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO irudia %s da"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Zerbaitek hutsegin du! - mkisofs instalatuta dago?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "\"/etc/dhcpd.conf\" sortu behar da lehenbizi!"
@@ -10605,13 +10842,12 @@ msgid "WARNING"
msgstr "ADI"
#: ../../standalone/drakbackup_.c:724
-#, fuzzy
msgid "FATAL"
-msgstr "FAT"
+msgstr "LARRIA"
#: ../../standalone/drakbackup_.c:725
msgid "INFO"
-msgstr ""
+msgstr "INFO"
#: ../../standalone/drakbackup_.c:737
msgid ""
@@ -10647,12 +10883,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Aurrerapen guztia"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10660,42 +10896,46 @@ 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 badago, ezabatu?\n"
+"\n"
+"Adi: Dagoeneko prozesu hau burutu baduzu seguraski\n"
+"authorized_keys sarrera purgatu beharko duzu zerbitzarian."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Honek giltzak sortzeko denbora tarte bat behar du."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
-msgstr ""
+msgstr "OKERRA: Ezin da %s jaurti."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "Pasahitz eskaririk ez %s-n %s portuan"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "Pasahitzik ez"
+msgstr "%s-n pasahitz okerra"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "%s %s-ra transferitzeko baimena ukatu da"
-#: ../../standalone/drakbackup_.c:851
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:854
+#, c-format
msgid "Can't find %s on %s"
-msgstr "Ezin da %s ireki: %s\n"
+msgstr "Ezin da %s %s-n bilatu"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "%s-k ez du erantzuten"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10705,84 +10945,91 @@ msgid ""
"\n"
"without being prompted for a password."
msgstr ""
+"Transferentzia arrakastatsua\n"
+"Zerbitzarian saioa hasi dezakezula frogatu dezakezu honela:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"eta ez zaizu pasahitzik eskatuko."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "Urruneko WebDAV gunea dagoeneko sinkronizatuta!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "WebDAV transferentziak hutsegin du!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Unitatean ez dago CDR/DVDR!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Ez dirudi euskarri idazgarria denik!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Ez da euskarri ezabagarria!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Euskarria ezabatzeak denbora tarte bat har dezake."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "Baimen arazoa CD atzipenean."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "Zintarik ez %s-n!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Disko gogorraren babeskopia fitxategiak... "
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Erabiltzaile-fitxategien babeskopia... "
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Disko gogorraren babeskopia egiten..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Beste fitxategi batzuen babeskopia... "
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "Erabili zinta babeskopia egiteko"
+msgstr "Ez dago babestu beharreko aldaketarik!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup ekintzak %s bitartez:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1342
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1346
+#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-"FTPk bidalitako fitxategi-zerrenda: %s\n"
+"FTP bitartez bidalitako fitxategi-zerrenda: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10792,38 +11039,44 @@ msgstr ""
" FTP konexio-arazoa: zure babeskopien fitxategiak ezin izan dira bidali FTP "
"bidez.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup ekintzak CD bitartez:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"Drakbackup ekintzak zinta bitartez:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Errorea posta bidaltzean. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
-msgstr ""
+msgstr "Ezin da katalogoa sortu!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Fitxategi-hautapena"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Hautatu fitxategiak edo direktorioak eta egin klik 'Gehitu'n"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10831,27 +11084,26 @@ msgstr ""
"\n"
"Hautatu behar dituzun aukera guztiak.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
-msgstr "Sistema-fitxategien babeskopia. ( /etc direktorioa )"
+msgstr "Sistema-fitxategien babeskopia egin. (/etc direktorioa )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Erabili babeskopia inkrementala (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Ez sartu fitxategi kritikoak (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10859,136 +11111,136 @@ msgstr ""
"Aukera honekin /etc direktorioaren edozein bertsio leheneratu\n"
"ahal izango duzu."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "Hautatu babeskopian sartu nahi dituzun erabiltzaile guztiak."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Ez sartu arakatzailearen cache-a"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Erabili babeskopia inkrementalak (ez ordeztu kopia zaharrak)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Kendu hautatutakoak"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Erabiltzaileak"
-#: ../../standalone/drakbackup_.c:1773
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
-msgstr "Erabili FTP konexioa babeskopia egiteko"
+msgstr "Erabili sareko konexioa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "Sareko Metodoa:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
-msgstr ""
+msgstr "Erabili Expect SSH-rentzako"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
+"Sortu/Transferitu\n"
+"babeserako giltzak SSH-rentzako"
-#: ../../standalone/drakbackup_.c:1781
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
-msgstr "Transferitu"
-
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
msgstr ""
+" Transferitu \n"
+"Orain"
#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr "Giltzak dagoeneko bere tokian"
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Idatzi ostalariaren izena edo IPa."
-#: ../../standalone/drakbackup_.c:1791
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"Adierazi ostalariko direktorioa\n"
-"babeskopia jartzeko."
+"Mesedez sartu direktorioa (edo modulua) babes-kopia\n"
+" ostalari honetan jartzeko."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Sartu saioa hasteko izena"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Sartu pasahitza"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Gogoratu pasahitza"
-#: ../../standalone/drakbackup_.c:1818
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
-msgstr "Ezin sartu %s erabiltzaile-izena erabilita (pasahitz okerra?)"
+msgstr "Ostalari-izena, erabiltzaile-izena eta pasahitza behar dira!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Erabili CD/DVDROMa babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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 ""
+"Mesedez hautatu zure CD/DVD gailua\n"
+"(Sartu sakatu ezarpenak beste eremu batzutara hedatzeko.\n"
+"Eremu hau ez da beharrezkoa, formularioa betetzeko tresna bakarrik.)"
-#: ../../standalone/drakbackup_.c:1921
-#, fuzzy
-msgid "Please choose your CD/DVD media size"
-msgstr "Aukeratu CDko lekua"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "Mesedez hautatu zure CD/DVD euskarri neurria"
-#: ../../standalone/drakbackup_.c:1927
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
-msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+msgstr "Mesedez markatu saio-anitzeko CDa egiteko"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
-#: ../../standalone/drakbackup_.c:1939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr "Mesedez markatu zure RW eukarria ezabatu nahi baduzu (1. saioa)"
-#: ../../standalone/drakbackup_.c:1940
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
-msgstr "Transferitu"
+msgstr " Ezabatu Orain "
-#: ../../standalone/drakbackup_.c:1946
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
-msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+msgstr "Mesedez markatu DVDR gailua erabiltzen ari bazara"
-#: ../../standalone/drakbackup_.c:1952
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
-msgstr "Hautatu CDRW euskarria erabiltzen baduzu"
+msgstr "Mesedez markatu DVDRAM gailua erabiltzen ari bazara"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10996,36 +11248,33 @@ msgstr ""
"Adierazi CD idazgailuaren gailu-izena \n"
" adib.: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
-msgstr "Hautatu fitxategia"
+msgstr "Ez da CD gailurik definitu!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Erabili zinta babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Adierazi babeskopiarako erabiliko den gailuaren izena"
-#: ../../standalone/drakbackup_.c:2055
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr "Mesedez markatu rebobinatzen ez den gailua erabiltzeko."
-#: ../../standalone/drakbackup_.c:2061
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr "Mesedez markatu babes-kopia aurretik zinta ezabatu nahi baduzu."
-#: ../../standalone/drakbackup_.c:2067
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
-msgstr "Hautatu CDRWa ezabatu nahi baduzu lehenik"
+msgstr ""
+"Mesedez markatu babes-kopia ondoren zure zinta kanporatzea nahi baduzu."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11033,57 +11282,55 @@ msgstr ""
"Adierazi Drakbackup-en gehieneko\n"
" tamaina "
-#: ../../standalone/drakbackup_.c:2138
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
-msgstr "Adierazi gorde beharreko direktorioa:"
+msgstr "Mesedez adierazi zein direktoriotan gorde behar den:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Erabili kuota babeskopia-fitxategientzat"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Sarea"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
-msgstr "Mota"
+msgstr "Zinta"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "orduero"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "egunero"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "astero"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "hilero"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Erabili daemon-a"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11091,7 +11338,7 @@ msgstr ""
"Aukeratu babeskopiak egiteko \n"
"maiztasuna"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11099,79 +11346,83 @@ msgstr ""
"Aukeratu babeskopia \n"
"egiteko euskarria."
-#: ../../standalone/drakbackup_.c:2287
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2291
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 "Ziurtatu cron daemon-a zerbitzuetan sartuta daukazula."
+msgstr ""
+"Mesedez ziurtatu cron deabrua zure zerbitzuen artean dagoen.\n"
+"\n"
+"Ohartu oraingoz 'sareko' euskarri guztiek disko zurruna erabiltzen dutela."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Babeskopia egindakoan, bidali berri-emateko mezua hona :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
+"Ezabatu disko zurrunetik tar fitxategiak beste euskarri batera babestu "
+"ondoren."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Zer"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Non"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Noiz"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Aukera gehiago"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr " Drakbackup-en konfigurazioa"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Aukeratu non egin nahi duzun babeskopia"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "disko gogorrean"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "sarean zehar"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
-msgstr ""
+msgstr "CDROMean"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
-msgstr ""
+msgstr "Zinta Gailuan"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Aukeratu zeren kopia egin nahi duzun"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Sistemaren babeskopia "
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Erabiltzaileen babeskopia"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Hautatu erabiltzailea eskuz"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11179,7 +11430,7 @@ msgstr ""
"\n"
"Babeskopien iturburua: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11187,7 +11438,7 @@ msgstr ""
"\n"
"- Sistema-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11195,7 +11446,7 @@ msgstr ""
"\n"
"- Erabiltzaile-fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11203,7 +11454,7 @@ msgstr ""
"\n"
"- Bestelako fitxategiak:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11212,55 +11463,59 @@ msgstr ""
"\n"
"- Gorde disko gogorrean, bide-izen honetan: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Ezabatu disko zurrunetik tar fitxategiak babestu ondoren.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- CD-ra erre"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2604
+#, c-format
msgid " on device: %s"
-msgstr "Sagu-gailua: %s\n"
+msgstr " gailuan: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
-msgstr ""
+msgstr " (saio-anitza)"
-#: ../../standalone/drakbackup_.c:2602
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2606
+#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- Gorde FTPan, ostalari honetan: %s\n"
+"- Gorde Zintara gailu honetan: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2606
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2610
+#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- Gorde FTPan, ostalari honetan: %s\n"
+"- Gorde %s bitartez ostalari honetan: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11269,7 +11524,7 @@ msgstr ""
"\t\t erabiltzaile-izena: %s\n"
"\t\t bide-izena: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11277,19 +11532,19 @@ msgstr ""
"\n"
"- Aukerak:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tEz sartu sistema-fitxategiak\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBabeskopietan erabili tar eta bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBabeskopietan erabili tar eta gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11298,41 +11553,39 @@ msgstr ""
"\n"
"- Daemon-ean (%s) sartzen da :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t Disko gogorra.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROMa.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\tFTP bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\tSSH bidezko sarea.\n"
-#: ../../standalone/drakbackup_.c:2623
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
-msgstr "\tFTP bidezko sarea.\n"
+msgstr "\t-Sarea rsync bitartez.\n"
-#: ../../standalone/drakbackup_.c:2624
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
-msgstr "\tFTP bidezko sarea.\n"
+msgstr "\t-Sarea webdav bitartez.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ez dago konfiguraziorik, egin klik Morroian edo Aurreratuan.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11340,7 +11593,7 @@ msgstr ""
"Leheneratu beharreko datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11348,296 +11601,291 @@ msgstr ""
"Hondatutako datuen zerrenda:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Desautatu edo kendu hurrengo aldian."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Babeskopien fitxategiak hondatuta daude"
-#: ../../standalone/drakbackup_.c:2832
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
-msgstr " Hautatu dituzun datu guztiak "
+msgstr " Hautatu dituzun datu guztiak izan dira "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " behar bezala leheneratu dira hona: %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " leheneratzeko konfigurazioa "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Ados, leheneratu beste fitxategiak"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Kopiatu sistema-fitxategiak lehenago:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "aukeratu leheneratzeko data"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Erabili disko gogorra babeskopia egiteko"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Adierazi gorde beharreko direktorioa:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP konexioa"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Konexio segurua"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Leheneratu disko gogorretik"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Adierazi zein direktoriotan dauden babeskopiak"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Hautatu beste euskarri bat leheneratzeko"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Beste euskarri bat"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Leheneratu sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Leheneratu erabiltzaileak"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Leheneratu bestelakoak"
-#: ../../standalone/drakbackup_.c:3263
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
-msgstr "hautatu leheneratzeko bidea ( / ordez)"
+msgstr "hautatu leheneratzeko bidea (/ ordez)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Egin babeskopia berria leheneratu aurretik (inkrementaletan soilik.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Kendu erabiltzaile-direktorioak leheneratu aurretik."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
+"Leheneratu Hautatutako\n"
+"Katalogo Sarrera"
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "Kendu hautatutakoak"
+msgstr ""
+"Leheneratu Hautatutako\n"
+"Fitxategiak"
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "Leheneratu bestelakoak"
+msgstr ""
+"Aldatu\n"
+"Leheneratze Bidea"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "Babestu %s %s.old bezala"
+msgstr "Babestu %s-n aurkitu ez diren fitxategiak."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
+"Sartu %s bolumen etiketa duen CDa\n"
+" muntaketa puntua /mnt/cdrom duen CD unitatean"
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "Leheneratu disko gogorretik"
+msgstr "Leheneratu CDtik"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgstr "Ez da CD etiketa zuzena. Diskoak %s etiketa dauka."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"Sartu bolumen etiketa %s duen zinta\n"
+" %s zinta unitate gailuan"
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "Leheneratu partizio-taula"
+msgstr "Leheneratu Zintatik"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgstr "Ez da zinta etiketa zuzena. Zinta %s etiketa dauka."
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "Leheneratu erabiltzaileak"
+msgstr "Leheneratu Sarearen Bitartez"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgstr "Leheneratu Sareko Protokolo honen bitartez: %s"
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
-msgstr "Ostalari-izena"
+msgstr "Ostalari Izena"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
-msgstr ""
+msgstr "Ostalari Bide edo Modulua"
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "Pasahitza"
+msgstr "Pasahitza behar da"
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "Erabiltzaile-izena"
+msgstr "Erabiltzaile-izena behar da"
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "Ostalari-izena: "
+msgstr "Ostalari-izena behar da"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
-msgstr ""
+msgstr "Bidea edo Modulua behar da"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
-msgstr ""
+msgstr "Fitxategiak Leheneratuta..."
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "Leheneratu bestelakoak"
+msgstr "Leheneraketak Hutsegin du..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Leheneratu babeskopia guztiak."
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Leheneratze pertsonalizatua"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
-msgstr ""
+msgstr "CDa bere lekuan - jarraitu."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
-msgstr ""
+msgstr "Nabigatu leheneratze repositorio berrira."
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "Leheneratu partizio-taula"
+msgstr "Leheneratu Katalogotik"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "Leheneratu erabiltzaileak"
+msgstr "Leheneratze Aurrerapena"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Aurrekoa"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gorde"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Egin babeskopia"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Leheneratu"
-#: ../../standalone/drakbackup_.c:4229
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"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"
+"Errorea sendmail bitartez posta bidaltzean\n"
+" Berri emateko mezua ez da bidali\n"
+" Mesedez konfiguratu posta-bidalketa sendmail bitartez"
-#: ../../standalone/drakbackup_.c:4253
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "Ondorengo pakete hauek instalatuko dira"
+msgstr ""
+"Ondorengo paketeak instalatuta egon behar dira:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-"Errorea FTP bidez fitxategia bidaltzean.\n"
-" Zuzendu FTP konfigurazioa."
+"Okerra FTP bidez fitxategia bidaltzean.\n"
+" Mesedez zuzendu zure FTP konfigurazioa."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Hautatu leheneratzeko datuak..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Hautatu babeskopiaren euskarria..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Hautatu babeskopia egiteko datuak..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11645,60 +11893,59 @@ msgstr ""
"Ez da konfigurazio-fitxategirik aurkitu \n"
"egin klik Morroia-n edo Aurreratua-n."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Garatzen... itxaron."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Sistema-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Erabiltzaile-fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Bestelako fitxategien babeskopia"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Guztizko progresioa"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "fitxategiak FTP bidez bidaltzen"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Fitxategiak bidaltzen..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Egin babeskopia konfigurazio-fitxategitik"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Ikusi babeskopiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Morroiaren konfigurazioa"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Konfigurazio aurreratua"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Egin babeskopia orain"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11731,16 +11978,16 @@ msgid ""
msgstr ""
"aukeren azalpena:\n"
"\n"
-" Urrats honetan, Drakbackup-en bidez aldatuko dituzu:\n"
+" Urrats honetan Drakbackup-ek hauek aldatzen utziko dizu:\n"
"\n"
" - Konprimitze-modua:\n"
" \n"
-" bzip2 konpresioa hautatuz, gzip-ekin baino hobeto\n"
+" bzip2 konpresioa hautatuz, gzip-ekin baino gehiago\n"
" konprimituko dituzu datuak (% 2-10 inguru).\n"
" Aukera hau ez da lehenespen gisa hautatzen konpresio-modu\n"
" honek denbora gehiago (% 1000 gehiago) hartzen duelako.\n"
" \n"
-" - Eguneratze-modua:\n"
+" - Eguneratze modua:\n"
"\n"
" Aukera honek babeskopia eguneratuko du, baina ez da\n"
" oso erabilgarria, eguneratu aurretik babeskopia\n"
@@ -11748,9 +11995,9 @@ msgstr ""
" \n"
" - .backupignore modua:\n"
"\n"
-" cvs-rekin bezala, Drakbackup-ek ezikusi egingo die\n"
-" .backupignore fitxategietako erreferentzia guztiei.\n"
-" ex: \n"
+" cvs-rekin bezala, Drakbackup-ek ezikusi egingo die direktorio\n"
+" bakoitzeko .backupignore fitxategietako erreferentzia guztiei.\n"
+" adib: \n"
" /*> cat .backupignore*/\n"
" *.o\n"
" *~\n"
@@ -11758,7 +12005,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11772,7 +12019,7 @@ msgstr ""
" myhostname edo mydomain ezarri behar duzu hemen: /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11847,8 +12094,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11875,41 +12121,46 @@ msgid ""
"\n"
"\n"
msgstr ""
-"leheneratze-azalpena:\n"
+"leheneratze azalpena:\n"
" \n"
-"Data berrienak soilik erabiliko dira, babeskopia inkrementalean\n"
-"beharrezkoa delako babeskopia zaharrak banan-banan ezabatzea.\n"
+"Gertueneko data soilik erabiliko da, babeskopia inkrementalarekin\n"
+"beharrezkoa delako babeskopia zaharrak banan-banan leheneratzea.\n"
"\n"
-"Erabiltzaile bat leheneratu nahi ez baduzu, desautatu haren \n"
-"kontrol-laukia.\n"
+"Beraz erabiltzaile bat leheneratu nahi ez baduzu, haren egiaztapen-"
+"laukietatik\n"
+"markak kendu.\n"
"\n"
"Bestela, hauetako bakarra hautatu ahal izango duzu\n"
"\n"
" - Babeskopia inkrementalak:\n"
"\n"
"\tBabeskopia-aukera ahaltsuena da. Aukera honen\n"
-"\tbidez, lehen aldian datu guztien babeskopia egin\n"
-"\tdaiteke, eta gero aldatuenak bakarrik.\n"
-"\tGero, leheneratze-urratsean, data jakin bateko\n"
-"\tdatuak leheneratu ahal izango dituzu.\n"
+"\tbidez, lehen aldian datu guztien babeskopia\n"
+"\tegiteko aukera ematen du, eta gero aldatutako\n"
+"\tdatuak bakarrik.\n"
+"\tBeraz, leheneratze-urratsean, data\n"
+"\tjakin bateko datuak leheneratu ahal izango\n"
+"\tdituzu.\n"
"\tAukera hau hautatuta ez baduzu, babeskopia zahar guztiak\n"
"\tezabatzen dira babeskopia bakoitzaren aurretik. \n"
"\n"
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" eguneraketak 2002 MandrakeSoft Stew Benedict-ek <sbenedict\\@mandrakesoft."
+"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11939,7 +12190,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:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12015,7 +12266,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12033,7 +12284,7 @@ msgstr ""
"zerbitzarira bidali aurretik.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12055,7 +12306,7 @@ msgstr ""
"Garrantzizkoa da kontuz ibiltzea eta babeskopia-fitxategiak\n"
"eskuz ez aldatzea.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12147,18 +12398,30 @@ msgid ""
"\n"
"OPTIONS:\n"
msgstr ""
+"drakbug %s bertsioa\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"Hau software askea da eta GNUren GPLk ezarritako baldintzapean banatu "
+"daiteke.\n"
+"\n"
+"erabilera: drakbug [AUKERAK] [PROGRAMA_IZENA]\n"
+"\n"
+"AUKERAK:\n"
#: ../../standalone/drakbug_.c:47
msgid " --help - print this help message.\n"
-msgstr ""
+msgstr " --help - laguntza mezu hau erakutsi.\n"
#: ../../standalone/drakbug_.c:48
msgid " --report - program should be one of mandrake tools\n"
msgstr ""
+" --report - programa mandrakeren tresnetako bat izan beharko "
+"litzateke\n"
#: ../../standalone/drakbug_.c:49
msgid " --incident - program should be one of mandrake tools\n"
msgstr ""
+" --incident - programa mandrakeren tresnetako bat izan beharko "
+"litzateke\n"
#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
@@ -12173,8 +12436,8 @@ msgid "Synchronization tool"
msgstr "Sinkronizazio tresna"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Tresna Autonomoak"
@@ -12235,12 +12498,11 @@ msgid "Release: "
msgstr "Bertsioa: "
#: ../../standalone/drakbug_.c:115
-#, fuzzy
msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12249,25 +12511,24 @@ msgstr ""
"\n"
"\n"
"Akats txosten bat bidaltzeko, klikatu txosten botoia.\n"
-"Honek web nabigatzailearen leiho batean https://www.bugzilla.com\n"
+"Honek web nabigatzailearen leiho batean https://drakbug.mandrakesoft.com\n"
" zabalduko du, bertan bete beharreko inprimakia aurkituko duzu. Gainean \n"
"erakusten den informazioa zerbitzari hartara bidaliko da\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Txostena"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Instalatu gabe"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "Bugzilla morroira konektatzen ..."
-#: ../../standalone/drakbug_.c:190
-#, fuzzy
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Ez dago nabigatzailerik! Instalatu bat mesedez"
@@ -12368,10 +12629,6 @@ msgstr "Morroia..."
msgid "Apply"
msgstr "Aplikatu"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Itxaron... Konfigurazioa aplikatzen"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Konektatuta"
@@ -12493,7 +12750,7 @@ msgstr "Modulu-izena"
msgid "Size"
msgstr "Tamaina"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12558,12 +12815,12 @@ msgstr "Irteera"
msgid "Build the disk"
msgstr "Sortu disketea"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Egiaztatu %s gailuak euskarria baduela"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12572,12 +12829,12 @@ msgstr ""
"Ez dago euskarririk edo idazketarako babestuta dago %s gailuan.\n"
"Sartu bat mesedez."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ezin da bikoiztu: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13062,159 +13319,146 @@ msgstr ""
"\n"
"Egin klik 'Konfiguratu'n instalazio-morroia abiarazteko."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "Lantaldea"
+msgstr "taldea"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "bidea"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "%s partizioan"
+msgstr "baimenak"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr "Erabiltzailea"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "Gora"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
-msgstr "Ezabatu"
+msgstr "ezabatu"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr "editatu"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "Eginda"
+msgstr "Bera"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "Gehitu modulua"
+msgstr "Arau bat gehitu"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "hautatu ikusi/editatzeko fitxategia"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm fitxategien ezaugarriak aldatzeko erabiltzen da, baimenak, jabeak, "
+"eta taldeak, hori msec bitartez egiten du.\n"
+"Jatorrizko arauak gainidatziko dituzte zure arau propioak editatu ditzakezu."
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "Gehitu inprimagailu berria"
+msgstr "Gehitu arau berri bat amaieran"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "Editatu uneko araua"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "Desautatutako guztiak"
+msgstr "Igo hautatutako araua maila bat"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "Jaitsi hautatutako araua maila bat"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "Kendu hautatutakoak"
+msgstr "Ezabatu hautatutako araua"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "arakatu"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "Onartu erabiltzailea"
+msgstr "Uneko erabiltzailea"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "Bertsioa: %s\n"
+msgstr "Baimenak"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "Bidea"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "Ataka"
+msgstr "Propietatea"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "bit-likatsua"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "Set-UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "Set-GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"Direktorioentzako erabilia:\n"
+" direktorio edo fitxategiaren jabeak bakarrik direktorio honetan ezabatu "
+"dezake"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "Erabili auto-detekzioa"
+msgstr "Erabili jabearen id exekuziorako"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "Erabili auto-detekzioa"
+msgstr "Erabili taldearen id exekuziorako"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "Markatuta dagoenean, jabea eta taldea ez dira aldatuko"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "Splash hautaketa"
+msgstr "Bide hautaketa"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "Erabiltzailea"
+msgstr "Erabiltzailea :"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "Lantaldea"
+msgstr "taldea :"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "Ez da TB txartelik aurkitu!"
+msgstr "Ez da Soinu Txartelik aurkitu!"
-#: ../../standalone/draksound_.c:47
-#, fuzzy
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13225,149 +13469,155 @@ msgid ""
"\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"
+"Zure makinan ez da Soinu Txartelik aurkitu. Ziurtatu Linux-ek onartzen duen "
+"Soinu Txartela ondo konektatuta dagoela.\n"
"\n"
"\n"
-"Gure hardware datubasea bisitatu dezakezu:\n"
+"Gure hardware datubasea bisitatu dezakezu hemen:\n"
"\n"
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "ondo ibili dadin ImageMagick paketea behar da"
+
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "abioko disketea sortu"
+msgstr "Lehenengo urratsaren sorrera"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "Bereizmena"
+msgstr "azken erresoluzioa"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "Aukeratu fitxategi bat"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "Konpartitze-izena"
+msgstr "aukeratu irudi fitxategia"
#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Instalazio-ondorengo konfigurazioa"
+msgid "Theme name"
+msgstr "Gaiaren izena"
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Irten"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "Arakatu"
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instalatu gaiak"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
-#, fuzzy
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
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 ""
+msgstr "Abiapen-irudia konfiguratu"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
+"testu-laukiaren x koordenatua\n"
+"karaktere kopurutan"
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
+"testu-laukiaren y koordenatua\n"
+"karaktere kopurutan"
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
-msgstr ""
+msgid "text width"
+msgstr "testu zabalera"
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
+msgid "text box height"
+msgstr "testu-lauki garaiera"
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
+"aurrerapen-barraren goi eta\n"
+"ezker ertzaren x koordenatua"
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
+"aurrerapen-barraren goi eta\n"
+"ezker ertzaren y koordenatua"
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
-msgstr ""
+msgid "the width of the progress bar"
+msgstr "aurrerapen-barraren zabalera"
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:119
-#, fuzzy
-msgid "go back"
-msgstr "Atzera-begizta"
+msgid "the heigth of the progress bar"
+msgstr "aurrerapen-barraren garaiera"
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "gailua"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr "aurrerapen-barraren kolorea"
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "Aukeratu monitorea"
+msgid "Preview"
+msgstr "aurreikusi"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "gaia gorde"
#: ../../standalone/draksplash_.c:124
-#, fuzzy
+msgid "Choose color"
+msgstr "Aukeratu kolorea"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr "Erakutsi gaia kontsolapean"
+msgstr "Erakutsi logoa Kontsolan"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
-msgstr ""
+msgstr "Egin kernel mezua isila jatorrian"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
-msgstr ""
+msgstr "Gai honek ez dauka oraindik abiapen-irudirik %s-n!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
-msgstr ""
+msgstr "Abiapen-irudi gaia gordetzen..."
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "Inprimagailu-modeloaren hautapena"
+msgstr "AurrearpenBarraren kolore aukeraketa"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "Inprimagailua/gailua aukeratu/adierazi behar duzu!"
+msgstr "Irudi fitxategi bat hautatu behar duzu lehenik!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "Gailuak detektatzen..."
+msgstr "Aurreikuspena sortzen ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Ezin da Bootsplash aurreikuspena sortu"
#: ../../standalone/drakxtv_.c:49
-#, fuzzy
msgid ""
"XawTV isn't installed!\n"
"\n"
@@ -13384,8 +13634,9 @@ msgstr ""
"XawTV ez dago instalatuta!\n"
"\n"
"\n"
-"TB txartela badaukazu baino DrakX-ek ez du detektatu (bttv modulurik ez\n"
-"\"/etc/modules\" kokapenean) edo xawtv ez du instalatu, mesedez bidali\n"
+"TB txartela badaukazu baino DrakX-ek ez badudu detektatu (bttv edo saa7134 "
+"modulurik ez\n"
+"\"/etc/modules\" kokapenean) ez eta xawtv instalatu ere, mesedez bidali\n"
"\"lspcidrake -v -f\"-ek sortzen duen irteera \"install\\@mandrakesoft.com\"\n"
"helbidera gai bezala \"undetected TV card\" jarrita.\n"
"\n"
@@ -13454,7 +13705,7 @@ msgstr "Argentina"
#: ../../standalone/drakxtv_.c:72
msgid "Australian Optus cable TV"
-msgstr ""
+msgstr "Australiako Optus kable TB"
#: ../../standalone/drakxtv_.c:107
msgid ""
@@ -13520,6 +13771,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"erabilera: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "erabilera: keyboarddrake [--expert] [keyboard]\n"
@@ -13548,11 +13807,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ezin da bertsio-berritzea abiarazi!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13661,9 +13920,8 @@ msgid "Content of the file"
msgstr "Fitxategiaren edukia"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "Posta/SMSren abisua"
+msgstr "Posta alerta"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -13671,69 +13929,59 @@ msgid "please wait, parsing file: %s"
msgstr "itxaron, fitxategia analizatzen: %s"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Posta/SMSren abisuaren konfigurazioa"
+msgstr "Posta alerta konfigurazioa"
#: ../../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 ""
-"Ongi etorri Posta/SMS konfiguratzeko utilitatera.\n"
+"Ongi etorri posta konfiguratzeko utilitatera.\n"
"\n"
-"Hemen zure abisu-sistema konfiguratu ahal izango duzu.\n"
+"Hemen zure alerta sistema ezarri ahal izango duzu.\n"
#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache World Wide Web Zerbitzaria"
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "Domeinu-izena:"
+msgstr "Domeinuko Izen Ebazlea"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "Gelditu Zerbitzaria"
+msgstr "Ftp Zerbitzaria"
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr "Postfix posta-zerbitzaria, Inn berri-zerbitzaria"
+msgstr "Postfix Posta Zerbitzaria"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "Abiatu Zerbitzaria"
+msgstr "Samba Zerbitzaria"
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "NIS zerbitzaria"
+msgstr "SSH Zerbitzaria"
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "Zerbitzuak"
+msgstr "Webmin Zerbitzua"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "Inprimagailu-zerbitzaria"
+msgstr "Xinetd Zerbitzua"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "zerbitzuaren ezarpena"
#: ../../standalone/logdrake_.c:431
-#, fuzzy
msgid ""
"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"
+msgstr "Alerta jasoko duzu hautatutako zerbitzuetakoren bat gelditzen bada"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13748,9 +13996,8 @@ msgid "alert configuration"
msgstr "abisu-konfigurazioa"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "Sartu pasahitza"
+msgstr "Mesedez sartu zure posta-e helbidea azpian "
#: ../../standalone/logdrake_.c:497
msgid "Save as.."
@@ -13780,17 +14027,17 @@ msgstr "Probatu atakak"
#: ../../standalone/scannerdrake_.c:81
#, c-format
msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr ""
+msgstr "Mandrake Linux bertsio honek ez du %s onartzen."
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it?"
-msgstr "%s aurkitu da hemen: %s. Konfiguratu nahi duzu ?"
+msgstr "%s aurkitu da %s-n, konfiguratu?"
#: ../../standalone/scannerdrake_.c:59
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+msgstr "%s ez dago eskaner datubasean, eskuz konfiguratu?"
#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
@@ -13836,16 +14083,14 @@ msgstr ""
"Dokumentuak eskaneatu ditzakezu orain aplikazio menuan Multimedia/Grafikoak "
"barruan \"XSane\" erabiliz."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, 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:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"%s motako zenbait gailu gehitu dira:\n"
@@ -13922,7 +14167,7 @@ msgstr "Instalatu sistema-eguneratzeak"
msgid "Exit install"
msgstr "Irten instalaziotik"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13976,7 +14221,7 @@ msgstr "Audio tresnak: mp3 edo midi erreproduzigailuak, nahastaileak, etab."
#: ../../share/compssUsers:999
msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgstr "Linux Standard Base. Beste batzuren aplikazioen euskarria"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -14138,7 +14383,7 @@ msgstr "Hainbat protokolotako bezeroak, ssh-renak barne"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -14172,8 +14417,57 @@ msgstr "Multimedia - CD grabatzea"
msgid "Scientific Workstation"
msgstr "Lan-estazio zientifikoa"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Ezin da Bootsplash aurreikuspena sortu"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "Akats txosten bat bidaltzeko, klikatu txosten botoia.\n"
+#~ "Honek web nabigatzailearen leiho batean https://www.bugzilla.com\n"
+#~ " zabalduko du, bertan bete beharreko inprimakia aurkituko duzu. Gainean \n"
+#~ "erakusten den informazioa zerbitzari hartara bidaliko da\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "2. urratsa, abiapen-irudia sortu"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "joan lilo-irudi konfiguraziora"
+
+#~ msgid "Go back"
+#~ msgstr "itzuli"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Ez dago OSS/ALSA gidari alternatibo ezagunik zure soinu txartelarentzako "
+#~ "(%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy-ak ftp://... izan behar du"
+
+#~ msgid "Keys in place already"
+#~ msgstr "Giltzak dagoeneko bere tokian"
+
+#~ msgid "quit"
+#~ msgstr "Irten"
+
+#~ msgid ""
+#~ "\n"
+#~ "Some devices in the %s class were added:\n"
+#~ msgstr ""
+#~ "\n"
+#~ "%s motako zenbait gailu gehitu dira:\n"
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
@@ -14447,17 +14741,6 @@ msgstr "Lan-estazio zientifikoa"
#~ "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"
@@ -14774,21 +15057,6 @@ msgstr "Lan-estazio zientifikoa"
#~ msgid "Package List to Install"
#~ msgstr "Instalatu beharreko pakete-zerrenda"
-#~ msgid "proftpd"
-#~ msgstr "proftpd"
-
-#~ msgid "sshd"
-#~ msgstr "sshd"
-
-#~ msgid "webmin"
-#~ msgstr "webmin"
-
-#~ msgid "xinetd"
-#~ msgstr "xinetd"
-
-#~ msgid "Setting security level"
-#~ msgstr "Segurtasun-maila ezartzen"
-
#~ msgid "Select a graphics card"
#~ msgstr "Hautatu txartel grafiko bat"
@@ -14897,6 +15165,3 @@ msgstr "Lan-estazio zientifikoa"
#~ msgid "Setting security user"
#~ msgstr "Segurtasun erabiltzailea ezartzen"
-
-#~ msgid "Setting security options"
-#~ msgstr "Segurtasun aukerak ezartzen"
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index 860c7f2c1..7d2edd56b 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-12-17 23:18EET\n"
"Last-Translator: Matias Griese <mahagr@utu.fi>\n"
"Language-Team: Finnish\n"
@@ -90,24 +90,24 @@ msgstr "Aseta kaikki näytöt erikseen"
msgid "Use Xinerama extension"
msgstr "Käytä Xinerama-laajennusta"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Määrittele vain kortin \"%s\" (%s) asetukset"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s KOKEELLISELLA laitteistokiihdytetyllä 3D-tuella"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (näytönohjaimen ajurin asennus)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Mukautettu"
@@ -175,32 +175,32 @@ msgstr "Resoluutio"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Lopeta"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -298,25 +298,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Peruuta"
@@ -393,11 +393,11 @@ msgstr "XFree86 palvelin: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ajurit: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Käynnistettäessä X:ää"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -406,7 +406,7 @@ msgstr ""
"X voidaan laittaa käynnistymään automaattisesti käynnistyksen yhteydessä.\n"
"Haluatko käynnistää X:n automaattisesti?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -418,7 +418,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Minkälainen ISND-yhteytesi on?"
@@ -491,7 +491,7 @@ msgstr "Tiivis"
msgid "compact"
msgstr "tiivis"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Näyttötila"
@@ -499,17 +499,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Salasana"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Salasana (uudelleen)"
@@ -544,14 +544,14 @@ msgid ""
msgstr ""
"Asetus ``Rajoita komentorivioptioita'' ei ole hyödyllinen ilman salasanaa"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Yritä uudelleen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Salasanat poikkeavat toisistaan"
@@ -588,7 +588,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -596,155 +596,155 @@ msgstr ""
"Tässä ovat asetustietueet.\n"
"Voit lisätä uusia tai muuttaa olemassaolevia."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Lisää"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Valmis"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Muokkaa"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Minkä tyyppisen tietueen haluat lisätä"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Muu käyttöjärjestelmä (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Muu käyttöjärjestelmä (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Muu käyttöjärjestelmä (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Kuva"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Juuri"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Liitä"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Luku-kirjoitus"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Taulukko"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Turvaton"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Otsikko"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Oletus"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd:n koko"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Ei Näyttöä"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Poista tietue"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tyhjää otsikkoa ei sallita"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Sinun täytyy määritellä ydin"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Sinulla täytyy määritellä juuriosio"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Otsikko on jo käytössä"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Löysin %s %s liitännät"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Onko sinulla muita?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Onko koneessa %s liityntää?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Kyllä"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Katso laitteistotietoja"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Asetan ajuria %s ohjaimelle %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(moduli %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Asetukset ovat muotoa ``nimi=arvo nimi2=arvo2 ...''.\n"
"Esimerkiksi, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Moduulin optiot:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Mitä %s-ajuria kokeillaan?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -781,15 +781,15 @@ msgstr ""
"lisämääreitä vai annatko sen itse etsiä tarvitsemansa tiedot? Joskus haku\n"
"voi jumittaa tietokoneen, mutta se ei aiheuta vahinkoa."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automaattihaku"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Lisäasetukset"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -798,65 +798,65 @@ msgstr ""
"Modulin %s lataaminen epäonnistui.\n"
"Haluatko yrittää muilla asetuksilla?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "oikeudet X-ohjelmille"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "oikeudet rpm-työkaluihin"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "salli \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "oikeudet ylläpidollisiin tiedostoihin"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "oikeudet rpm-työkaluihin"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "oikeudet rpm-työkaluihin"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(lisätty jo %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Salasana on liian yksinkertainen"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Anna käyttäjätunnus"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Käyttäjätunnus on jo lisätty"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Lisää käyttäjä"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -865,32 +865,32 @@ msgstr ""
"Lisää käyttäjä\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Hyväksy käyttäjä"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Oikea nimi"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Käyttäjätunnus"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Komentotulkki"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Kuvake"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Automaattinen kirjautuminen"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -899,55 +899,55 @@ msgstr ""
"tietokoneellesi.\n"
"Haluatko käyttää tätä ominaisuutta?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Valitse oletuskäyttäjä:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Valitse käytettävä ikkunointijärjestelmä:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Valitse käytettävä kieli."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Kaikki"
# Asennuksen sivuvalikko
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Salli kaikille käyttäjille"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Ei jaettu"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakollinen paketti %s puuttuu"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -956,42 +956,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Tervetuloa murtautujat"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Huono"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardi"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Korkea"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Korkea"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoidi"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1003,14 +1003,14 @@ msgstr ""
"koneisiin\n"
"tai Internettiin. Koneessa ei ole salasanoja."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
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:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1020,13 +1020,13 @@ msgstr ""
"käytetään Internettiin liitettynä. Järjestelmässä on "
"turvallisuustarkastuksia."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1040,7 +1040,7 @@ msgstr ""
"Järjestelmää voidaan käyttää palvelimena joka hyväksyy yhteyksiä monilta\n"
"asiakkailta. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1048,36 +1048,36 @@ msgstr ""
"Pohjautuu edelliseen tasoon, mutta järjestelmä on kokonaan suljettu.\n"
"Turvallisuusasetukset ovat tiukimmillaan."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Optiot"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Valitse turvataso"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Turvataso"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Käytä libsafea palvelimille"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1090,7 +1090,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1115,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:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Tervetuloa GRUB k~^Dytt~^Tj~^Drjestelm~^Dnvalitsijaan!"
@@ -1129,7 +1129,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:941
+#: ../../bootloader.pm_.c:992
#, 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"
@@ -1144,7 +1144,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:944
+#: ../../bootloader.pm_.c:995
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"
@@ -1159,7 +1159,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:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "komennot ennen k„ynnistyst„, tai 'c' komentoriville"
@@ -1173,33 +1173,33 @@ 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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Työpöytä"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Käynnistysvalikko"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "ohjeita ei ole vielä olemassa.\n"
@@ -1252,106 +1252,106 @@ msgid "Yaboot mode"
msgstr "Yaboot-tila"
# Asennuksen sivuvalikko
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Asenna järjestelmä"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Luo uusi osio"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Virhe"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopioidaan %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Ei Näyttöä"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Asennuksen luokka"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1360,22 +1360,22 @@ msgstr ""
"Tällä hetkellä käytössä oleva järjestelmälataaja on %s.\n"
"Valitse Aseta käynnistääksesi asennusohjelman."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Määrittele"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Yksittäisten pakettien valinta"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1384,44 +1384,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Järjestelmän tila"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Käytä X-Window-järjestelmää"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ei, en halua autologinia"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Kyllä, haluan autologinin (käyttäjä, ympäristö)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ok"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ei voi lukea tiedostoa /etc/inittab: %s"
@@ -1518,54 +1518,62 @@ msgstr "Itävalta"
msgid "United States"
msgstr "Yhdysvallat"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "uusi"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Liitä"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Palvelin"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Valitse kirjoittavan CD-aseman nopeus"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Palvelin"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Liitospaikka: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Optiot: %s"
@@ -1655,7 +1663,7 @@ msgstr "Tyhjä"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Muut"
@@ -1798,7 +1806,7 @@ msgstr ""
"Osiotaulun varmuuskopio ei ole saman kokoinen\n"
"Jatka silti?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Varoitus"
@@ -2358,7 +2366,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:3529
#, fuzzy
msgid "Username"
msgstr "Käyttäjätunnus"
@@ -2372,23 +2380,23 @@ msgstr "NIS-alue"
msgid "Search servers"
msgstr "Hae palvelimet"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s:n alustus %s:ta epäonnistui"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "en osaa alustaa %s:ää tyyppiä %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "virhe irroitettaessa %s: %s"
@@ -2475,47 +2483,110 @@ msgstr "Ei mitään tekemistä"
msgid "Error opening %s for writing: %s"
msgstr "Virhe kirjoitettaessa tiedostoon %s: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Asetustyökalut"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Ajurit"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Apua"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Odota hetki... Otetaan asetukset käyttöön"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Odota hetki"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Tuntematon malli"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2642,7 +2713,8 @@ msgid "/_Quit"
msgstr "Lopeta"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ohje"
@@ -2662,77 +2734,78 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Ohje/_Tietoja..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Automaattihaku"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kiintolevyjen tunnistus"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Katso laitteistotietoja"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Näytä tiedot"
# Asennuksen sivuvalikko
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Hiiren määrittely"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "löydetty portista %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Odota hetki"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Poistetaan tulostin \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekuntia"
@@ -4222,7 +4295,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Sinun täytyy myös alustaa %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4247,7 +4320,7 @@ msgstr ""
"\n"
"Haluatko todella asentaa nämä palvelimet?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4256,20 +4329,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Aseta tyhjä FAT-alustettu levyke levyasemaan %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Tämä levyke ei ole FAT-alustettu"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4277,12 +4350,12 @@ msgstr ""
"Käyttääksesi tätä \"tallennetut paketit\" valintaa, käynnistä asennus "
"optiolla \"linux defcfg=floppy\""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Virhe lukiessa tiedostoa %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4527,7 +4600,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Tervetuloa %s:n"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ei levykeasemaa käytettävissä"
@@ -4558,11 +4631,11 @@ msgstr "Asennusluokka"
msgid "Please choose one of the following classes of installation:"
msgstr "Valitse yksi seuraavista asennusluokista:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Pakettiryhmien valinta"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Yksittäisten pakettien valinta"
@@ -4641,7 +4714,7 @@ msgstr "Näytä automaattisesti valitut paketit"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Asenna"
@@ -4662,7 +4735,7 @@ msgstr "Minimaalinen asennus"
msgid "Choose the packages you want to install"
msgstr "Valitse asennettavat paketit"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Asennan"
@@ -4689,17 +4762,17 @@ msgid "Installing package %s"
msgstr "Asennan pakettia %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Hyväksy"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Hylkää"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4715,16 +4788,16 @@ msgstr ""
"levyltä."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Jatka kuitenkin?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Tapahtu virhe järjestettäessä paketteja:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Tapahtu virhe asennettaessa paketteja:"
@@ -4851,7 +4924,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4929,7 +5002,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Näppäimistö"
@@ -5138,11 +5211,11 @@ msgstr "Aseta levyke, jossa on pakettien valinta"
msgid "Selected size is larger than available space"
msgstr "Valittu koko on suurempi kuin olemassa oleva levytila"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Asennuksen tyyppi"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5150,19 +5223,19 @@ msgstr ""
"Et ole valinnut yhtäkään pakettiryhmää\n"
"Valitse haluamasti minimaalinen asennus"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "X:llä"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Perusdokumentaation kanssa (suositeltu!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Pienin mahdollinen asennus (erityisesti ei urpmia)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5172,16 +5245,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom nimeltään \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Valmistelen asennusta"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5190,22 +5263,22 @@ msgstr ""
"Asennan pakettia %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Asennuksen jälkeiset toiminnot"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Aseta moduulien päivityslevyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5281,7 +5354,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5301,161 +5374,161 @@ msgstr ""
"\n"
"Haluatko asentaa päivitykset ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Valitse peilijärjestelmä josta paketit haetaan"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Mikä on järjestelmäsi aikavyöhyke?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Laitteistokello asetettu GMT-aikaan"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automaattinen kellon synkronisointi (käyttäen NTP:tä)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-palvelin"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Ulkoinen CUPS-palvelin"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Ei kirjoitinta"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Onko sinulla muita?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Johtopäätös"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Hiiri"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Aikavyöhyke"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Kirjoitin"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN-kortti"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Äänikortti"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kortti"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Hae Windowsin kirjasimet"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Paikalliset tiedostot"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ylläpitäjän salasana"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Ei salasanaa"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Tunnistustapa"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP perus-dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-palvelin"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Tunnistus NIS:llä"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-alue"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-palvelin"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5471,21 +5544,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Tunnistus LDAPilla"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Verkkoalueen nimi"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5512,19 +5585,19 @@ msgstr ""
"Jos haluat luoda käynnistyslevykkeen järjestelmääsi, aseta levyke\n"
"ensimmäiseen asemaan ja paina \"Ok\","
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ensimmäinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Toinen levyasema"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Ohita"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5549,7 +5622,7 @@ msgstr ""
"Haluatko luoda käynnistyslevykkeen järjestelmääsi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5558,28 +5631,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Levyajuria ei ole saatavilla"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Aseta levyke asemaan %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Luon käynnistyslevykettä"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Valmistelen käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5591,11 +5664,11 @@ msgstr ""
"Asennus jatkuu, mutta sinun täytyy käyttää BootX:ää\n"
"koneesi käynnistämiseen"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Haluatko käyttää aboot:ia?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5604,15 +5677,15 @@ msgstr ""
"yritä pakkoasennusta vaikka se tuhoaa ensimmäisen osion?"
# Asennuksen sivuvalikko
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Asennan käyttöjärjestelmän lataajaa"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Järjestelmälataajan asennus epäonnistu. Seuraava virhe tapahtui:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5632,17 +5705,17 @@ msgstr ""
"komentokehoite."
# mat
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Valmistelen automaattiasennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5652,7 +5725,7 @@ msgstr ""
"\n"
"Haluatko todella lopettaa?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5685,15 +5758,15 @@ msgstr ""
"Järjestelmän asettamisesta saat tietoja virallisen Linux Mandraken\n"
"käyttäjäoppaan jälkiasennuskappaleesta."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Valmistelen automaattista asennuslevykettä"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5707,15 +5780,15 @@ msgstr ""
"\n"
"Ehkä haluat mieluummin toistaa asennuksen.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automaattinen"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Toista"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Yksittäisten pakettien valinta"
@@ -5751,14 +5824,14 @@ msgstr "Lisäasetukset"
msgid "Basic"
msgstr "Perusasetukset"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Seuraava"
@@ -6209,7 +6282,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Rengasmaisia liitoksia %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Poista loogiset osiot ensin\n"
@@ -6348,15 +6421,15 @@ msgstr "ei mikään"
msgid "No mouse"
msgstr "Ei hiirtä"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Testaa hiiri"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Aktivoidaksesi hiiren,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "PYÖRITÄ HIIREN RULLAA!"
@@ -6393,11 +6466,11 @@ msgstr "Sulje puu"
msgid "Toggle between flat and group sorted"
msgstr "Vaihda tasaisen ja ryhmäjärjestyksen välillä"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ota yhteys internettiin"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6407,23 +6480,19 @@ msgstr ""
"Jotkin yhteydet käyttävät pptp:tä, muutamat dhcp:tä.\n"
"Jos et tiedä, mitä valita, valitse 'käytä pppoe:a'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "käytä dhpc:tä"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "käytä pppoe:a"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "käytä pptp:tä"
@@ -6524,7 +6593,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:362
msgid "Configuring network"
msgstr "Asetan verkkoa"
@@ -6540,15 +6609,15 @@ 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:367
msgid "Host name"
msgstr "Koneen nimi"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Verkkoasetusten velho"
@@ -6595,8 +6664,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Vanha kokoonpano (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN:n asetus"
@@ -6632,23 +6701,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Mitä protokollaa haluat käyttää?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Millainen kortti sinulla on?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "En tiedä"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6661,19 +6735,19 @@ msgstr ""
"\n"
"Jos sinulla on PCMIA-kortti sinun täytyy tietää korttisi IRQ ja IO.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Hylkää"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Jatka"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Mikä ISDN-kortti sinulla on?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6681,7 +6755,7 @@ msgstr ""
"Olen havainnut ISDN PCI-kortin, mutta en tunnista tyyppiä. Valitseyksi "
"seuraavassa ruudussa olevista korteista."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "ISDN PCI-korttia ei löydetty. Valitse yksi seuraavasta ruudusta."
@@ -6733,7 +6807,7 @@ msgstr "Ensimmäinen nimipalvelin (ei pakollinen)"
msgid "Second DNS Server (optional)"
msgstr "Toinen nimipalvelin (ei pakollinen)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6741,7 +6815,7 @@ msgstr ""
"\n"
"Voit joko katkaista yhteyden tai asettaa sen uudelleen."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6749,11 +6823,11 @@ msgstr ""
"\n"
"Voit asettaa yhteytesi uudelleen."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Olet parasta aikaa yhteydessä internettiin."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6761,33 +6835,33 @@ msgstr ""
"\n"
"Voit joko ottaa yhteyden internettiin tai asettaa yhteyden uudelleen."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Et ole juuri nyt yhteydessä internettiin."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Ota yhteys"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Katkaise yhteys"
# Asennuksen sivuvalikko
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Aseta verkkoyhteys"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internetyhteyden muodostus ja asetukset"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Asetamme seuraavaksi %s-yhteyden."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6806,12 +6880,12 @@ msgstr ""
"\n"
"Paina Ok jatkaaksesi."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6823,7 +6897,7 @@ msgstr ""
"Paina Ok säilyttääksesi nykyiset asetukset tai peruuta asettaaksesi "
"internet- ja verkkoasetukset uudelleen.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6835,72 +6909,72 @@ msgstr ""
"Seuraavassa vaiheessa määritellään sinun internet- / verkkoasetukset.\n"
"Jos et halua käyttää automaattista tunnistusta, poista kyseinen valinta.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Valitse uusi asetusprofiili"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Käytä automaattista tunnistusta"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Etsin laitteita...."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Tavallinen modeemiyhteys"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "löydetty portista %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN-yhteys"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "löydetty %s:sta"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL-yhteys"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "löydetty seuraavasta liitännästä: %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kaapeliyhteys"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Kaapeliyhteys havaittu"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Lähiverkko"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "seuraavat ethernet-verkkokortit löydetty"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Valitse yhteys, jonka haluat asettaa"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6910,23 +6984,23 @@ msgstr ""
"Valitse se, jota haluat käyttää.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internetyhteys"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Haluatko ottaa yhteyden koneen käynnistyksen yhteydessä?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Verkon asetukset"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Verkko pitää käynnistää uudelleen"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6937,7 +7011,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6947,7 +7021,7 @@ msgstr ""
"\n"
"Asetukset tulevat käyttöön myös itse järjestelmässä.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6955,7 +7029,7 @@ msgstr ""
"Kun tämä on tehty, suosittelemme käynnistämään X-ympäristön\n"
"uudelleen välttääksesi järjestelmän nimen vaihdoksesta tulevat ongelmat."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -6965,7 +7039,7 @@ msgstr ""
"Testaa yhteytesi net_monitor- tai mcc-työkalulla. Jos yhteytesi ei toimi, "
"voit käynnistää asetustyökalun uudelleen"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6976,7 +7050,7 @@ msgstr ""
"Hyväksy, jos haluat pitää laitteen asetukset sellaisina, kun ne olivat.\n"
"Alla olevien kohtien muokkaaminen korvaa voimassa olevat asetukset."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6985,43 +7059,43 @@ msgstr ""
"Anna koneen IP-asetukset. Kukin kohta tulee syöttää IP-osoitteena,\n"
"pisteillä eroteltuna nelinumeroisena lukuna (esim. 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Asetan verkkolaitetta %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (ajuri %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-osoite"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Verkkopeite"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automaattinen IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Käynnistetty koneen käynnistämisen yhteydessä"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7032,42 +7106,53 @@ 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:368
msgid "DNS server"
msgstr "Nimipalvelin"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Yhdyskäytävä (esim. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Yhdyskäytävän laite"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP-osoitteen tullee olla muotoa 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Proxyjen asettaminen"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP-välityspalvelin:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP-välityspalvelin:"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Selvitä verkkokortti-id (hyödyllistä sylimikroille)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Välityspalvelimen tulee olla muotoa http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Välityspalvelimen tulee olla muotoa ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8457,7 +8542,7 @@ msgstr "Tulostus käynnissä tulostimella \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8948,11 +9033,6 @@ msgstr ""
"Täytä ftp-proxyn tiedot\n"
"Jätä kohta tyhjäksi, jos et haluat ftp-proxyä"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Web-osoitteen tulee alkaa etuliitteellä 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9000,6 +9080,43 @@ msgstr "mkraid epäonnistui (ehkä raid-työkalut puuttuvat?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ei riittävästi osioita RAID tasolle %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Turvataso"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Turvataso"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Etähallinta"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Oletus)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Asetan turvatasoa"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Valmistelen asennusta"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Käynnistä ALSA (Advanced Linux Sound Architecture) äänijärjestelmä"
@@ -9304,7 +9421,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Tiedostojen jako"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Järjestelmä"
@@ -9394,7 +9511,7 @@ msgstr "Ota yhteys internettiin"
#: ../../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"
msgstr ""
@@ -9439,7 +9556,7 @@ msgstr "Käyttöliittymät"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9464,7 +9581,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9480,7 +9597,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9495,7 +9612,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9544,8 +9661,8 @@ 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 your 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
@@ -9581,11 +9698,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Asennan paketteja..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Kirjaudu ulos ja kirjoita sitten Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Kirjaudu uudelleen %s:een aktivoidaksesi muutokset"
@@ -9633,16 +9750,6 @@ msgstr "Lisää käyttäjä"
msgid "Add/Del Clients"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Apua"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9695,53 +9802,68 @@ msgstr "Lisää käyttäjä"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP-asiakas"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Määrittelen..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Siirrä tulostimen asetukset"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "aseta uudelleen"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Aseta käyttämäsi käynnistyslevyke asemaan %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ei levykeasemaa käytettävissä"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9880,13 +10002,13 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9895,41 +10017,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Ei salasanaa"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "En voi avata %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9940,65 +10062,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Varmuuskopioi järjestelmätiedostot..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Kiintolevyn varmuuskopiotiedostot..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Varmuuskopioi käyttäjätiedostot..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Kiintolevyn varmuuskopion edistyminen..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Varmuuskopioi muut tiedostot..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10006,7 +10128,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10015,7 +10137,7 @@ msgstr ""
"tiedostolistan lähetti FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -10025,39 +10147,39 @@ msgstr ""
"\n"
"(!) FTP-yhteysongelma: varmuuskopion lähettäminen FTPn kautta epäonnistui.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "(!) Virhe lähetettäessä sähköpostia. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Tiedostojen valinta"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Valitse tiedostot tai hakemistot ja klikkaa 'Lisää'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10065,27 +10187,27 @@ msgstr ""
"\n"
"Valitse kaikki asetukset, jotka tarvitset.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Varmuuskopioi systeemitiedostot ( /etc-hakemisto )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Käytä kasvavaa varmuuskopiointia (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Älä sisällytä kriittisiä tiedostoja (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10093,65 +10215,67 @@ msgstr ""
"Tällä valitsimella voit palauttaa minkä tahansa version\n"
"/etc-hakemistostasi."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Älä sisällytä selaimen välimuistia"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Käytä kasvavia varmuuskopitoita (älä korvaa vanhoja varmuuskopioita)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Käyttäjät"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Käytä FTP-yhteyttä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Siirrä"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Syötä verkkoaseman nimi tai IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, fuzzy
msgid ""
"Please enter the directory (or module) to\n"
@@ -10160,68 +10284,68 @@ msgstr ""
"Syötä hakemisto, johon tämän\n"
"koneen varmuuskopio laitetaan."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Syötä käyttäjätunnuksesi"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Syötä salasanasi"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Muista tämä salasana"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Käytä CD/DVD-ROM -levyä varmuuskopioille"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Valitse käytettävä CD:n koko"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Siirrä"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Valitse, jos käytät CD-RW-mediaa"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10229,36 +10353,36 @@ msgstr ""
"Syötä kirjoittavan CD-asemasi laitenimi\n"
"esim: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Valitse tiedosto"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Käytä nauhaa varmuuskopioinnissa"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Syötä varmuuskopioinnissa käytettävän laitteen nimi"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10266,57 +10390,57 @@ msgstr ""
"Syötä suurin sallittu koko\n"
"Drakbackup-varmuuskopiolle"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Käytä quotaa varmuuskopiotiedostoille."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Verkko"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Kiintolevy / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tyyppi"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "tunneittain"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "päivittäin"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "viikoittain"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "kuukausittain"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Käytä daemonia"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10324,7 +10448,7 @@ msgstr ""
"Valitse peräkkäisten\n"
"varmuuskopioiden aikaväli"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10332,7 +10456,7 @@ msgstr ""
"Valitse varmuuskopiointiin\n"
"käytettävä media."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10340,72 +10464,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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Lähetä raportti jokaisesta varmuuskopiosta sähköpostitse :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Mitä"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Missä"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Koska"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Lisävalinnat"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup-asetukset"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Valitse, mihin haluat tehdä varmuuskopiot"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "kiintolevylle"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "verkon yli"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Valitse mitä haluat varmuuskopioida"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Varmuuskopioi järjestelmä"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Varmuuskopioi käyttäjät"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Valitse käyttäjät yksitellen"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10413,7 +10537,7 @@ msgstr ""
"\n"
"Varmuuskopion lähteet: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10421,7 +10545,7 @@ msgstr ""
"\n"
"- Järjestelmätiedostot:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10429,7 +10553,7 @@ msgstr ""
"\n"
"- Käyttäjätiedostot:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10437,7 +10561,7 @@ msgstr ""
"\n"
"- Muut tiedostot:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10446,32 +10570,32 @@ msgstr ""
"\n"
"- Tallenna kiintolevylle polulle: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Hiiren laite: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -10480,12 +10604,12 @@ msgstr ""
"\n"
"- Tallenna FTP:llä verkkoasemalle: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -10494,7 +10618,7 @@ msgstr ""
"\n"
"- Tallenna FTP:llä verkkoasemalle: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10503,7 +10627,7 @@ msgstr ""
"\t\t käyttäjätunnus: %s\n"
"\t\t polulla: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -10511,19 +10635,19 @@ msgstr ""
"\n"
"- Valitsimet:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tÄlä sisällytä järjestelmätiedostoja\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tVarmuuskopiot käyttävät: tar ja gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -10532,41 +10656,41 @@ msgstr ""
"\n"
"- Daemon (%s) sisältää :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Kiintolevy.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CD-ROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Verkkoon käyttäen SSH:ta.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Verkkoon käyttäen FTP:tä.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Ei asetettu, valitse Velho tai Edistynyt.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -10574,7 +10698,7 @@ msgstr ""
"Lista palautettavista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10582,259 +10706,259 @@ msgstr ""
"Lista vahingoittuneista tiedoista:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Poista valinta tai poista se seuraavalla kerralla."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Kaikki valitsemasi tieto on "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " onnistuneesti palautettu paikkaan %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Palauta asetukset "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "Ok palauttaakseen muut tiedostot."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Tee järjestelmätiedostoista varmuuskopio ennen:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Valitse päivämäärä, johon tiedon palauttaminen tehdään"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Käytä kiintolevyä varmuuskopiointiin"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Syötä hakemisto, johon tallennetaan:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP-yhteys"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Salattu yhteys"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Palauta kiintolevyltä."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Anna hakemisto, johon varmuuskopiot on tallennettu"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Valitse toinen media, josta palauttaa"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Muu media"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Palauta järjestelmä"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Palauta käyttäjät"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "valitse polku, josta palautat (juurihakemiston sijaan)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Tee uusi varmuuskopio ennen palauttamista (vain kasvavilla varmuuskopioilla)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Poista käyttäjien hakemistot ennen palauttamista."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Poista valitut"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Varmuuskopiot ovat vahingoittuneet"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Palauta kiintolevyltä."
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Palauta osiotaulu"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Palauta käyttäjät"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Koneen nimi"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Salasana"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Käyttäjätunnus"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Koneen nimi:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Palauta muut"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Palauta kaikki varmuuskopiot"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Mukautettu palautus"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Palauta osiotaulu"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Palauta käyttäjät"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Edellinen"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Tallenna"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Tee varmuuskopio"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Palauta"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -10845,14 +10969,14 @@ msgstr ""
" raporttipostiasi ei lähetetty\n"
" Konfiguroi sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Seuraavat paketit asennetaan"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -10861,19 +10985,19 @@ msgstr ""
"Virhe FTP-siirron aikana.\n"
" Korjaa FTP-asetuksesi."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Valitse palautettava tieto..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Valitse varmuuskopioinnissa käytettävä media..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Valitse varmuuskopioitava tieto..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10881,60 +11005,60 @@ msgstr ""
"Asetustiedostoa ei löytynyt\n"
"valitse joko Velho tai Kehittynyt."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Kehityksen alla ... odota."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Varmuuskopioi järjestelmätiedostot"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Varmuuskopioi käyttäjätiedostot"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Varmuuskopioi muut tiedostot"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Kokonaisedistyminen"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "tiedostoja lähetetään FTP:n yli"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Lähetän tiedostoja..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Tee heti asetustiedoston varmuuskopio"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Näytä varmuuskopioinnin asetukset."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr ""
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr ""
# Asennuksen sivuvalikko
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Varmuuskopioi heti"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10966,7 +11090,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10975,7 +11099,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11016,7 +11140,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11044,19 +11168,19 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11073,7 +11197,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11113,7 +11237,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11124,7 +11248,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11137,7 +11261,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11219,8 +11343,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Komentorivityökalut"
@@ -11297,29 +11421,29 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "portti"
# Asennuksen sivuvalikko
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Poistamisen jälkeiset toiminnot"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Kuvankaappaukset löytyvät asennuksen jälkeen hakemistosta %s"
@@ -11420,10 +11544,6 @@ msgstr "Velho..."
msgid "Apply"
msgstr "Toteuta"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Odota hetki... Otetaan asetukset käyttöön"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Yhteys muodostettu"
@@ -11545,7 +11665,7 @@ msgstr "Moduulin nimi"
msgid "Size"
msgstr "Koko"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11610,12 +11730,12 @@ msgstr "Tuloste"
msgid "Build the disk"
msgstr "Muodosta levy"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Varmista, että media on laitteessa %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11624,12 +11744,12 @@ msgstr ""
"Laitteessa %s ei ole mediaa.\n"
"Aseta media."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Prosessia %s ei voitu haarauttaa"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12118,158 +12238,158 @@ msgstr ""
"\n"
"Paina Aseta käynnistääksesi asennusohjelman."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Työryhmä"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "osio %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Käyttäjä"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Poista"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Valmis"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Lisää moduuli"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Lisää uusi tulostin"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Poista valinta kaikista"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Poista valitut"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Hyväksy käyttäjä"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versio: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Portti"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Käytä automaattista tunnistusta"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Käytä automaattista tunnistusta"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Yksittäisten pakettien valinta"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Käyttäjä"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Työryhmä"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Ei yhteyttä"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12281,138 +12401,148 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "käynnistyslevykkeen luonti"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resoluutio"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Valitse tiedosto"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Jakonimi"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "laite"
-#: ../../standalone/draksplash_.c:120
+# Asennuksen sivuvalikko
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "laite"
+msgid "Save theme"
+msgstr "Asenna järjestelmä"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Valitse monitori"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Tulostimen mallin valinta"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Sinun täytyy valita tai syöttää tulostinlaite!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Etsin laitteita ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12553,6 +12683,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "käyttö: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "käyttö: keyboarddrake [--expert] [keyboard]\n"
@@ -12581,11 +12718,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Järjestelmän päivitystä ei voida aloittaa!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12863,16 +13000,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
# Asennuksen sivuvalikko
@@ -12960,7 +13094,7 @@ msgstr "Asenna päivitykset"
msgid "Exit install"
msgstr "Lopeta asennus"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13208,6 +13342,21 @@ msgstr "Multimedia - CD:n poltto"
msgid "Scientific Workstation"
msgstr "Tieteelliinen työasema"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Asennuksen jälkeiset toiminnot"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Välityspalvelimen tulee olla muotoa ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Lopeta"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -13588,9 +13737,6 @@ msgstr "Tieteelliinen työasema"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "Asetan turvatasoa"
-
#~ msgid "Select a graphics card"
#~ msgstr "Valitse näytönohjain"
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index 7317fbef3..7dae638c7 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -86,41 +86,41 @@ msgstr "Cumraigh gach cinn ar leith"
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Cumraigh carta \"%s\" (%s) amhain"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "Freastalaí XFree86: %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "Freastalaí XFree %s le luasghearú crua-earraí 3D TRIALACH"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -128,19 +128,19 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Socraithe"
@@ -161,32 +161,32 @@ msgstr "Réiteach"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ceart go Leor"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Éalaigh"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -271,25 +271,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cealaigh"
@@ -365,11 +365,11 @@ msgstr "Freastalaí XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Tiománaí XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ag tús"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -378,7 +378,7 @@ 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?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -390,7 +390,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr ""
@@ -462,7 +462,7 @@ msgstr "Compact"
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Mód fís"
@@ -470,17 +470,17 @@ msgstr "Mód fís"
msgid "Delay before booting default image"
msgstr ""
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Pasfhocal"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Pasfhocal (arís)"
@@ -514,14 +514,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Aththrialaigh"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Ní mar a chéile na pasfhocail"
@@ -558,162 +558,162 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
msgstr ""
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Suim"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Críochnithe"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Athraigh"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "CO Eile (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "CO Eile (MunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "CO Eile (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Iomha"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Léamh-Scríobh"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Baolach"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Lipéad"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Gnáth"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Méid-Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "GanBhideó"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Scrios iontráil"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Níl ceadaigh an lipéad folamh ann"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Níl aon ranna agat!"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fuair %s %s comhéadan"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "An bhfuil comhéadan %s agat?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Níl"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Tá"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Leámh an t-eolais crua-earra"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ag feistáil tiomanaí do %s, carta %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modíl %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -721,17 +721,17 @@ msgid ""
"For instance, ``io=0x300 irq=7''"
msgstr ""
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Roghachais modúil:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr ""
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -743,109 +743,109 @@ msgid ""
"not cause any damage."
msgstr ""
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr ""
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Cumraigh roghanna"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr ""
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Tá an pasfhocal seo ro-shimplí"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr ""
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Is ann cheana don ainm úsáideora seo"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr ""
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Fíor ainm"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Ainm úsáideora"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Blaosc"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Dealbh"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Uath-Logann"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -854,57 +854,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:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Roghnaigh an Bainistéoir Fhuinneoga a úsásd:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Gach Rud"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Suimigh úsáideoir"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Ag Tosnaigh CUPS"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr ""
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -913,67 +913,67 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr ""
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Bocht"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Árd"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Árd"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranóid"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -983,42 +983,42 @@ msgid ""
"Internet, you should choose a lower level."
msgstr ""
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
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:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Roghnachais"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Roghnaigh liebhéal slándáil"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Roghnaigh liebhéal slándáil"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Roghnaigh cumraíocht an freastalaí"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1026,7 +1026,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1047,58 +1047,58 @@ 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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Deasc"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Clár Tosnú"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1150,128 +1150,128 @@ msgstr "Mód Lilo/Grub"
msgid "Yaboot mode"
msgstr "Mód Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Feistigh córas"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Cruthaigh rann nua"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Earráid"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "Freastalaí XFree86: %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "GanBhideó"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Roghnaigh rang feistiú"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, 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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Cumraigh"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1280,44 +1280,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mód Coras"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ceart go Leor"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, fuzzy, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
@@ -1422,53 +1422,61 @@ msgstr "srathach"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nua"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Freastalaí"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Freastalaí"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr ""
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Roghnachais: %s"
@@ -1553,7 +1561,7 @@ msgstr "Folamh"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Eile"
@@ -1703,7 +1711,7 @@ 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:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Rabhadh"
@@ -2254,7 +2262,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:3529
#, fuzzy
msgid "Username"
msgstr "Ainm úsáideora"
@@ -2269,23 +2277,23 @@ msgstr "Fearannas NIS"
msgid "Search servers"
msgstr "freastalaí DNS"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "Formáidiú %s de %s teipithe"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr ""
@@ -2365,46 +2373,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "cumraíocht"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Tiománaí"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/C_úidiú"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Trialaigh an cumraíocht"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Fan tamall"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2530,7 +2603,8 @@ msgid "/_Quit"
msgstr "Éalaigh"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/C_úidiú"
@@ -2550,75 +2624,76 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Tuairaisc Fabht"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Cúidiú/_Faoi..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "leagan `kernel'"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Leámh an t-eolais crua-earra"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Taispeán Eolas"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Cumraigh luchóg"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "Pointe taca dublach %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Fan tamall"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Scríos Printéir"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d siocand"
@@ -3663,7 +3738,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3678,7 +3753,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3687,31 +3762,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../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
+#: ../../install_any.pm_.c:1030
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"
@@ -3934,7 +4009,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Fáilte go %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Níl dioscthiománt flapach ar fáil"
@@ -3960,11 +4035,11 @@ msgstr "Rann Feistiú"
msgid "Please choose one of the following classes of installation:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr ""
@@ -4038,7 +4113,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Feistiú"
@@ -4061,7 +4136,7 @@ msgstr "Eirigh as Feistiú"
msgid "Choose the packages you want to install"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Ag Feistiú"
@@ -4088,17 +4163,17 @@ msgid "Installing package %s"
msgstr "Ag feistiál pacáiste %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aontaigh"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Tarrtháil"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4109,16 +4184,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Lean ar aghaidh ar aon nós?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr ""
@@ -4215,7 +4290,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4293,7 +4368,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Eocharclár"
@@ -4501,47 +4576,47 @@ msgstr "Cur isteach diosca sa dioscthiomant %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Roghnaigh pacáistí a feistiú ..."
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Fan tamall"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ag Ullmhaigh feistiú"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4550,21 +4625,21 @@ msgstr ""
"Ag feisteáil pacáiste %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Cumraíocht Iar-feistú"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4603,7 +4678,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4615,157 +4690,157 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Cén ceann do chrois ama"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "An bhfuil an clog cruaearrach ar GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Freastalaí NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Scrios Freastalaí CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Gan Printéir"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "An bhfuil ceann eile agat?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Coimriú"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Luchóg"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Am Críos"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printéir"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Carta ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Carta Fuaim"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Carta Telefís"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Chomaid Áitiúl"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Socraigh pasfhocal root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Gan pasfhocal"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Deimniú"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Deimniú LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Freastalaí LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Deimniú NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Fearannas NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Freastalaí NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -4781,21 +4856,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Deimniú LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ainm Fearannas"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -4813,19 +4888,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Cead dioscthiománt flapach"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Dara dioscthiomáint flapach"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Scipeáil"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4841,7 +4916,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -4850,29 +4925,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Brón orm, níl aon dioscthiománt flapach ar fáil"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
#, 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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Ag Cruthaigh diosca thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ag Ullmhaigh ríomhchlar thosnaithe"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -4880,27 +4955,27 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Céard a theastaíonn uait a dhéanamh?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Feistigh cód tosnaithe"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -4911,24 +4986,24 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -4947,16 +5022,16 @@ msgid ""
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Cruthaigh flapach bootáil"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -4965,15 +5040,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Athlódaigh"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Roghnú Grúpa Pacáistí"
@@ -5010,14 +5085,14 @@ msgstr "Réamhioaíocht"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Teacs"
@@ -5467,7 +5542,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5607,15 +5682,15 @@ msgstr "Ar bith"
msgid "No mouse"
msgstr "Luchóg ar bith"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr ""
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "BOG DO ROTHAR!"
@@ -5651,34 +5726,30 @@ msgstr ""
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr ""
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "úsáid dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "úsáid pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "úsáid pppoe"
@@ -5770,7 +5841,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:362
msgid "Configuring network"
msgstr "Cumraigh gréasánú"
@@ -5782,15 +5853,15 @@ 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:367
msgid "Host name"
msgstr "ÓstAinm"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Draíodóir Cumraíocht Gréasánú"
@@ -5830,8 +5901,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Éirigh as cumraíocht"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Cumraigh ISDN"
@@ -5865,23 +5936,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr ""
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Cén cinéal c atá uait?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Níl fhíos agam"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA/ PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5890,25 +5966,25 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Tobscoir"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Lean"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Cén sort carta ISDN atá uait?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -5963,60 +6039,60 @@ msgstr "Cead Freastalaí DNS"
msgid "Second DNS Server (optional)"
msgstr "Dara Freastalaí DNS"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Bainteach le hIdirlíon"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Cén diosca ag a dteastaíonn uait é a bhogadh?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Lean"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Cumraigh gréasánú"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Nasc na hIdirlíon agus cumraíocht"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6028,12 +6104,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6041,7 +6117,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6049,103 +6125,103 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Roghnagih an úsáidoer gneás:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy
msgid "Normal modem connection"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "Pointe taca dublach %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Cumraigh ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy, c-format
msgid "detected on interface %s"
msgstr "Cláréadan Gréasán"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Cumraigh nasc ghréasán"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Nasc LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Roghnaigh na ranna atá le formáidiú"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Nasc Printéir"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6153,27 +6229,27 @@ msgid ""
"%s"
msgstr "An bhfuil tú ag iarraidh an cumraíocht a thrial?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6181,50 +6257,50 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
msgstr ""
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Ag cumrú gléas gréasánú %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr " (tiomáint %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Seoladh IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr ""
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Uath-IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Cruthaigh an diosca "
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6232,41 +6308,49 @@ 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:368
msgid "DNS server"
msgstr "freastalaí DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gaireas na hInneal Geata"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr ""
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Cumraigh seach-freastalaí"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Seach-HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Seach-FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr ""
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
msgstr ""
#: ../../network/shorewall.pm_.c:24
@@ -7622,7 +7706,7 @@ msgstr "Ag dúnadh síos an ghreasán"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8123,10 +8207,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr ""
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8174,6 +8254,43 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr ""
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Roghnaigh liebhéal slándáil"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Roghnaigh liebhéal slándáil"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Scríos Printéir"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr "Gnáth"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Roghnaigh liebhéal slándáil"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Fan tamall, ag ullmhaigh feistiú"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8407,7 +8524,7 @@ msgstr "Idirlíon"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mód Coras"
@@ -8499,7 +8616,7 @@ 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"
msgstr ""
@@ -8546,7 +8663,7 @@ msgstr "Cláréadan Gréasán"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8571,7 +8688,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -8587,7 +8704,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8602,7 +8719,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8651,8 +8768,8 @@ 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 your 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
@@ -8689,11 +8806,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ag feistiál pacáiste %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
@@ -8740,17 +8857,6 @@ msgstr "Suimigh úsáideoir"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/C_úidiú"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -8803,51 +8909,66 @@ msgstr "Suimigh úsáideoir"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Ag cumraigh IDE"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Éirigh as cumraíocht"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr ""
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Cur isteach diosca sa dioscthiomant %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Níl dioscthiománt flapach ar fáil"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -8971,13 +9092,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Bain trial as arís"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -8986,41 +9107,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Earráid ag oscailt %s do scríobh: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9031,68 +9152,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9100,922 +9221,924 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Earráid ag léamh comhad %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Scrios ciú"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Dealaigh Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Aththrialaigh"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Gan pasfhocal"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Cén leagan amach atá ar d'eocharchlársa"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Roghnaigh rann le do thoil"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Roghnaigh Comhad"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Cláréadan Gréasán"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Cineál"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Fan tamall"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Rothar"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Roghachais modúil:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Gaireas luchóige: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Roghnachais"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Teastáil an luchóg, le do thoil"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Nasc LAN"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Nasc Printéir"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Eile"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Feistigh córas"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Cén cinéal luchóg atá agat?"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Scrios ciú"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Aisig ó dhiosca flapach"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Scriobh clár-ranna"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "ÓstAinm"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Pasfhocal"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Socraithe"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Scriobh clár-ranna"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Clár Tosnú"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Aisig ó comhad"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr ""
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Roghnaight do theangam le do thoil."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Droch comhad chúltaca"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Sabháil i gcomhad"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Cumraíocht Gréasánú"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "cumraíocht"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Éirigh as cumraíocht"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Socraigh córas chomhad"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10047,7 +10170,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10056,7 +10179,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10097,7 +10220,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10125,17 +10248,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10152,7 +10275,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10192,7 +10315,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10203,7 +10326,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10216,7 +10339,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10298,8 +10421,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr ""
@@ -10374,28 +10497,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Poirt"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Eirigh as Feistiú"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr ""
@@ -10503,11 +10626,6 @@ msgstr "Draíodoir..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Trialaigh an cumraíocht"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -10627,7 +10745,7 @@ msgstr "Ainm Modúl"
msgid "Size"
msgstr "Méid"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -10695,24 +10813,24 @@ msgstr "Aschur"
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Teip ar glaoch `fork': %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11167,154 +11285,154 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grupa na hOibre"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "rann %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Scríos"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Críochnithe"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Suimigh Modúil"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Gan Printéir"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Scrios ciú"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
msgstr ""
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Leagan: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Poirt"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Roghnú Grúpa Pacáistí"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Ainm úsáideora"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grupa na hOibre"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Cumraigh ADSL"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11326,136 +11444,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Trialaigh an cumraíocht"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Réiteach"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Roghnaigh gníomh"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Comh. ainm"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "preview"
+msgid "Preview"
msgstr "feist"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "choose color"
-msgstr "Roghnaigh scáileán"
+msgid "Save theme"
+msgstr "Feistigh córas"
#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Choose color"
+msgstr "Roghnaigh scáileán"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Nasc Printéir"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Gaireas Printéir (URI)"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Scríos Printéir"
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11594,6 +11723,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -11620,11 +11755,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -11902,16 +12037,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -11987,7 +12119,7 @@ msgstr "Feistigh córas"
msgid "Exit install"
msgstr "Eirigh as Feistiú"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12237,6 +12369,14 @@ msgstr "Ilmheánach"
msgid "Scientific Workstation"
msgstr "Stáisiún Oibre"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Cumraíocht Iar-feistú"
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Éalaigh"
+
#~ msgid "You don't have any partitions!"
#~ msgstr "Níl aon ranna agat!"
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 26ec486ff..6c93a6ad7 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr "Usar detección automática"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Axudante da configuración de rede"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -115,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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con aceleración 3D por hardware EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -138,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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -147,12 +147,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalizado"
@@ -173,32 +173,32 @@ msgstr "Resolución"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Aceptar"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Saír"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -296,25 +296,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cancelar"
@@ -391,11 +391,11 @@ msgstr "Servidor XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Controlador de XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Lanzar X11 ó arrincar"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -404,7 +404,7 @@ msgstr ""
"Pódese configurar o seu ordenador para que entre automaticamente\n"
"en X ó arrincar. żDesexa que se execute X ó reiniciar?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -416,7 +416,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "żQue tipo de conexión RDSI ten?"
@@ -489,7 +489,7 @@ msgstr "Compacto"
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modo de vídeo"
@@ -497,17 +497,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Contrasinal"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Contrasinal (de novo)"
@@ -543,14 +543,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Tente de novo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Os contrasinais non coinciden"
@@ -587,7 +587,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -595,156 +595,156 @@ 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:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Engadir"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "żQue tipo de entrada desexa engadir?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imaxe"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Raíz"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Agregar"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lectura-escritura"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Táboa"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Por omisión"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr ""
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Quitar entrada"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Etiqueta baleira non permitida"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Debe ter unha partición de intercambio"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Esta etiqueta xa se está a usar"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s interfaces %s atopadas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "żTen algunha outra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "żTen algunha interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Non"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Si"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Mire a información sobre o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando o controlador para a tarxeta %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"As opcións son da forma Ťnome=valor nome2=valor2 ...ť.\n"
"Por exemplo pode ter Ťio=0x300 irq=7ť"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opcións do módulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "żQue controlador de %s desexa probar?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -783,15 +783,15 @@ msgstr ""
"analizar o equipo pode provocar que se pare, pero non debería\n"
"causar ningún dano."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Autodetección"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Especificar as opcións"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -800,62 +800,62 @@ msgstr ""
"Fallo o cargar o módulo %s\n"
"żDesexa retentalo con outros parámetros?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s xa foi engadido)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Este contrasinal é demasiado simple"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Indique o nome de usuario"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Este nome de usuario xa está engadido"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Este nome de usuario xa está engadido"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -864,32 +864,32 @@ msgstr ""
"Introduza un usuario\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aceptar usuario"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome de usuario"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Login automático"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -899,59 +899,59 @@ msgstr ""
"como un usuario. Se non quere usar esta característica, prema o botón\n"
"cancelar."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Escolla o usuario por defecto:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Escolla o xestor de fiestras para executar:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Escolla a lingua que desexe usar."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Todas"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Engadir usuario"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS iniciando"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,42 +960,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Benvida ós crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Estándar"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1005,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1013,7 +1013,7 @@ msgstr ""
"Os contrasinais están activados, pero o uso como ordenador de rede aínda\n"
"non se recomenda."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1022,13 +1022,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1042,7 +1042,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:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1051,36 +1051,36 @@ 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:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcións"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Escola o nivel de seguridade"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Establecendo o nivel de seguridade"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Escolla as opcións para o servidor"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1093,7 +1093,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1117,59 +1117,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
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:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Menú Inicio"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "axuda aínda non implementada.\n"
@@ -1225,129 +1225,129 @@ msgstr "Modo de marcación"
msgid "Yaboot mode"
msgstr "Modo de arrinque"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instalar sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Crear unha nova partición"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Erro"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "bo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Clase de instalación"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, 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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Configurar as X"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Gardar a selección de paquetes"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1356,44 +1356,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Lanzar o sistema X-Window ó iniciar"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Non, non quero login automático"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Si, quero login automático con este (usuario, escritorio)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Aceptar"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "non se pode abrir /etc/inittab para lectura: %s"
@@ -1498,54 +1498,62 @@ msgstr "serie"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novo"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Probe o seu rato"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "O proxy debería ser http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcións: %s"
@@ -1634,7 +1642,7 @@ msgstr "Baleiro"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Outros"
@@ -1786,7 +1794,7 @@ msgstr ""
"A táboa de particións de rescate non ten\n"
"o mesmo tamańo. żContinuar de calquera xeito?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Advertencia"
@@ -2345,7 +2353,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:3529
#, fuzzy
msgid "Username"
msgstr "Nome de usuario"
@@ -2360,23 +2368,23 @@ msgstr "Dominio NIS"
msgid "Search servers"
msgstr "Servidor DNS"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "O formato %s de %s fallou"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2465,46 +2473,109 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Erro ó abrir %s para escritura: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configuración da LAN"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Controlador"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Axuda"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor, agarde... Aplicando a configuración"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Agarde, por favor"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2631,7 +2702,8 @@ msgid "/_Quit"
msgstr "Saír"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/A_xuda"
@@ -2651,76 +2723,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Comunicar erro"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Axuda/_Acerca..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Autodetección"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detectar discos duros"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Mire a información sobre o hardware"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mostrar información"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Configurar o rato"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detectado no porto %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Agarde, por favor"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Lendo a base de datos de controladores de CUPS..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d segundos"
@@ -3895,7 +3968,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3910,7 +3983,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3919,20 +3992,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3940,12 +4013,12 @@ msgstr ""
"Para usar esta selección de paquetes gardada, arrinque a instalación con "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo o ficheiro %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4191,7 +4264,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Benvido a %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ningunha disqueteira dispońible"
@@ -4222,11 +4295,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selección individual de paquetes"
@@ -4304,7 +4377,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalar"
@@ -4327,7 +4400,7 @@ msgstr "Desinstalar"
msgid "Choose the packages you want to install"
msgstr "Escolla os paquetes que desexa instalar"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalando"
@@ -4354,17 +4427,17 @@ msgid "Installing package %s"
msgstr "Instalando o paquete %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceptar"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rexeitar"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4379,16 +4452,16 @@ msgstr ""
"non o ten, prema Cancelar para omitir a instalación deste Cd-Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "żSeguir adiante?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Houbo un erro ó ordenar os paquetes:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Houbo un erro ó instalar os paquetes:"
@@ -4485,7 +4558,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4563,7 +4636,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -4779,31 +4852,31 @@ msgstr "Insira un disquete na unidade %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Elixa o paquete a instalar"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Agarde"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4813,16 +4886,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etiquetado \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Preparando a instalación"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4831,21 +4904,21 @@ msgstr ""
"Instalando o paquete %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuración trala instalación"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4916,7 +4989,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4928,165 +5001,165 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Escoller un espello do que coller os paquetes"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "żCal é a súa zona horaria?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "żO reloxo interno do seu ordenador usa a hora GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Sen impresora"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "żTen algunha outra?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Resume"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zona horaria"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impresora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Tarxeta RDSI"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Tarxeta de son"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Tarxeta de TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Impresora local"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Contrasinal de root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Sen contrasinal"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "Servidor"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticación NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5102,21 +5175,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticación"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome de dominio"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5145,19 +5218,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primeira unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Segunda unidade de disquete"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Omitir"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5184,7 +5257,7 @@ msgstr ""
"grave do sistema. żDesexa crear un disco de arrinque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5193,28 +5266,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, pero non hai ningunha disqueteira dispońible"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira un disquete na unidade %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Creando o disco de arrinque"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparando o cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5222,11 +5295,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "żDesexa usar aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5234,16 +5307,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Cargador de arrinque"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5254,17 +5327,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Creando un disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5274,7 +5347,7 @@ msgstr ""
"\n"
"żDesexa realmente saír agora?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5307,15 +5380,15 @@ msgstr ""
"da instalación, hai un capítulo na Guía do Usuario Oficial\n"
"de Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Xerar disquete de auto-instalación"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5329,15 +5402,15 @@ msgstr ""
"\n"
"Pode preferir realizar novamente a instalación.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizada"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Reproducir"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Gardar a selección de paquetes"
@@ -5374,14 +5447,14 @@ msgstr "Avanzado"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Texto"
@@ -5837,7 +5910,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Puntos de montaxe circulares %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Quitar primeiro os volumes lóxicos\n"
@@ -5975,15 +6048,15 @@ msgstr "ningún"
msgid "No mouse"
msgstr "Ningún rato"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Probe o seu rato"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "ĄMOVA A RODA!"
@@ -6019,11 +6092,11 @@ msgstr "Pechar árbore"
msgid "Toggle between flat and group sorted"
msgstr "Mudar entre lista completa e ordenada por grupos"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar á Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6033,23 +6106,19 @@ msgstr ""
"Algunhas conexións usan pptp, e algunhas usan dhcp.\n"
"Se non o sabe con certeza, escolla 'usar pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "usar dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "usar pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "usar pptp"
@@ -6144,7 +6213,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:362
msgid "Configuring network"
msgstr "Configurando a rede"
@@ -6160,15 +6229,15 @@ 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:367
msgid "Host name"
msgstr "Nome de máquina"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Axudante da configuración de rede"
@@ -6208,8 +6277,8 @@ msgid "Old configuration (isdn4net)"
msgstr "ĄDetectouse unha configuración de firewall!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configuración da RDSI"
@@ -6249,23 +6318,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "żQué protocolo desexa usar?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "żQué tipo de tarxeta ten?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Non sei"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6279,19 +6353,19 @@ msgstr ""
"\n"
"Se ten unha tarxeta PCMCIA, ten que cońecer a irq e a e/s da tarxeta.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abortar"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continuar"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "żCal é a sua tarxeta RDSI?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6299,7 +6373,7 @@ msgstr ""
"Detectouse unha Tarxeta RDSI PCI, pero se descońece o tipo. Seleccione unha "
"tarxeta PCI na seguinte pantalla."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Non se atopou ningunha tarxeta RDSI PCI. Seleccione unha na próxima pantalla."
@@ -6352,7 +6426,7 @@ msgstr "Primeiro Servidor DNS (opcional)"
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6360,7 +6434,7 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6368,11 +6442,11 @@ msgstr ""
"\n"
"Pode reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Está neste intre conectado á internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6380,36 +6454,36 @@ msgstr ""
"\n"
"Pode conectar á Internet ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Non está neste intre conectado á Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "conexión por RDSI"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Configurar a rede"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Conexión e configuración de Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6423,12 +6497,12 @@ msgstr ""
"\n"
"Pode desconectar ou reconfigurar a súa conexión."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuración da rede"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6439,7 +6513,7 @@ msgstr ""
"Prema Aceptar para manter a configuración, ou Cancelar para reconfigurar a "
"conexión de rede e Internet.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
#, fuzzy
msgid ""
"Welcome to The Network Configuration Wizard.\n"
@@ -6452,99 +6526,99 @@ msgstr ""
"Vaise configurar a súa conexión á internet/rede.\n"
"Se non quere usar a detección automática, desmarque a caixa.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Escolla o perfil para configurar"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Usar detección automática"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detectando os dispositivos..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Conexión normal por módem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectado no porto %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "conexión por RDSI"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detectouse %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Conexión LAN"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectouse na interface %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Conexión por cable"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Conexión por cable"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Conexión LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "tarxeta(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Elixa a ferramenta que queira usar"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Compartición da conexión á Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "żDesexa que a conexión se inicie ó arrincar?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuración da rede"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6552,7 +6626,7 @@ msgid ""
"%s"
msgstr "żDesexa reiniciar a rede?"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6562,7 +6636,7 @@ msgstr ""
"\n"
"Agora vai ser aplicada ó seu sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6570,14 +6644,14 @@ msgstr ""
"Tras facer iso, aconséllase reiniciar o sistema X para\n"
"evitar os problemas de mudar o nome de máquina."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6589,7 +6663,7 @@ msgstr ""
"Simplemente acepte para manter o dispositivo configurado.\n"
"Se modifica os campos de embaixo, subsituirá esta configuración."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6599,43 +6673,43 @@ msgstr ""
"Cada valor ten que ser introducido coma un enderezo IP en\n"
"notación decimal con puntos (por exemplo: 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Configurar o dispositivo de rede %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (controlador %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Enderezo IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Máscara de rede"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automático"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Iniciado o arrincar"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6647,42 +6721,53 @@ 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:368
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositivo de pasarela"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Configuración dos proxys"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "O proxy debería ser http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "O proxy debería ser ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "O proxy debería ser http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8082,7 +8167,7 @@ msgstr "Desactivando a rede"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8595,11 +8680,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "O proxy debería ser http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8649,6 +8729,43 @@ msgstr "mkraid fallou (żpode que non estean as raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non hai particións dabondo para o nivel RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Establecendo o nivel de seguridade"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Establecendo o nivel de seguridade"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Opcións da impresora remota lpd"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Por omisión)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Establecendo o nivel de seguridade"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Por favor, agarde, preparando a instalación"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8947,7 +9064,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -9043,7 +9160,7 @@ msgstr "Conectar á Internet"
#: ../../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"
msgstr ""
@@ -9090,7 +9207,7 @@ msgstr "Interface de rede"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9115,7 +9232,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9131,7 +9248,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9146,7 +9263,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9195,8 +9312,8 @@ 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 your 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
@@ -9233,11 +9350,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalando o paquete %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Saia da sesión e use Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Entre de novo en %s para activar os cambios"
@@ -9285,16 +9402,6 @@ msgstr "Engadir usuario"
msgid "Add/Del Clients"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Axuda"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9347,53 +9454,68 @@ msgstr "Engadir usuario"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Configurando..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configuración da LAN"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "reconfigurar"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Insira un disquete na unidade %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ningunha disqueteira dispońible"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9517,13 +9639,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Probar portos"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9532,41 +9654,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Adaptador %s: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9577,68 +9699,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9646,922 +9768,924 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Erro lendo o ficheiro %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Selección dos grupos de paquetes"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows(FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Usuarios"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Tente de novo"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Sen contrasinal"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Escolla a disposición do seu teclado."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Prema nunha partición"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Seleccione un ficheiro"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Agarde"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Opcións do módulo:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolla os paquetes que desexa instalar."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
#, fuzzy
msgid ""
"\n"
"- User Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
#, fuzzy
msgid ""
"\n"
"- Other Files:\n"
msgstr "Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositivo do rato: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcións"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, 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:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Probe o seu rato"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Conexión LAN"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Selección da conexión da impresora"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Outros"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Escolla o seu tipo de rato."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Eliminar fila"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaurar a partir dun disquete"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Táboa de particións de rescate"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nome de máquina"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Contrasinal"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nome de usuario"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nome de máquina: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizado"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Táboa de particións de rescate"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaurar a partir dun ficheiro"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Estado:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Vanse instalar os seguintes paquetes"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Escolla a lingua que desexe usar."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Ficheiro de backup incorrecto"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Gardar nun ficheiro"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuración da rede"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuración da LAN"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Sistemas de ficheiros"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10593,7 +10717,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10602,7 +10726,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10643,7 +10767,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10671,17 +10795,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10698,7 +10822,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10738,7 +10862,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10749,7 +10873,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10762,7 +10886,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10844,8 +10968,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Ferramentas de consola"
@@ -10921,28 +11045,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Porto"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Saír da instalación"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Pode escoller outras linguas que estarán dispońibles trala instalación"
@@ -11042,10 +11166,6 @@ msgstr "Axudante..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor, agarde... Aplicando a configuración"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11163,7 +11283,7 @@ msgstr "Nome do módulo"
msgid "Size"
msgstr "Tamańo"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11228,24 +11348,24 @@ msgstr "Saída"
msgid "Build the disk"
msgstr "Crear o disco"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11734,157 +11854,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grupo de traballo"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partición %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Nome de usuario"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Borrar"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Feito"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Engadir un módulo"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Sen impresora"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Eliminar fila"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Aceptar usuario"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versión: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porto"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Usar detección automática"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Usar detección automática"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Gardar a selección de paquetes"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Nome de usuario"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grupo de traballo"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Non conectado"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11896,137 +12016,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "creación do disquete de arrinque"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resolución"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Escolla a acción"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nome de recurso compartido"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositivo"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositivo"
+msgid "Save theme"
+msgstr "Instalar sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Escolla o monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Conexión da impresora"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "URI do dispositivo de impresión"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Detectando os dispositivos..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12167,6 +12297,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uso: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uso: keyboarddrake [--expert] [keyboard]\n"
@@ -12196,11 +12333,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -12482,16 +12619,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12567,7 +12701,7 @@ msgstr "Instalar sistema"
msgid "Exit install"
msgstr "Saír da instalación"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12820,6 +12954,21 @@ msgstr "Multimedia - Gravación de CD"
msgid "Scientific Workstation"
msgstr "Estación de traballo científica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configuración trala instalación"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "O proxy debería ser ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Saír"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (non funciona en BIOS antigas)"
@@ -12910,9 +13059,6 @@ msgstr "Estación de traballo científica"
#~ msgid "Test again"
#~ msgstr "Probar de novo"
-#~ msgid "Setting security level"
-#~ msgstr "Establecendo o nivel de seguridade"
-
#~ msgid "Select a graphics card"
#~ msgstr "Seleccione unha tarxeta gráfica"
@@ -12990,3 +13136,6 @@ msgstr "Estación de traballo científica"
#~ msgid "Percentage of packages to install"
#~ msgstr "Porcentaxe de paquetes a instalar"
+
+#~ msgid "/Help/_Report Bug"
+#~ msgstr "/Axuda/_Comunicar erro"
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index c01c9f503..b3cb7e389 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-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -91,24 +91,24 @@ msgstr "Podesi sve zaslone nezavisno"
msgid "Use Xinerama extension"
msgstr "Koristi Xinerama proširenje"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Podesi samo karticu \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s sa EXPERIMENTALNOM 3D hardware akceleracijom"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ msgstr ""
"UPOZORAVAMO VAS DA JE OVO EKSPERIMENTALNA PODRŠKA I MOŽE ZAMRZNUTI VAŠE "
"RAČUNALO."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalacijski zaslonski upravljački program)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Prilagođeno"
@@ -175,32 +175,32 @@ msgstr "Rezolucija"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "U redu"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Završi"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -299,25 +299,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Odustani"
@@ -394,11 +394,11 @@ msgstr "XFree86 poslužitelj: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 upravljački program: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X kod pokretanja sustava"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -407,7 +407,7 @@ msgstr ""
"Mogu podesiti da se X podigne automatski kod podizanja sustava.\n"
"Da li želite da se X automatski pokreće?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -419,7 +419,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Kakav tip ISDN veze koristite ?"
@@ -492,7 +492,7 @@ msgstr "Zbijeno"
msgid "compact"
msgstr "zbijeno"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video mod"
@@ -500,17 +500,17 @@ msgstr "Video mod"
msgid "Delay before booting default image"
msgstr "Odgoda prije bootiranja uobičajenog imagea"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lozinka"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Lozinka (provjera)"
@@ -546,14 +546,14 @@ msgstr ""
"Postavka ``Ograničene opcije na komandnoj liniji'' nema svrhe ako ne unesete "
"lozinku"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Molim pokušajte ponovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Lozinke se ne podudaraju"
@@ -595,7 +595,7 @@ msgstr ""
"\n"
"Sa kojeg diska želite podizati?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -603,148 +603,148 @@ msgstr ""
"Ovo su trenutni zapisi.\n"
"Možete dodati još koji ili urediti postojeći."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Dodaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gotov"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Promjeni"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Kakvu vrstu zapisa želite dodati"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Drugi OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Drugi OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Drugi OS (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Slika (image)"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Dodaj na kraj"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Čitaj-piši"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tablica"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nesigurno"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Oznaka"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Uobičajeno"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-veličina"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NemaVidea"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ukloni zapis"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Prazna oznaka nije dozvoljena"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Morate odrediti sliku kernela"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Morate odrediti root particiju"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Ova oznaka već postoji"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Pronašao sam %s %s međusklopova"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Da li imate još koji?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Da li imate %s međusklopova?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Pokaži info o hardveru"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaliram upravljački program %s za karticu %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, fuzzy, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -753,7 +753,7 @@ msgstr ""
"Sada možete unijeti opcije za modul %s.\n"
"Primjetite da svaka adresa treba biti unešena sa prefiksom 0x kao '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -764,17 +764,17 @@ msgstr ""
"Postavke su formata ``ime=vrijednost ime2=vrijednost2...''.\n"
"Na primjer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Postavke modula:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Koji %s upravljački program želite isprobati?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -793,15 +793,15 @@ msgstr ""
"računalo za informacije koje treba? Ponekad, isprobavanje može zamrznuti\n"
"vaše računlo, ali ne bi trebalo izazvati nikakvu štetu."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Auto. ispitaj"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Odredi postavke"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -810,64 +810,64 @@ msgstr ""
"Učitavanje modula %s nije uspjelo.\n"
"Da li želite pokušati ponovo sa drugim parametrima?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "pristup X programima"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "dozvoli \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "pristup administracijskim datotekama"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "pristup rpm alatima"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(već postoji %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Lozinka je prejednostavna"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Molim dajte korisniku korisničko ime"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ovaj korisnik već postoji"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ovaj korisnik već postoji"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Dodaj korisnika"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -876,32 +876,32 @@ msgstr ""
"Unesite korisnika\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Prihvati korisnika"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Puno ime"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Korisničko ime"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Ljuska"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Auto-prijava"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -909,54 +909,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:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Izaberite uobičajenog korisnika:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Izaberite prozorski upravitelj koji želite pokrenuti:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Molim izaberite jezik koji želite koristiti."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Sve"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Dozvoli svim korisnicima"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Nema dijeljenja"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Nužni paket %s nedostaje"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -972,11 +972,11 @@ msgstr ""
"\n"
"\"Proizvoljno\" će omogućiti dozvoljavanje po korisniku.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Pokreni userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -984,31 +984,31 @@ msgstr ""
"Dijeljenje po korisniku koristi grupu \"fileshare\". \n"
"Možete koristiti userdrake za dodavanje korisnika u navedenu grupu."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Dobrodošli Crackeri"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standardno"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Visok"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Viši"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoidan"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1019,7 +1019,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1027,7 +1027,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:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1035,7 +1035,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1043,7 +1043,7 @@ msgstr ""
"Već postoje neka ograničenja i više automatskih provjera se pokreće svake "
"noći."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1058,7 +1058,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:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1066,35 +1066,35 @@ msgstr ""
"Temeljeno na prijašnjoj razini, ali je sustav potpuno zatvoren.\n"
"Sigurnosne značajke su na maksimumu."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcije"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izaberite sigurnosni nivo"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Sigurnosna razina"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Koristi libsafe za poslužitelje"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1107,7 +1107,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1130,58 +1130,58 @@ 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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Radna površina"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nema još implementirane pomoći.\n"
@@ -1233,106 +1233,106 @@ msgstr "Lilo/grub mod"
msgid "Yaboot mode"
msgstr "Yaboot mod"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instaliraj sustav"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Stvori novu particiju"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Greška"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Kopiram %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "NemaVidea"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Odaberite razred instalacije"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1341,22 +1341,22 @@ msgstr ""
"Trenutno koristite %s kao Upravitelj Boot-a.\n"
"Pritisnite na Podesi za pokretanje čarobnjaka za postavljanje."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Podesi"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Spremi odabir paketa"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1365,44 +1365,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistemski mod"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Pokreni X-Window sustav pri podizanju"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ne, ne želim automatsko prijavljivanje"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, želim automatsko prijavljivanje sa ovim korisnikom i okružjem"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "U redu"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ne mogu otvoriti /etc/inittab za čitanje: %s"
@@ -1499,53 +1499,61 @@ msgstr "Austrija"
msgid "United States"
msgstr "Sjedinjene Američke Države"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novi"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montiraj"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Poslužitelj"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Upišite brzinu cd snimača"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Poslužitelj"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcije: %s"
@@ -1636,7 +1644,7 @@ msgstr "Prazno"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Ostali"
@@ -1781,7 +1789,7 @@ msgstr ""
"Backup particijske tablice nema istu veličinu\n"
"Da ipak nastavim?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Upozorenje"
@@ -2341,7 +2349,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:3529
#, fuzzy
msgid "Username"
msgstr "Korisničko ime"
@@ -2355,23 +2363,23 @@ msgstr "NIS domena"
msgid "Search servers"
msgstr "Poslužitelji za pretraživanje"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatiranje %s nije uspjelo"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montiranje particije %s u direktorij %s neuspješno"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "greška kod demontiranja %s: %s"
@@ -2460,48 +2468,111 @@ msgstr "Nema ništa za uraditi"
msgid "Error opening %s for writing: %s"
msgstr "Greška prilikom otvaranja %s za pisanje: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "CUPS postavke"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Upravljački program"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pomoć"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Molim pričekajte"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "X upravljački program"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Nepoznati model"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2628,7 +2699,8 @@ msgid "/_Quit"
msgstr "Završi"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoć"
@@ -2648,76 +2720,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr ""
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Pomoć/_O programu"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Auto. ispitaj"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Otkrivanje hard diskova"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Pokaži info o hardveru"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Prikaži informacije"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Podesi miš"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detektiran na portu %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Molim pričekajte"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Uklanjam pisač \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundi"
@@ -4725,7 +4798,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Morate također formatirati %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4751,7 +4824,7 @@ msgstr ""
"\n"
"Da li zaista želite instalirati te poslužitelje?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4760,20 +4833,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Ne mogu koristiti broadcast bez NIS domene"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Umetnite FAT formatiranu disketu u pogon %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Ova disketa nije FAT formatirana"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4781,12 +4854,12 @@ msgstr ""
"Za korištenje spremljenog odabira paketa, podignite instalaciju sa ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Greška prilikom čitanja datoteke %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -5029,7 +5102,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Dobrodošli u %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Disketni pogon nije dostupan"
@@ -5058,11 +5131,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Odabir grupe paketa"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individualan odabir paketa"
@@ -5140,7 +5213,7 @@ msgstr "Prikaži automatski odabrane pakete"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instaliraj"
@@ -5160,7 +5233,7 @@ msgstr "Minimalna instalacija"
msgid "Choose the packages you want to install"
msgstr "Odaberite pakete koje želite instalirati"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instaliram"
@@ -5187,17 +5260,17 @@ msgid "Installing package %s"
msgstr "Instaliram paket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Prihvati"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Odbij"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5214,16 +5287,16 @@ msgstr ""
"Cd-Rom-a."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Da ipak nastavim?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Javila se greška prilikom sortiranja paketa:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Pojavila se greška kod instalacije paketa:"
@@ -5348,7 +5421,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5539,7 +5612,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tipkovnica"
@@ -5748,11 +5821,11 @@ msgstr "Umetnite disketu koja sadržava izbor paketa"
msgid "Selected size is larger than available space"
msgstr "Izabrana veličina je veća nego raspoloživ prostor"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tip instalacije"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5760,19 +5833,19 @@ msgstr ""
"Niste izabrali niti jednu grupu paketa\n"
"Izaberite minimalnu instalaciju ako želite"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Sa X-ima"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Sa osnovnom dokumentacijom (preporučeno!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Stvarno malena instalacija (posebice bez urpmia)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5783,16 +5856,16 @@ msgstr ""
"Ako imate samo neke od dolje navedenih CDa odznačite one koje nemate i "
"kliknite U redu."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom naslovljen \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Pripremam instalaciju"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5801,21 +5874,21 @@ msgstr ""
"Instaliram paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Postava nakon instalacije"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5886,7 +5959,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
#, fuzzy
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
@@ -5906,160 +5979,160 @@ msgstr ""
"\n"
"Da li želite instalirati dogradnju?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Izaberite mirror sa kojeg želite skinuti pakete"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Koja je vaša vremenska zona?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Vaš hardverski sat namješten je na GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatska vremenska sinkronizacija (koristeći NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP Poslužitelj"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Udaljeni CUPS poslužitelj"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nema pisača"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Da li imate ISA zvučnu karticu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumarno"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Miš"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Vremenska zona"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Pisac"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN kartica"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Zvučna kartica"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV kartica"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Dobavi Windows fontove"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokalne datoteke"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Podešavanje root lozinke"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Bez lozinke"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Provjera autentičnosti"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP Poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "NIS Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domena"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS Poslužitelj"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -6075,21 +6148,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "LDAP Autentifikacija"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Ime domene"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6120,19 +6193,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Prvi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Drugi disketni pogon"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Preskoči"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6159,7 +6232,7 @@ msgstr ""
"Da li želite napraviti proizvoljnu boot disketu za vaš sustav?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6173,28 +6246,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Žalim, međutim disketni pogon nije dostupan"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Umetnite disketu u pogon %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Stvaram boot disketu"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Pripremam bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6206,11 +6279,11 @@ msgstr ""
"Instalacija će nastaviti, ali ćete morati\n"
" koristiti BootX da podignete vaše računalo"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Da li želite koristiti aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6218,16 +6291,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instaliranje bootloadera"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6244,17 +6317,17 @@ msgstr ""
" Tada napišite: shut-down\n"
"Pri slijedećem podizanju trebali biste vidjeti prompt bootloadera."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Pravim auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6264,7 +6337,7 @@ msgstr ""
"\n"
"Želite li zaista završiti?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6297,16 +6370,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
#, fuzzy
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakesoft.com/sales/contact"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Napravi auto instalacijsku disketu"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6320,15 +6393,15 @@ msgstr ""
"\n"
"Možete preferirati da ponovite instalaciju.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatski"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ponovno prikaži"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Spremi odabir paketa"
@@ -6364,14 +6437,14 @@ msgstr "Napredno"
msgid "Basic"
msgstr "Osnovno"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Slijedeće"
@@ -6821,7 +6894,7 @@ msgstr "Desna \"Windows\" tipka"
msgid "Circular mounts %s\n"
msgstr "Kružno montiranje %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Ukloni logički volumen prvo\n"
@@ -6960,15 +7033,15 @@ msgstr "niti jedan"
msgid "No mouse"
msgstr "Nema miša"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Molimo istestirajte miša."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Za aktiviranje miša,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "POMAKNITE VAŠ KOTAČIĆ!"
@@ -7005,11 +7078,11 @@ msgstr "Sažmi stablo"
msgid "Toggle between flat and group sorted"
msgstr "Prebaci između ravno i grupno sortiranog"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Spoji se na Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7019,23 +7092,19 @@ msgstr ""
"Neke veze koriste pptp, a nekoliko koriste dhcp.\n"
"Ukoliko neznate, izaberite 'koristi pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "koristi dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "koristi pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "koristi pptp"
@@ -7138,7 +7207,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:362
msgid "Configuring network"
msgstr "Podešavam mrežu"
@@ -7154,15 +7223,15 @@ 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:367
msgid "Host name"
msgstr "Ime računala"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Čarobnjak mrežnih postavki"
@@ -7209,8 +7278,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Stara konfiguracija (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN postavke"
@@ -7246,23 +7315,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Koji protokol želite koristiti ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Kakvu karticu posjedujete?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ne znam"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7276,19 +7350,19 @@ msgstr ""
"\n"
"Ukoliko imate PCMCIA karticu, morate znati irq i io vaše kartice.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Prekini"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Nastavi"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Kakvu ISDN karticu imate?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7296,7 +7370,7 @@ msgstr ""
"Pronašao sam ISDN PCI karticu međutim ne znam kojeg je tipa. Molim izaberite "
"vašu PCI karticu na slijedećem ekranu."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nisam našao niti jednu ISDN PCI karticu. Molim izaberite vašu PCI karticu na "
@@ -7350,7 +7424,7 @@ msgstr "Prvi DNS poslužitelj (opciono)"
msgid "Second DNS Server (optional)"
msgstr "Drugi DNS poslužitelj (opciono)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7358,7 +7432,7 @@ msgstr ""
"\n"
"Možete isključiti ili ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7366,11 +7440,11 @@ msgstr ""
"\n"
"Možete ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Trenutno ste spojeni na internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7378,32 +7452,32 @@ msgstr ""
"\n"
"Možete se spojiti na Internet ili ponovno konfigurirati vašu vezu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Niste trenutno spojeni na Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Poveži"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Odspoji"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Podesi vezu"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internet veza i postava"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Sada ćemo podesiti %s vezu."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7422,12 +7496,12 @@ msgstr ""
"\n"
"Pritisnite U redu za nastavak."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Mrežne postavke"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7438,7 +7512,7 @@ msgstr ""
"Pritisnite U redu da zadržite postojeće postavke, ili Odustani za ponovno "
"konfiguriranje vaše mrežne/Internet veze.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7451,72 +7525,72 @@ msgstr ""
"Ukoliko ne želite koristiti auto detekciju, odselektirajte kvadratić s "
"potvrdom.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Izaberite profil za konfiguriranje"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Koristi auto detekciju"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Otkrivanje uređaja..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normalna modemska veza"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detektiran na portu %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN veza"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detektirano %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL veza"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detektirano na međusklopu %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kablovska veza"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "detektirana kablovska veza"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN veza"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet kartica(e) pronađene"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Izaberite vezu koju želite podesiti"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7526,23 +7600,23 @@ msgstr ""
"Molimo izaberite koji želite koristiti.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internet veza"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Da li želite pokreniti vašu vezu kod svakog podizanja (boot) sustava ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Mrežne postavke"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Mreža treba biti ponovno pokrenuta"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7553,7 +7627,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7563,7 +7637,7 @@ msgstr ""
"\n"
"Konfiguracija će sada biti primjenjena na vašem sustavu.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7571,7 +7645,7 @@ msgstr ""
"Nakon što je to napravljeno, preporučamo da ponovno pokrenete vaše X\n"
"okružje kako bi izbjegli probleme prilikom promjene imena računala."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7582,7 +7656,7 @@ msgstr ""
"ili mcca. Ako vaša veza ne radi, možda ćete morati ponovno pokrenuti\n"
"konfiguraciju"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7594,7 +7668,7 @@ msgstr ""
"Jednostavno prihvatite ovaj uređaj konfiguriran.\n"
"Promjena polja niže će prepisati ovu konfiguraciju."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7604,42 +7678,42 @@ msgstr ""
"Svaka stavka treba biti unesena kao IP adresa odvojena\n"
"točkama (npr. 1.2.3.4)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Podešavam mrežni uređaj %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (upravljački program %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresa"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmaska"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatski IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Pokrenuto pri podizanju"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7651,42 +7725,53 @@ 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:368
msgid "DNS server"
msgstr "DNS poslužitelj"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (npr. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway uređaj"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti oblika 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP adresa treba biti oblika 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Postava proxy-a"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
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:400
msgid "Proxy should be http://..."
msgstr "Proxy treba biti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy treba biti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url treba početi sa 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9204,7 +9289,7 @@ msgstr "Ispis na pisaču \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9749,11 +9834,6 @@ msgstr ""
"Molimo unesite ftp proxy informacije\n"
"Ostavite prazno ukoliko ne želite ftp proxy"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url treba početi sa 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9801,6 +9881,43 @@ msgstr "mkraid nije uspio (možda niste instalirali raidtools alate?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nema dovoljno particija za RAID nivo %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Sigurnosna razina"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Sigurnosna razina"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Udaljeno administriranje"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Uobičajeno)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Podešavam sigurnosni nivo"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Molimo pričekajte, Pripremam instalaciju"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Pokreni ALSA (Naprednu Linux Zvučnu Arhitekturu) zvučni sustav"
@@ -10109,7 +10226,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Dijeljenje datoteka"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sustav"
@@ -10206,7 +10323,7 @@ msgstr "Spoji se na Internet"
#: ../../share/advertising/03-internet.pl_.c:10
#, fuzzy
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"
msgstr ""
@@ -10266,7 +10383,7 @@ msgstr "Korisnička sučelja"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10295,7 +10412,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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 "
@@ -10314,7 +10431,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10330,7 +10447,7 @@ msgstr ""
#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Potpun raspon Linux rješenja, kao i posebne ponude proizvoda i 'goodiesa', "
"sudostupni online preko naše e-trgovine"
@@ -10381,8 +10498,8 @@ 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 your 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
@@ -10418,11 +10535,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instaliram pakete..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Molim prvo se odjavite te pritisnite Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Molim ponovo se logirajte u %s kako bi aktivirali promjenjeno"
@@ -10472,16 +10589,6 @@ msgstr "Dodaj korisnika"
msgid "Add/Del Clients"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Pomoć"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10535,53 +10642,68 @@ msgstr "Dodaj korisnika"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klijent"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Podešavam..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Napredne postavke"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "ponovno postavi"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Molim, umetnite Boot disketu u pogon %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Disketni pogon nije dostupan"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10730,13 +10852,13 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "ukupni progres"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10745,41 +10867,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Bez lozinke"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Ne mogu otvoriti %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10790,65 +10912,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Sigurnosna pohrana sustavskih datoteka"
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Sigurnosna pohrana datoteka na tvrdom disku..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Sigurnosna pohrana korisničkih datoteka"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Progres sigurnosne pohrane tvrdog diska"
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Sigurnosna pohrana drugih datoteka"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10856,7 +10978,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10865,7 +10987,7 @@ msgstr ""
"popis datoteka poslan FTPom: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
#, fuzzy
msgid ""
"\n"
@@ -10876,39 +10998,39 @@ msgstr ""
"(!) problem sa FTP vezom: nije bilo moguće poslati vaše pohranjene "
"datotekeFTPom.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Greška prilikom čitanja datoteke %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Odabir datoteka"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Izaberi datoteke ili mape i stisni 'Dodaj'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10916,26 +11038,26 @@ msgstr ""
"\n"
"Provjerite sve opcije koje trebate.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Sigurnosno pohranjivanje vaših sustavskih datoteka ( /etc mapa )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Koristi inkrementalno pohranjivanje (ne zamjenjuje staru pohranu)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Izostavi kritične datoteke (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10943,133 +11065,135 @@ msgstr ""
"S ovom opcijom moći ćete povratiti bilo koju inačicu\n"
"vašeg /etc direktorija."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Izostavi cache preglednika (browsera)"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Koristi inkrementalnu pohranu (ne zamjenjuje stare pohrane)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windowse (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Korisnici"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Koristi FTP vezu za pohranu"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
#, fuzzy
msgid ""
" Transfer \n"
"Now"
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Upišite ime hosta ili IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, 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:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Upišite svoje korisničko ime"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Upišite svoju lozinku"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Zapamti ovu lozinku"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Koristi CD/DVDROM za pohranu"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Izaberite prostor na CDu"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Naznačite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Naznačite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
#, fuzzy
msgid " Erase Now "
msgstr "Prebaci"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Naznačite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Naznačite da li koristite CDRW medij"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11077,36 +11201,36 @@ msgstr ""
"Upišite ime vašeg CD snimača\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Odaberite datoteku"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Koristi vrpcu za pohranu"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
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:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11114,57 +11238,57 @@ msgstr ""
"Upišite maksimalnu dozvoljenu\n"
" veličinu za Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Upišite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Koristi quotu za pohranjene datoteke"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Mreža"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Tvrdi disk / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Vrsta"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "svaki sat"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "svaki dan"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "svaki tjedan"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "svaki mjesec"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Koristi daemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11172,13 +11296,13 @@ msgstr ""
"Izaberite vremenski razmak između\n"
"dvije sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Izaberite medij za pohranu."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -11186,71 +11310,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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Ovjde pošalji izvještaj mailom poslije svake pohrane:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Što"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Gdje"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Kada"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Još opcija"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup postava"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Izaberite gdje želite pohranjivati"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "na tvrdi disk"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "preko mreže"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Izaberite što želite pohranjivati"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Pohrani sustav"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Pohrani korisnike"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Ručno izaberi korisnika"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11258,7 +11382,7 @@ msgstr ""
"\n"
"Izvori za pohranu: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11266,7 +11390,7 @@ msgstr ""
"\n"
"- Sustavske datoteke:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11274,7 +11398,7 @@ msgstr ""
"\n"
"- Korisničke datoteke:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11282,7 +11406,7 @@ msgstr ""
"\n"
"- Druge datoteke:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11291,32 +11415,32 @@ msgstr ""
"\n"
"- Snimi na tvrdi disk u putanju: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Uređaj miša: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11325,12 +11449,12 @@ msgstr ""
"\n"
"Snimi FTPom na host: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11339,7 +11463,7 @@ msgstr ""
"\n"
"Snimi FTPom na host: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11348,7 +11472,7 @@ msgstr ""
"\t\t korisničko ime: %s\n"
"\t\t u putanju: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11356,19 +11480,19 @@ msgstr ""
"\n"
"- Opcije:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tIzostavi sustavske datoteke\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tPohrana koristi tar i bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tPohrana koristi tar i gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11377,41 +11501,41 @@ msgstr ""
"\n"
"- Daemon (%s) uključi :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Tvrdi disk.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Mrežu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Mrežu SSHom.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Mrežu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Mrežu FTPom.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Nema postavki, molimo izaberite Čarobnjaka ili Napredno.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11419,7 +11543,7 @@ msgstr ""
"Popis podataka za povrat:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11427,259 +11551,259 @@ msgstr ""
"Popis oštećenih podataka:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Molimo poništite odabir ili ga uklonite idući put"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Pohranjene datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr " Svi vaši izabrani podaci su "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Uspješno povraćeni na %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Povrati postavke "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "U redu da bi povratili ostale datoteke"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Pohrani sustavske datoteke prije:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "izaberite nadnevak za povrat"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Koristi tvrdi disk za pohranu"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Upišite mapu za snimanje:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP veza"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Sigurna veza"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Upišite mapu u koju ste pohranili podatke"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Izaberite drugi medij s kojeg ćete povratiti podatke"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Ostali mediji"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Povrati sustav"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "izaberi putanju za povrat (umjesto / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Napravi novu sigurnosnu pohranu prije povrata (samo za inkrementalne "
"pohrane.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Ukloni mape korisnika prije povrata."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "Pohranjene datoteke su oštećene"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Povrati s tvrdog diska"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Vrati particijsku tabelu"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Ime računala"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Lozinka"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Korisničko ime"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Ime računala: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Povrati ostalo"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Povrati sve pohrane"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Prilagođena pohrana"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Vrati particijsku tabelu"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Povrati korisnike"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Prijašnje"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Snimi"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Složi sigurnosnu pohranu"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Povrati"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11690,14 +11814,14 @@ msgstr ""
" vaš mail sa izvještajem nije poslan\n"
" molimo podesite sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11706,19 +11830,19 @@ msgstr ""
"Greška tijekom slanja datoteke putem FTPa.\n"
" Ispravite svoje FTP postavke."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Izaberite podatke za povrat"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Izaberite medij za sigurnosnu pohranu..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Izaberite podatke koje ćete pohraniti..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11726,59 +11850,59 @@ msgstr ""
"Nije pronađena datoteka s postavkama \n"
"pritisnite Čarobnjaka ili Napredno."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Razvija se ... molimo sačekajte."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Pohrani sustavske datoteke"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Pohrani korisničke datoteke"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Pohrani ostale datoteke"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Ukupni progres"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "slanje datoteka FTPom"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Šaljem datoteke..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Pohrani iz datoteke sa postavkama"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Pogledaj postavke sigurnosne pohrane"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Postavke čarobnjaka"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Napredne postavke"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Pohrani sada"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
#, fuzzy
msgid ""
"options description:\n"
@@ -11839,7 +11963,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11853,7 +11977,7 @@ msgstr ""
" namjesiti myhostname ili mydomain u /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11931,7 +12055,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
#, fuzzy
msgid ""
"restore description:\n"
@@ -11984,18 +12108,18 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -12025,7 +12149,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:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12103,7 +12227,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12121,7 +12245,7 @@ msgstr ""
"no što je pošaljete poslužitelju.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12142,7 +12266,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:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12262,8 +12386,8 @@ msgstr ""
# ../../share/compssUsers
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konzolni Alati"
@@ -12340,28 +12464,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "port"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Post deinstalacija"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshotovi će biti raspoloživi poslije instalaciju u %s"
@@ -12463,10 +12587,6 @@ msgstr "Čarobnjak..."
msgid "Apply"
msgstr "Primjeni"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Molimo pričekajte... Primjenjujem konfiguraciju"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Povezan"
@@ -12588,7 +12708,7 @@ msgstr "Ime modula"
msgid "Size"
msgstr "Veličina"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12653,12 +12773,12 @@ msgstr "Ispis"
msgid "Build the disk"
msgstr "Napravi disk"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Uvjerite se da je medij\tprisutan za uređaj %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12667,12 +12787,12 @@ msgstr ""
"Ne postoji medij za uređaj %s.\n"
"Molimo ubacite jedan."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Ne mogu napraviti fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13157,158 +13277,158 @@ msgstr ""
"\n"
"Kliknite na Postavke ukoliko želite pokreniti čarobnjak za postavljanja."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Radna grupa"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "particija %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Obriši"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gotov"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Dodaj modul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Dodaj novi pisač"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Odselektiraj sve"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Ukloni izabrano"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Prihvati korisnika"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Inačica: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Koristi auto detekciju"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Koristi auto detekciju"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Spremi odabir paketa"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Korisnik"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Radna grupa"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nema TV kartice!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
#, fuzzy
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
@@ -13329,137 +13449,147 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "pravljenje boot diskete"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezolucija"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Izaberite datoteku"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Ime sharea"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "uređaj"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "uređaj"
+msgid "Save theme"
+msgstr "Instaliraj sustav"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Odaberite monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Izabir modela pisača"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Morate izabrati/upisati pisač/uređaj!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Otkrivanje uređaja ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13604,6 +13734,13 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uporaba: keyboarddrake [--exper] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uporaba: keyboarddrake [--exper] [keyboard]\n"
@@ -13633,11 +13770,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Ne mogu pokrenuti živu nadogradnju !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13922,16 +14059,13 @@ msgstr ""
"Možete sada skenirati dokumente korištenjem ''XSanea'' izMultimedija/Grafika "
"u aplikacijskom izborniku."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -14006,7 +14140,7 @@ msgstr "Instaliraj dogradnje sustava"
msgid "Exit install"
msgstr "Izlaz iz instalacije"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
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-*"
@@ -14285,6 +14419,21 @@ msgstr "Multimedija - CD prženje"
msgid "Scientific Workstation"
msgstr "Znanstvena radna stanica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Postava nakon instalacije"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy treba biti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Završi"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -14842,9 +14991,6 @@ msgstr "Znanstvena radna stanica"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "Podešavam sigurnosni nivo"
-
#~ msgid "Select a graphics card"
#~ msgstr "Odaberite grafičku karticu"
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 15ce425d7..b2b49985a 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -1,4 +1,4 @@
-# Instal Grafis Mandrake
+# Instalator Grafis Mandrake
# Copyright (C) 1999 Mandrakesoft
# Budi Rachmanto <rac@linux-mandrake.com>, 2001-2002
# Linux Indonesia <http://www.linux.or.id>, 1999-2001
@@ -9,8 +9,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 0.1\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-08-17 22:55+09:00\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-08 11:57+0900\n"
"Last-Translator: Budi Rachmanto <rac@linux-mandrake.com>\n"
"Language-Team: Bahasa Indonesia <id@li.org>\n"
"MIME-Version: 1.0\n"
@@ -94,24 +94,24 @@ msgstr "Konfigurasikan semua head secara terpisah"
msgid "Use Xinerama extension"
msgstr "Gunakan ekstensi Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurasikan hanya kartu \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s dengan akselerasi hardware 3D PERCOBAAN"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -151,12 +151,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalasi driver display)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Customized"
@@ -176,32 +176,32 @@ msgstr "Resolusi"
msgid "Test"
msgstr "Tes"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Keluar"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -232,7 +232,7 @@ msgstr "Pembuat"
#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "Probe Plug'n Play gagal. Pilihlah monitor yang benar"
#: ../../Xconfig/monitor.pm_.c:114
msgid ""
@@ -297,25 +297,25 @@ msgstr "Pilih resolusi dan kedalaman warna"
msgid "Graphics card: %s"
msgstr "Kartu grafis: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Batal"
@@ -328,9 +328,8 @@ msgid "Do you want to test the configuration?"
msgstr "Anda ingin tes konfigurasi ini?"
#: ../../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"
+msgstr "Awas: pengujian kartu grafis ini dapat membekukan komputer"
#: ../../Xconfig/various.pm_.c:29
#, c-format
@@ -392,11 +391,11 @@ msgstr "Server XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Antarmuka grafis saat startup"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -405,7 +404,7 @@ msgstr ""
"Komputer Anda bisa diset agar menjalankan X saat booting.\n"
"Anda mau fasilitas ini?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -425,7 +424,7 @@ msgstr ""
"\n"
"Anda punya fitur ini?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Norm apa yg digunakan TV Anda?"
@@ -497,7 +496,7 @@ msgstr "Kompak"
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Mode video"
@@ -505,17 +504,17 @@ msgstr "Mode video"
msgid "Delay before booting default image"
msgstr "Delay sebelum boot ke image default"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Katasandi"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Katasandi (lagi)"
@@ -550,14 +549,14 @@ msgid ""
msgstr ""
"Pilihan ``Batasi parameter command line'' tidak ada gunanya tanpa katasandi"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Silakan ulangi"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Katasandi tidak sama"
@@ -599,7 +598,7 @@ msgstr ""
"\n"
"Di drive mana Anda boot?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -607,148 +606,148 @@ msgstr ""
"Ini adalah entri yang lain lagi.\n"
"Anda boleh tambahkan atau mengubah yang sudah ada."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Tambah"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Selesai"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifikasi"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Tipe entri mana yang hendak ditambahkan?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "OS Lain (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "OS Lain (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "OS Lain (Mindows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Sambung"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Tak aman"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Label"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-size"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "NoVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Hapus entri"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Label tidak boleh kosong"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Anda harus tentukan image kernel"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Anda harus tentukan partisi swap"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Label ini sudah dipakai"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Ditemukan interface %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Anda punya lagi?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Punya antarmuka %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Tidak"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Lihat info hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Menginstal driver untuk kartu %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -757,7 +756,7 @@ msgstr ""
"Anda dapat memberikan opsi terhadap modul %s.\n"
"Ingat, semua alamat harus diisikan dengan awalan 0x misalnya '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -768,17 +767,17 @@ msgstr ""
"Parameter biasanya dalam format ``nama=nilai nama2=nilai2...''.\n"
"Misalnya, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Pilihan Modul:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Driver %s mana yang harus saya coba?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -794,15 +793,15 @@ msgstr ""
"biarkan saja drivernya melakukan deteksi sendiri parameternya? Deteksi\n"
"otomatis bisa membuat komputer hang), tapi tak merusak."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Probe otomatis"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Tentukan opsi"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -811,63 +810,61 @@ msgstr ""
"Module %s gagal diload.\n"
"Mau coba lagi dengan parameter yang lain?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "akses ke program X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "akses ke peralatan rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "izinkan \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "akses ke file administratif"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "akses ke peralatan rpm"
+msgstr "akses ke peralatan jaringan"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "akses ke peralatan rpm"
+msgstr "akses ke peralatan kompilasi"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(sudah ditambahkan %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Katasandi ini terlalu sederhana"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Silakan tulis nama user"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Nama user terlalu panjang"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "User ini sudah ada sebelumnya"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Tambah user"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -876,32 +873,32 @@ msgstr ""
"Masukkan user\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Buat user"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nama Lengkap"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nama user"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikon"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -909,54 +906,54 @@ msgstr ""
"Komputer Anda dapat diset agar secara otomatis login dg satu user.\n"
"Anda ingin pakai feature ini?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Pilih user default:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Pilih manajer window yg akan dipakai:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Pilih bahasan yg akan dipakai."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Semua"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Izinkan semua user"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Tiada pemakaian bersama"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Paket wajib %s hilang"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -970,11 +967,11 @@ msgstr ""
"\n"
"\"Custom\" memungkinkan tuning masing-masing user.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Luncurkan userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -982,31 +979,31 @@ msgstr ""
"Sharing per-user menggunakan grup \"fileshare\". \n"
"Anda dapat memakai userdrake utk menambah user di grup ini."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Selamat Datang di Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Lemah"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standar"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Kuat"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Lebih Kuat"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Pengecut"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1017,13 +1014,13 @@ msgstr ""
"mesin yang terhubung ke mesin lain atau ke ke Internet. Tidak akan ada\n"
"akses katasandi."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
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:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1031,7 +1028,7 @@ msgstr ""
"Ini adalah sekuriti standar, dianjurkan untuk komputer yang akan\n"
"terkoneksi ke Internet sebagai klien."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1039,7 +1036,7 @@ msgstr ""
"Sudah ada beberapa batasan, dan beberapa pengecekan otomatis berjalan tiap "
"malam."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1052,7 +1049,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:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1060,32 +1057,32 @@ msgstr ""
"Sama dengan level sebelumnya, tapi sistem sepenuhnya ditutup.\n"
"Fitur sekuriti maksimum."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Opsi Dasar DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Pilih tingkat keamanan yg Anda inginkan"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Tingkat keamanan"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Gunakan libsafe utk server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Library penahan serangan string format dan overflow buffer"
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Admin Keamanan (login / email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1100,7 +1097,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1125,58 +1122,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "belum ada help.\n"
@@ -1228,64 +1225,63 @@ msgstr "mode Lilo/Grub"
msgid "Yaboot mode"
msgstr "mode Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Instal tema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Display tema di konsol"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "Membuat partisi baru"
+msgstr "Buat tema baru"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Backup %s ke %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ada Kesalahan"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "gagal mem-backup pesan lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Salin %s ke %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "tak dapat mengubah pesan lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Pesan lilo tak ditemukan"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Tak dapat menulis /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Tulis %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1293,17 +1289,17 @@ msgstr ""
"Tak dapat menulis /etc/sysconfig/bootsplash\n"
"File tak ditemukan."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, 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:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Buat initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1312,45 +1308,45 @@ msgstr ""
"Luncurkan \"lilo\" sbg root di baris perintah utk menyelesaikan instalasi "
"tema LiLo."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Luncur ulang 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Catatan"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Instalasi tema LiLo dan Bootsplash sukses"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Instalasi tema gagal!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, 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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurasikan"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Pilihan Splash"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Tema"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1364,44 +1360,44 @@ msgstr ""
"Anda dapat memilih\n"
"secara terpisah"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Layar lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mode sistem"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Jalankan X-Window saat sistem dimulai"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Tidak, saya tak mau autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ya, saya mau autologin dg (user,desktop) ini"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "gagal baca file /etc/inittab: %s"
@@ -1498,50 +1494,58 @@ msgstr "Austria"
msgid "United States"
msgstr "Amerika Serikat"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Baru"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Mount"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Masukkan URL server WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URL harus dimulai dg http:// atau https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Pilihan: %s"
@@ -1594,9 +1598,8 @@ msgid "Details"
msgstr "Detil"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr "Printer tak ditemukan!"
+msgstr "Harddisk tak ditemukan"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1628,7 +1631,7 @@ msgstr "Kosong"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Lainnya"
@@ -1770,7 +1773,7 @@ msgstr ""
"Backup tabel partisi tidak memiliki ukuran yg sama\n"
"Jalan terus?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Awas"
@@ -2235,7 +2238,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm_.c:1150
msgid "Read-only"
-msgstr ""
+msgstr "Baca-saja"
#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
@@ -2245,7 +2248,7 @@ msgstr "Ukuran: %s\n"
#: ../../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"
+msgstr "Ukuran: %s silinder, %s head, %s sektor\n"
#: ../../diskdrake/interactive.pm_.c:1153
msgid "Info: "
@@ -2302,7 +2305,7 @@ msgstr "Klik salah satu media"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
msgid "Can't login using username %s (bad password?)"
-msgstr "Gagal login dg nama user %s (katakunci salah?)"
+msgstr "Gagal login dg nama user %s (katasandi salah?)"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
msgid "Domain Authentication Required"
@@ -2319,11 +2322,11 @@ msgstr "Nama user yang mana"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
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."
+msgstr "Masukkan nama user, katasandi dan nama domain utk mengakses host ini."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
-msgstr "Nama user"
+msgstr "Nama pengguna"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
msgid "Domain"
@@ -2333,23 +2336,23 @@ msgstr "Domain"
msgid "Search servers"
msgstr "Cari Server"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s proses format dari %s gagal"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "penyambungan partisi %s ke direktori %s gagal"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "error melepas mount %s: %s"
@@ -2367,7 +2370,7 @@ msgid "server"
msgstr "server"
#: ../../fsedit.pm_.c:240
-#, fuzzy, c-format
+#, 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"
@@ -2376,7 +2379,7 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Tabel partisi rusak tak terbaca :(\n"
+"Tabel partisi %s 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"
@@ -2435,48 +2438,110 @@ msgstr "Tiada yang dikerjakan"
msgid "Error opening %s for writing: %s"
msgstr "error membuka file %s untuk ditulisi: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
-msgstr ""
+msgstr "Tiada driver alternatif"
-#: ../../harddrake/sound.pm_.c:156
-#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#: ../../harddrake/sound.pm_.c:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
+"Tak diketahui adanya driver alternatif OSS/ALSA utk kartu suara Anda (%s)"
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "konfigurasi CUPS"
+msgstr "Konfigurasi suara"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
+"Di sini dapat dipilih driver alternatif (OSS atau ALSA) utk kartu suara Anda "
+"(%s)"
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "Driver"
+msgstr "Driver:"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pertolongan"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Tunggu, konfigurasi sedang diterapkan..."
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Tunggulah"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
-msgstr "Driver X"
+msgstr "Tiada driver yg diketahui"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgstr "Tak diketahui adanya driver utk kartu suara Anda (%s)"
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr "Model tak dikenal"
+msgstr "Driver tak dikenal"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2485,6 +2550,11 @@ msgid ""
"<install at mandrakesoft dot com>\n"
"with subject: unlisted sound driver \"%s\""
msgstr ""
+"Driver \"%s\" kartu suara Anda tak terdaftar\n"
+"\n"
+"Mohon kirimkan keluaran perintah \"lspcidrake -v\" ke\n"
+"<install at mandrakesoft dot com>\n"
+"dengan subject: unlisted sound driver \"%s\""
#: ../../harddrake/ui.pm_.c:16
msgid "Model"
@@ -2586,20 +2656,20 @@ msgid "the vendor name of the device"
msgstr "nama pembuat device"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "Halaman tes alternatif (A4)"
+msgstr "Driver alternatif"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
-msgstr ""
+msgstr "daftar driver alternatif untuk kartu suara ini"
#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_Keluar"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Tolong"
@@ -2620,14 +2690,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Laporan Bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_About..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Tentang Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2635,56 +2709,53 @@ msgstr ""
"Inilah HardDrake, alat konfigurasi hardware Mandrake.\n"
"Versi:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Pengarang:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 versi "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Hardware terdeteksi"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Info"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfigurasi modul"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Jalankan alat konfigurasi"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Pendeteksian sedang berjalan"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Tunggulah"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Konfigurasi tiap parameter modul dapat dilakukan di sini."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Jalankan \"%s\"..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "Penyalaan kelas %s\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "primer"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "sekunder"
@@ -3181,7 +3252,6 @@ msgstr ""
"jika Anda gagal mengkonfigurasi display."
#: ../../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"
@@ -3222,7 +3292,7 @@ msgstr ""
"berisi sejumlah alat utk mereparasi sistem yg rusak karena kegagalan power,\n"
"salah ketik, alpa kata sandi, dan lain-lain.\n"
"\n"
-"Bila step ini diklik, Anda akan diminta memasukkan disket ke drive. Disket\n"
+"Jika \"Ya\", Anda akan diminta memasukkan disket ke drive. Disket\n"
"harus kosong / berisi data yg tak Anda perlukan. Tak perlu diformat sebab\n"
"DrakX akan menulis ulang seluruh disket."
@@ -4432,7 +4502,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Anda harus juga memformat %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4454,7 +4524,7 @@ msgstr ""
"\n"
"Jadi instal server ini?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4462,21 +4532,25 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"Paket berikut akan dihapus agar sistem Anda dapat di-upgrade: %s\n"
+"\n"
+"\n"
+"Benarkah Anda ingin menghapus paket tersebut?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Tanpa domain NIS, broadcast tak dapat dipakai"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Disket ini tak diformat dengan sistem FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4484,12 +4558,12 @@ msgstr ""
"Untuk menggunakan pilihan paket yang sudah disimpan sebelumnya, bootlah "
"instalasi dengan pilihan ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Error saat membaca file %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4728,7 +4802,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Selamat Datang di %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Tidak ada floppy drive"
@@ -4757,11 +4831,11 @@ msgstr "Kelas Instalasi"
msgid "Please choose one of the following classes of installation:"
msgstr "Pilihlah kelas instalasi berikut:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Pilihan Grup Paket"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Pilih paket sendiri"
@@ -4837,7 +4911,7 @@ msgstr "Tunjukkan paket yang sudah dipilih secara otomatis"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instal"
@@ -4857,7 +4931,7 @@ msgstr "Instalasi minimal"
msgid "Choose the packages you want to install"
msgstr "Pilih paket yang akan diinstal"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalasi"
@@ -4884,17 +4958,17 @@ msgid "Installing package %s"
msgstr "Instalasi paket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Terima"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Tolak"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4909,16 +4983,16 @@ msgstr ""
"tekan Batal untuk menghindari instalasi dari Cd-Rom ini."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Jalan terus?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ada error mengurutkan paket:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Ada error saat instalasi paket:"
@@ -5048,7 +5122,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5166,7 +5240,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5243,7 +5317,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:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Keyboard"
@@ -5447,11 +5521,11 @@ msgstr "Masukkan disket yg berisi seleksi paket"
msgid "Selected size is larger than available space"
msgstr "Ukuran terpilih melebihi area yg ada"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipe instalasi"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5459,19 +5533,19 @@ msgstr ""
"Anda belum memilih grup paket.\n"
"Pilih instalasi minimal yang Anda ingin:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Dengan X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Dengan dokumentasi dasar (disarankan!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Sungguh instalasi minimal (khususnya tanpa urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5481,16 +5555,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Label CD-ROM \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Sedang menyiapkan instalasi"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5499,21 +5573,21 @@ msgstr ""
"Instalasi paket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Konfigurasi instalasi akhir"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Masukkan floppy boot ke drive %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5580,7 +5654,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5598,154 +5672,154 @@ msgstr ""
"\n"
"Ingin instal update ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Pilih mirror tempat Anda ingin mengambil paket program"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Pilih zonawaktu Anda"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Jam hardware diset ke GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "sinkronisasi waktu otomatis (dg NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Server CUPS remote"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Tidak ada printer"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Anda punya kartu suara ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Jalankan \"sndconfig\" setelah instalasi untuk konfigurasi kartu suara"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Kartu suara tak terdeteksi. Coba \"harddrake\" setelah instalasi"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Ringkasan"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zonawaktu"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Kartu ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Kartu suara"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Kartu TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Domain Mindows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "File lokal"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Set katasandi root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Tiada katasandi"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Otentikasi"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Otentikasi LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "Basis dn LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Otentikasi NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domain NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5763,28 +5837,28 @@ msgstr ""
"Agar ini dapat bekerja dg PDC W2K, Anda mungkin perlu minta tolong admin "
"menjalankan: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
"everyone / add dan me-reboot server.\n"
-"Anda mungkin juga perlu namauser/katakunci Admin Domain utk mengikutkan "
+"Anda mungkin juga perlu namauser/katasandi Admin Domain utk mengikutkan "
"mesin ke domain Mindows(TM).\n"
"Jika jaringan belum aktif, Drakx akan mencoba ikut domain setelah tahapan "
"setup jaringan.\n"
"Jika setup dan otentikasi domain gagal, jalankan 'smbpasswd -j DOMAIN -U USER"
-"%PASSWORD' menggunakan Domain Mindows(tm) Anda, dan Namauser/Katakunci "
+"%PASSWORD' menggunakan Domain Mindows(tm) Anda, dan Namauser/Katasandi "
"Admin, setelah boot system.\n"
"Perintah 'wbinfo -t' akan mengetes apakah rahasia otentikasi Anda baik."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Otentikasi Domain Mindows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Nama User Admin Domain"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
-msgstr "Katakunci Admin Domain"
+msgstr "Katasandi Admin Domain"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5809,19 +5883,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Drive disket Pertama"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Drive disket kedua"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Lewatkan"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5844,7 +5918,7 @@ msgstr ""
"memudahkan kita untuk merecover sistem dari kegagalan. Ingin buat bootdisk?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5858,28 +5932,28 @@ msgstr ""
"pembuatan bootdisk di disket 1.44 Mb mungkin gagal,\n"
"karena XFS perlu driver amat besar)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Tiada floppy drive tersedia"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Masukkan disket ke %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Membuat bootdisk"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Membuat bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5891,11 +5965,11 @@ msgstr ""
"Instal akan berlanjut, tapi Anda perlu memakai\n"
"BootX utk mem-boot mesin Anda"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ingin pakai aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5903,15 +5977,15 @@ msgstr ""
"Ada error saat install aboot,\n"
"paksakan instalasi walau merusak partisi awal?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instalasi bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalasi bootloader gagal. Ada kesalahan berikut:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5928,17 +6002,17 @@ msgstr ""
" kemudian: shut-down\n"
"Anda akan melihat prompt bootloader pada boot selanjutnya."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Lagi buat disket auto install"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5948,7 +6022,7 @@ msgstr ""
"\n"
"Anda ingin keluar sekarang?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5980,15 +6054,15 @@ msgstr ""
"Informasi untuk konfigurasi sistem juga tersedia di \n"
"bab Instalasi akhir di Buku Petunjuk Resmi Linux Mandrake."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Buat floppy instalasi otomatis"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6002,15 +6076,15 @@ msgstr ""
"\n"
"Mungkin Anda perlu mengulangi instalasinya.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Otomatis"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ulang"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Simpan pilihan paket"
@@ -6046,14 +6120,14 @@ msgstr "Tambahan"
msgid "Basic"
msgstr "Dasar"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Lanjut"
@@ -6199,9 +6273,8 @@ msgid "Belgian"
msgstr "Belgia"
#: ../../keyboard.pm_.c:177
-#, fuzzy
msgid "Bengali"
-msgstr "aktifkan"
+msgstr "Bengal"
#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
@@ -6216,9 +6289,8 @@ msgid "Brazilian (ABNT-2)"
msgstr "Brazil (ABNT-2)"
#: ../../keyboard.pm_.c:183
-#, fuzzy
msgid "Bosnian"
-msgstr "Estonia"
+msgstr "Bosnia"
#: ../../keyboard.pm_.c:184
msgid "Belarusian"
@@ -6242,7 +6314,7 @@ msgstr "Jerman (tanpa dead key)"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
#: ../../keyboard.pm_.c:192
msgid "Danish"
@@ -6278,11 +6350,11 @@ msgstr "Yunani"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarat"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukh"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
@@ -6314,7 +6386,7 @@ msgstr "Itali"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Eskimo"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
@@ -6329,9 +6401,8 @@ msgid "Latin American"
msgstr "Amerika Latin"
#: ../../keyboard.pm_.c:218
-#, fuzzy
msgid "Laotian"
-msgstr "Latvia"
+msgstr "Laos"
#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
@@ -6359,20 +6430,19 @@ msgstr "Macedonia"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burma)"
#: ../../keyboard.pm_.c:227
-#, fuzzy
msgid "Mongolian (cyrillic)"
-msgstr "Serbia (cyrillic)"
+msgstr "Mongol (cyrillic)"
#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "Malta (Inggris)"
#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "Malta (Amerika)"
#: ../../keyboard.pm_.c:230
msgid "Dutch"
@@ -6503,7 +6573,7 @@ msgstr "Kunci \"Mindows\" kanan"
msgid "Circular mounts %s\n"
msgstr "Mount melingkar %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Hapus dulu volume logiknya\n"
@@ -6563,9 +6633,8 @@ msgid "Genius NetScroll"
msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+msgstr "microsoft Explorer"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
@@ -6639,22 +6708,21 @@ msgstr "tiada"
msgid "No mouse"
msgstr "Tidak pakai mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Silakan tes mouse Anda"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Untuk mengaktifkan mouse,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
-msgstr "gerakkan rodanya!"
+msgstr "GERAKKAN RODANYA!"
#: ../../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-*"
+msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
#: ../../my_gtk.pm_.c:159
msgid "Finish"
@@ -6684,11 +6752,11 @@ msgstr "Tutup Tree"
msgid "Toggle between flat and group sorted"
msgstr "Togel tampilan rata dan terurut grupnya"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Hubungan ke Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6698,53 +6766,43 @@ msgstr ""
"Namun ada juga yang menggunakan pptp, dan ada yang pakai dhcp saja.\n"
"Bila ragu, pilih saja 'gunakan pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "usb speedtouch Alcatel"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "gunakan dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "gunakan pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "gunakan pptp"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr "Server"
+msgstr "Server Web"
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "Perumus Nama Domain"
+msgstr "Server Nama Domain"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "Aktifkan Server"
+msgstr "Server Mail"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "Server LDAP"
+msgstr "Server POP dan IMAP"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
-msgstr "kartu jaringan tak ditemukan"
+msgstr "Tiada kartu jaringan"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6752,15 +6810,15 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"konfigurator tinyfirewall\n"
+"konfigurator drakfirewall\n"
"\n"
"Program ini mengkonfigurasi firewall pribadi sistem Linux Mandrake.\n"
"Untuk membuat solusi firewall yang lebih baik, cobalah\n"
-"distribusi Mandrake Security Firewall"
+"distribusi khusus MandrakeSecurity Firewall"
#: ../../network/drakfirewall.pm_.c:147
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "Layanan apa yg Anda suka untuk akses dari Internet?"
#: ../../network/drakfirewall.pm_.c:148
msgid ""
@@ -6768,6 +6826,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"Anda dapat memasukkan berbagai port. \n"
+"Contoh lazim adalah: 139/tcp 139/udp.\n"
+"Informasi ada di /etc/services."
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -6776,15 +6837,17 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"Port tak berlaku: %s.\n"
+"Format yg benar adalah \"port/tcp\" atau \"port/udp\", \n"
+"sedangkan port berkisar dari 1 sampai 65535."
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "Semua (tanpa firewall)"
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "Tes port"
+msgstr "Port lain"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -6815,7 +6878,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:362
msgid "Configuring network"
msgstr "Konfigureasi jaringan"
@@ -6830,15 +6893,15 @@ 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:367
msgid "Host name"
msgstr "Nama Host"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Wizard Konfigurasi Jaringan"
@@ -6886,8 +6949,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Konfigurasi lama (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Konfigurasi ISDN"
@@ -6923,23 +6986,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Protokol apa yang ingin Anda gunakan?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Tipe card mana yang Anda punya?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Saya tak tahu"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6954,19 +7022,19 @@ msgstr ""
"Bila Anda punya card PCMCIA, Anda harus mengetahui irq dan io kartu Anda "
"itu.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Batal"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Lanjut"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Manakah kartu ISDN Anda?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6974,7 +7042,7 @@ msgstr ""
"Saya mendeteksi adanya sebuah card ISDN PCI, tapi saya tidak tahu tipenya. "
"Silakan pilih card PCI tersebut pada layar berikutnya."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Tiada kartu PCI ISDN ditemukan. Pilihlah satu pd layar berikut."
@@ -7026,7 +7094,7 @@ msgstr "Server DNS Primer (boleh diisi/tidak)"
msgid "Second DNS Server (optional)"
msgstr "Server DNS Sekunder (boleh tidak diisi)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7034,7 +7102,7 @@ msgstr ""
"\n"
"Anda bisa putuskan atau konfigurasi koneksi yang ada sekarang."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7042,11 +7110,11 @@ msgstr ""
"\n"
"Anda bisa mengkonfigurasikan ulang koneksi ini"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Sekarang Anda sedang terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7054,32 +7122,32 @@ msgstr ""
"\n"
"Anda bisa sambungkan koneksi ke Internet atau mengkonfigurasikan ulang."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Anda sedang tidak terhubung ke Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Tersambung"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Putus"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Konfigurasikan koneksi"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Koneksi dan konfigurasi Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Kita akan mengkonfigurasi koneksi %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7098,12 +7166,12 @@ msgstr ""
"\n"
"Tekan OK utk mulai."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Konfigurasi Jaringan"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7114,7 +7182,7 @@ msgstr ""
"Silakan klik OK untuk rekonfigurasi ulang koneksi jaringan/internet ini, "
"atau batal jika Anda berubah pikiran.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7127,72 +7195,72 @@ msgstr ""
"Bila Anda tidak mau menggunakan deteksi otomatis, mohon untuk tidak memilih "
"checkbox.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Pilih profil yang hendak Anda konfigurasikan"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Gunakan deteksi otomatis"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Mendeteksi alat..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Konfigurasi koneksi modem biasa "
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "dideteksi pada port %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Konfigurasi koneksi ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s telah terdeteksi"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Koneksi ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "telah dideteksi ada pada interface %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Konfigurasi jaringan kabel"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Koneksi kabel terdeteksi"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "konfigurasi LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ada kartu ethernet terdeteksi"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Pilih koneksi yg hendak dikonfigurasi"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7202,23 +7270,23 @@ msgstr ""
"Pilih yg ingin Anda pakai.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Koneksi Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Anda mau jalankan koneksi ini saat boot?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Konfigurasi jaringan"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Jaringan perlu di-start ulang"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7229,7 +7297,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7239,7 +7307,7 @@ msgstr ""
"\n"
"Konfigurasi akan diterapkan di sistem Anda.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7247,7 +7315,7 @@ msgstr ""
"Setelah itu, silakan restart X Anda agar bebas dari masalah pergantian\n"
"nama host."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7257,7 +7325,7 @@ msgstr ""
"Tes koneksi Anda via net_monitor atau mcc. Jika koneksi tak berjalan, Anda "
"mungkin perlu jalankan konfigurasi dari awal lagi"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7270,7 +7338,7 @@ msgstr ""
"Bila ingin menggantinya, silakan ganti isi pada kolom-kolom di konfigurasi "
"ini."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7280,42 +7348,42 @@ msgstr ""
"Tiap item harus diberikan sebagai alamat IP dalam notasi decimal\n"
"bertitik (misalnya 202.159.35.32)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurasi perangkat jaringan %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Alamat IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP otomatis"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Start saat boot"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7327,42 +7395,52 @@ 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:368
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (mis. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Device gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Alamat IP harus dalam format 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Alamat IP harus dalam format 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Konfigurasi proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
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:400
msgid "Proxy should be http://..."
msgstr "Proxy biasanya http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy biasanya ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url harus berawalan 'ftp:' atau 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7811,34 +7889,37 @@ msgid "Printerdrake"
msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "Mulai ulang sistem cetak ..."
+msgstr "Pengecekan sistem..."
#: ../../printerdrake.pm_.c:186
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "Tiada printer yg ditemukan terhubung langsung ke mesin Anda"
#: ../../printerdrake.pm_.c:198
-#, fuzzy
msgid ""
"The following printers\n"
"\n"
-msgstr "Paket berikut akan dihapus"
+msgstr ""
+"Printer berikut\n"
+"\n"
#: ../../printerdrake.pm_.c:199
-#, fuzzy
msgid ""
"The following printer\n"
"\n"
-msgstr "Paket berikut akan dihapus"
+msgstr ""
+"Printer berikut\n"
+"\n"
#: ../../printerdrake.pm_.c:201
msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"dan satu printer tak dikenal "
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -7846,29 +7927,36 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+"dan %d printer tak dikenal "
#: ../../printerdrake.pm_.c:207
msgid ""
"\n"
"are "
msgstr ""
+"\n"
+" "
#: ../../printerdrake.pm_.c:208
msgid ""
"\n"
"is "
msgstr ""
+"\n"
+" "
#: ../../printerdrake.pm_.c:210
-#, fuzzy
msgid "directly connected to your system"
-msgstr "Salin font di sistem Anda"
+msgstr "terhubung langsung dengan sistem Anda"
#: ../../printerdrake.pm_.c:213
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"Sebuah printer tak dikenal terhubung langsung dengan sistem Anda"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -7876,33 +7964,32 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"%d printer tak dikenal terhubung langsung dengan sistem Anda"
#: ../../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."
+msgstr " (Pastikan semua printer Anda terhubung dan hidup).\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 ""
+"Anda ingin mengaktifkan pencetakan di printer tersebut di atas atau printer "
+"di jaringan lokal?\n"
#: ../../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?"
+msgstr "Anda ingin mengaktifkan pencetakan di printer jaringan lokal?\n"
#: ../../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?"
+msgstr "Anda ingin mengaktifkan pencetakan di printer tersebut di atas?\n"
#: ../../printerdrake.pm_.c:239
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "Anda yakin ingin men-setup pencetakan di mesin ini?\n"
#: ../../printerdrake.pm_.c:240
#, c-format
@@ -7910,6 +7997,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"CATATAN: Akan diinstal piranti lunak tambahan hingga %d MB tergantung model "
+"printer dan sistem cetak."
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -7939,7 +8028,6 @@ msgstr ""
"printer."
#: ../../printerdrake.pm_.c:280
-#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7971,14 +8059,13 @@ msgstr ""
"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 dan/atau Mindows jika tak perlu.\n"
+"printer yg terhubung langsung dg mesin ini. Matikan deteksi printer jaringan "
+"dan/atau Mindows jika tak perlu.\n"
"\n"
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
-"printer(s) sekarang."
+"printer sekarang."
#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
-#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -7995,22 +8082,15 @@ msgstr ""
"\n"
"Selamat Datang di Dukun Setup Printer\n"
"\n"
-"Dukun ini menolong Anda menginstal printer yg terhubung dg komputer ini atau "
-"jaringan.\n"
+"Dukun ini menolong Anda menginstal printer yg terhubung dg komputer ini.\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"
+"sehingga ia/mereka dapat dideteksi.\n"
"\n"
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
-"printer(s) sekarang."
+"printer sekarang."
#: ../../printerdrake.pm_.c:297
-#, fuzzy
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
@@ -8040,11 +8120,11 @@ msgstr ""
"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"
+"printer yg terhubung langsung dg mesin ini. Matikan deteksi printer jaringan "
+"jika tak perlu.\n"
"\n"
" Klik \"Lanjut\" jika siap, dan \"Batal\" jika Anda tak ingin men-setup "
-"printer(s) sekarang."
+"printer sekarang."
#: ../../printerdrake.pm_.c:315
msgid "Auto-detect printers connected to this machine"
@@ -8288,7 +8368,7 @@ msgid ""
"and then add user name, password, and/or workgroup if needed."
msgstr ""
" Jika printer yg diinginkan terdeteksi, pilihlah dari daftar lalu tambahkan "
-"nama user, katakunci, dan/atau grupkerja jika perlu."
+"nama user, katasandi, dan/atau grupkerja jika perlu."
#: ../../printerdrake.pm_.c:846
msgid "SMB server host"
@@ -8346,7 +8426,7 @@ msgid ""
"\n"
msgstr ""
"Anda akan menset up pencetakan ke account Mindows dengan katasandi. "
-"Berhubung kesalahan arsitekture piranti lunak klien Samba, katakunci "
+"Berhubung kesalahan arsitekture piranti lunak klien Samba, katasandi "
"ditampilkan dalam teks di baris perintah klien Samba untuk mengirim job "
"cetak ke server Mindows. Ini memungkinkan tiap user di mesin ini melihat "
"katasandi di layar dengan perintah \"ps auxwww\".\n"
@@ -8357,7 +8437,7 @@ msgstr ""
"\n"
"Pakailah account tanpa-katasandi di server Mindows Anda, sebagai account "
"\"GUEST\" atau account khusus untuk pencetakan. Jangan hapus proteksi "
-"katakunci account pribadi atau administrator.\n"
+"katasandi account pribadi atau administrator.\n"
"\n"
"Set up server Mindows Anda agar printer dapat dipakai dengan protokol LPD. "
"Laluset up pencetakan dari mesin ini dengan tipe koneksi \"%s\" di "
@@ -8605,7 +8685,6 @@ msgstr ""
"Anda ke port lokal atau konfigurasikan di mesin yang terhubung dengannya."
#: ../../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."
@@ -8616,18 +8695,18 @@ msgid ""
"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/). "
-"Masuklah ke situs US dan klik tombol \"Drivers\". Pilih model Anda lalu "
-"sistem operasi \"Linux\". Driver disediakan berupa paket RPM atau shell "
-"script dg instalasi grafis interaktif. Anda tak perlu melakukan konfigurasi "
-"dg frontend grafis. Batalkan langsung setelah persetujuan lisensi.Lalu cetak "
-"halaman printhead alignment dg \"lexmarkmaintain\" dan cocokkan setting head "
-"alignmentdd dg program ini."
+"Agar dapat mencetak dg Lexmark inkjet dan konfigurasi ini, Anda perlu driver "
+"printer inkjet yg disediakan Lexmark (http://www.lexmark.com/). Klik link "
+"\"Drivers\". Pilih model Anda lalu sistem operasi \"Linux\". Driver "
+"disediakan berupa paket RPM atau shell script dg instalasi grafis "
+"interaktif. Anda tak perlu melakukan konfigurasi via frontend grafis ini. "
+"Batalkan langsung setelah persetujuan lisensi. Lalu cetak halaman printhead "
+"alignment dg \"lexmarkmaintain\" dan cocokkan setting head alignment dg "
+"program ini."
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "Printer Laser GDI dengan Format ZJ-Stream Zenographics"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8651,6 +8730,21 @@ msgid ""
"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 ""
+"Printer Anda termasuk kelompok printer laser GDI (winprinter) yg menggunakan "
+"format raster Zenographics ZJ-stream utk data yg dikirim ke printer. Driver "
+"printer ini masih amat prematur dan mungkin tak selalu bekerja dg benar. "
+"Khususnya printer mungkin hanya bekerja jika Anda memilih kertas ukuran A4.\n"
+"\n"
+"Beberapa printer misalnya HP LaserJet 1000 (driver ini semula dibuat "
+"untuknya), mensyaratkan firmware di-upload setelah dinyalakan. Untuk HP "
+"LaserJet 1000, carilah file \"sihp1000.img\" di CD driver Mindows printer "
+"atau partisi Mindows Anda dan upload file ke printer dg perintah berikut:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"Perintah pertama dapat diberikan oleh pengguna normal, yang kedua harus "
+"dikerjakan oleh root. Setelah itu Anda baru dapat mencetak.\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -8910,7 +9004,7 @@ msgstr "Pencetakan di printer \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9244,9 +9338,8 @@ msgid "Printer options"
msgstr "Opsi printer"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
-msgstr "Persiapan PrinterDrake ..."
+msgstr "Persiapan PrinterDrake..."
#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
@@ -9455,10 +9548,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr "Isilah info proxy ftp, kosongkan jika tak perlu"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url harus berawalan 'ftp:' atau 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9506,6 +9595,41 @@ msgstr "mkraid gagal (mungkin raidtoolsnya tak ada?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Partisi tidak cukup untuk level RAID %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Tingkat keamanan:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Tingkat keamanan"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Admin Keamanan:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (default %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Pilih tingkat keamanan"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Tunggu, instalasi sedang disiapkan..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Luncurkan sistem suara ALSA (Advanced Linux Sound Architecture)"
@@ -9806,7 +9930,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Pemakaian file bersama"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistem"
@@ -9882,156 +10006,145 @@ msgstr "Gabung dunia Perangkat Lunak Bebas"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "Ingin tahu lebih tentang komunitas Open Source?"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums 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"
+"Untuk berbagi pengetahuan dan membantu membangun peralatan Linux, mari "
+"bergabung dalam forum diskusi yg tertera di halaman web \"Komunitas\" kami"
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "Hubungan ke Internet"
+msgstr "Ambil yang paling Wah! dari Internet"
#: ../../share/advertising/03-internet.pl_.c:10
-#, fuzzy
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"
msgstr ""
-"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"
+"Mandrake Linux 9.0 menyajikan software terbaik. Jelajah web dan lihat "
+"animasi dengan Mozilla dan Konqueror, atau baca email dan atur info pribadi "
+"Anda dengan Evolution dan Kmail"
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "Temukan perlengkapan grafis dan multimedia terbaru!"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "Dorong multimedia hingga tapal batas!"
#: ../../share/advertising/04-multimedia.pl_.c:11
-#, fuzzy
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 ""
-"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"
+"Mandrake Linux 9.0 memungkinkan Anda menggunakan software mutakhir untuk "
+"memainkan file audio, edit dan mengatur gambar/foto, dan melihat video"
#: ../../share/advertising/05-games.pl_.c:9
msgid "Games"
msgstr "Game"
#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
-"Mandrake Linux 8.2 menyediakan game terbaik Source Terbuka - arcade, aksi, "
-"kartu, olah raga, strategi, ..."
+"Mandrake Linux menyediakan game Open Source terbaik - arcade, aksi, kartu, "
+"olah raga, strategi, ..."
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
msgid "Mandrake Control Center"
msgstr "Pusat Kontrol Mandrake"
#: ../../share/advertising/06-mcc.pl_.c:10
-#, fuzzy
msgid ""
"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"
+"Mandrake Linux menyediakan alat perkasa untuk mengkonfigurasi mesin Anda"
#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
-msgstr "Antarmuka user"
+msgstr "Antarmuka pengguna"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"Mandrake Linux menyediakan 11 antarmuka pengguna yang dapat dimodifikasi: "
+"KDE 3, Gnome 2, WindowMaker, ..."
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "Development"
+msgstr "Pemrograman dipermudah"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
+msgstr "Mandrake Linux adalah platform bangun terampuh"
#: ../../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 adalah platform development terampuh. Temukan power "
-"compiler gcc GNU, juga lingkungan development Sumber Bebas terbaik"
+"Gunakan power compiler gcc GNU, juga lingkungan bangun Open Source terbaik"
#: ../../share/advertising/09-server.pl_.c:9
msgid "Turn your machine into a reliable server"
-msgstr ""
+msgstr "Jadikan mesin Anda server yang handal"
#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with 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 "
+"Jadikan mesin Anda server perkasa dengan hanya beberapa klik mouse: server "
"Web, email, firewall, router, server file dan cetak, ..."
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "Optimasi keamanan"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
-msgstr ""
+msgstr "MandrakeSecurity mencakup produk 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 "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
+"Produk firewall ini mencakup fitur jaringan yang memungkinkan Anda memenuhi "
+"semua kebutuhan sekuritas"
#: ../../share/advertising/10-mnf.pl_.c:12
msgid "This product is available on MandrakeStore website"
-msgstr ""
+msgstr "Produk ini tersedia di situs MandrakeStore"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "Toko resmi MandrakeSoft"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
-"Solusi Linux lengkap, termasuk sajian khusus produk dan 'goodies', tersedia "
-"online di e-store kami"
+"Solusi Linux lengkap, termasuk sajian khusus produk dan \"goodies\" lain, "
+"tersedia online di e-store kami:"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "Mitra strategis"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -10039,20 +10152,25 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoft bekerjasama dengan sejumlah perusahaan penyedia solusi "
+"profesional yang kompatibel dengan Mandrake Linux. Daftar mitra ada di "
+"MandrakeStore"
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "Temukan katalog training MandrakeSoft Kampus-Linux"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"Program training diadakan untuk memenuhi kebutuhan para pengguna akhir dan "
+"pakar (admin jaringan dan sistem)"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "Sertifikasikan diri Anda di Linux"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -10060,43 +10178,48 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"Apakah Anda memilih belajar sendiri atau via jaringan mitra training kami, "
+"katalog Kampus-Linux mempersiapkan Anda untuk program sertifikasi LPI baku "
+"(sertifikat teknik profesional dunia)"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "AhliMandrake"
+msgstr "Jadi AhliMandrake"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
-msgstr ""
+msgstr "Temukan solusi problem via platform dukungan online MandrakeSoft"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your 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 ""
+"Ikut online dengan tim support MandrakeSoft dan Komunitas Linux utk berbagi "
+"pengetahuan dan membantu sesama dengan menjadi Pakar di situs support teknik "
+"online:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "AhliMandrake"
+msgstr "AhliMandrake Perusahaan"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
-msgstr ""
+msgstr "Platform online yang melayani kebutuhan support spesifik perusahaan"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
+"Semua insiden akan di-followup oleh pakar teknis MandrakeSoft berkualitas."
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "KlubMandrake dan Klub Perusahaan Mandrake"
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -10107,16 +10230,21 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub dan Klub Perusahaan Mandrake dibuat utk pengguna pribadi dan "
+"bisnis Mandrake Linux yg ingin secara langsung men-support distro Linux "
+"favorit sembari menerima hak-hak khusus. Jika Anda suka produk kami, jika "
+"produk kami membantu perusahaan Anda dalam bersaing, jika Anda ingin "
+"membantu pembangunan Mandrake Linux, bergabunglah dengan MandrakeClub!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Instalasi paket..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Silakan log out dan tekan Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Silakan masuk lagi ke %s untuk mengaktifkan perubahan"
@@ -10157,16 +10285,6 @@ msgstr "Tambah/Hapus User"
msgid "Add/Del Clients"
msgstr "Tambah/Hapus Klien DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Pertolongan"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disket boot"
@@ -10215,48 +10333,64 @@ msgstr "Tambah user -->"
msgid "<-- Del User"
msgstr "<-- Hapus User"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "Image Boot Net"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Tambah Klien -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Hapus Klien"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Konfig dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Konfigurasi Lanjutan"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Tulis konfigurasi"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Masukkan floppy:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Gagal akses ke floppy!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Disket dapat dilepas sekarang"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Floppy drive tak tersedia"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Image ISO Etherboot adalah %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Ada yg salah! - mkisofs sudah diinstal?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Perlu bikin dulu /etc/dhcpd.conf first!"
@@ -10351,20 +10485,19 @@ msgstr "Hapus item terakhir"
#: ../../standalone/drakbackup_.c:617
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron non-root belum tersedia"
#: ../../standalone/drakbackup_.c:723
msgid "WARNING"
-msgstr ""
+msgstr "PERINGATAN"
#: ../../standalone/drakbackup_.c:724
-#, fuzzy
msgid "FATAL"
-msgstr "FAT"
+msgstr "FATAL"
#: ../../standalone/drakbackup_.c:725
msgid "INFO"
-msgstr ""
+msgstr "INFO"
#: ../../standalone/drakbackup_.c:737
msgid ""
@@ -10400,12 +10533,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Total perkembangan"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10418,41 +10551,41 @@ msgstr ""
"Awas: Jika Anda telah melakukan proses ini Anda mungkin perlu\n"
" membersihkan entri dari authorized_keys pada server."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Perlu waktu untuk membuat kunci"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "ERROR: Tak dapat menghasilkan %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "Tiada prompt katasandi di %s pada port %s"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "Tiada katasandi"
+msgstr "Salah katasandi pada %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "Tak ada izin pemindahan %s ke %s"
-#: ../../standalone/drakbackup_.c:851
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:854
+#, c-format
msgid "Can't find %s on %s"
-msgstr "Tidak bisa buka %s: %s\n"
+msgstr "%s di %s tak tercari"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "tak ada respon %s"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10467,68 +10600,66 @@ msgstr ""
"\n"
"ssh -i %s %s\\@%s\n"
"\n"
-"tanpa ditanyai katakunci."
+"tanpa ditanyai katasandi."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "Situs remote WebDAV telah sinkron!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "Transfer WebDAV gagal!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "Tiada CDR/DVDR di drive!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "Tampaknya bukan media yang dapat merekam!"
-#: ../../standalone/drakbackup_.c:934
-#, fuzzy
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
-msgstr "Media removable"
+msgstr "Media tak terhapuskan"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Perlu waktu untuk menghapus media."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "Problem izin pada akses CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "Tak ada pita di %s!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Backup file sistem..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "File Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup file User..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Kemajuan Backup Hard Disk..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup file lain..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "Gunakan pita utk backup"
+msgstr "Tak ada perubahan backup!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10539,7 +10670,7 @@ msgstr ""
"Aktivitas drakbackup via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10548,7 +10679,7 @@ msgstr ""
"daftar file yg dikirim oleh FTP: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10557,7 +10688,7 @@ msgstr ""
"\n"
" Problem koneksi FTP: Gagal mengirim file backup dengan FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10567,7 +10698,7 @@ msgstr ""
"Aktivitas drakbackup via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10577,24 +10708,24 @@ msgstr ""
"Aktivitas drakbackup via tape:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Kesalahan saat pengiriman surat. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
-msgstr ""
+msgstr "Katalog tak dapat dibuat!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Pilihan File"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Pilih file atau direktori dan klik 'Tambah'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10602,67 +10733,67 @@ msgstr ""
"\n"
"Periksa semua opsi yang Anda inginkan.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Backup file System Anda. (direktori /etc)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Pakai backup incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Tidak memasukkan file penting (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
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:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Jangan masukkan cache browser"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Pakai Backup Incremental (tidak menghapus backup lama)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Hapus Pilihan"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Mindows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "User"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Pakai koneksi jaringan utk backup"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "Metode Jaring:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Pakai Expect utk SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10670,7 +10801,7 @@ msgstr ""
"Buat/Transfer\n"
"kunci cadangan SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10678,15 +10809,18 @@ msgstr ""
" Transfer \n"
"Sekarang"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr "Kunci sudah ada di tempat"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Masukkan nama host atau IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10694,27 +10828,27 @@ msgstr ""
"Masukkan direktori (atau modul) utk\n"
" meletakkan backup di host ini."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Masukkan login"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Masukkan katasandi"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Ingat katasandi ini"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
-msgstr "Perlu namahost, namauser dan katakunci!"
+msgstr "Perlu namahost, namauser dan katasandi!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Pakai CD/DVDROM utk backup"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10724,35 +10858,35 @@ msgstr ""
"(Tekan Enter untuk menyalurkan setting ke tempat isian lain.\n"
"Field ini tak diperlukan, hanya alat utk mengisi formulir.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Pilih ukuran media CD/DVD Anda"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Mohon cek perihal CD multisession"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Periksa apakah Anda menggunakan media CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
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:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Hapus Sekarang "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Periksa apakah Anda menggunakan alat DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Periksa apakah Anda menggunakan alat DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10760,32 +10894,32 @@ msgstr ""
"Masukkan nama alat Penulis CD Anda\n"
" mis: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Tidak ada alat CD didefinisikan!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Gunakan pita utk backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Masukkan nama alat utk backup"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr "Cek apakah Anda ingin menggunakan alat non-rewinding."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
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:2067
+#: ../../standalone/drakbackup_.c:2071
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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10793,67 +10927,67 @@ msgstr ""
"Masukkan ukuran maximum\n"
" yg diizinkan utk Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Pakai quota utk file backup."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Jaringan"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "HardDrive / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Tape"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "perjam"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "harian"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "mingguan"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "bulanan"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Pakai daemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pilih interval waktu backup"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Pilih media backup."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10863,71 +10997,71 @@ msgstr ""
"\n"
"Ingat bahwa kini semua media 'net' juga menggunakan harddisk."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Kirim laporan mail setelah tiap backup ke :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
+msgstr "Hapus file tar Harddisk setelah backup ke media lain."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Apa"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Mana"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Kapan"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Opsi Tambahan"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Konfigurasi Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Pilih tempat backup"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "di Hard Drive"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "lewat Network"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "di CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "di Device Pita"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Pilih apa yang akan di-backup"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Backup sistem"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Backup User"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Pilih user secara manual"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10935,7 +11069,7 @@ msgstr ""
"\n"
"Sumber Backup: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10943,7 +11077,7 @@ msgstr ""
"\n"
"- File Sistem:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10951,7 +11085,7 @@ msgstr ""
"\n"
"- File User:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10959,7 +11093,7 @@ msgstr ""
"\n"
"- File Lain:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10968,13 +11102,15 @@ msgstr ""
"\n"
"- Simpan di Hard drive di path: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- Hapus file tar harddisk setelah backup.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -10982,20 +11118,20 @@ msgstr ""
"\n"
"- Bakar ke CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " di device: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
-msgstr ""
+msgstr " (multi-session)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11004,12 +11140,12 @@ msgstr ""
"\n"
"- Simpan ke tape di alat: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tHapus=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11018,7 +11154,7 @@ msgstr ""
"\n"
"- Simpan via %s di host: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11027,7 +11163,7 @@ msgstr ""
"\t\t name user: %s\n"
"\t\t di path: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11035,19 +11171,19 @@ msgstr ""
"\n"
"- Opsi:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tJangan masukkan File Sistem\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tBackup dengan tar dan bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tBackup dengan tar dan gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11056,39 +11192,39 @@ msgstr ""
"\n"
"- Cakupan daemon (%s) :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Hard drive.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Network dg FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Network dg SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Network dg rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Network dg webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "Tiada konfigurasi, mohon klik Dukun atau Lanjutan.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11096,7 +11232,7 @@ msgstr ""
"Daftar data restorasi:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11104,265 +11240,261 @@ msgstr ""
"Daftar data rusak:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Mohon uncheck atau hapus nanti."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "File backup rusak"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Semua data terpilih telah "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Berhasil Direstorasi di %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Restorasi Konfigurasi "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK utk restorasi file lain."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Backup file sistem sebelum:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "pilih tanggal restorasi"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Pakai Hard Disk utk backup"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Masukkan direktori utk penyimpanan:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Koneksi FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Koneksi Aman"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Restorasi dari Hard Disk."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Masukkan direktori tempat backup disimpan"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Pilih media lain utk direstorasi"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Media Lain"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Restorasi sistem"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Restorasi User"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Restorasi Lain-lain"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "pilih path utk restorasi (selain /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Lakukan backup baru sebelum restorasi (hanya utk backup incremental.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Hapus direktori user sebelum restorasi."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
+"Restorasi Entri\n"
+"Katalog Terpilih"
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "Hapus Pilihan"
+msgstr ""
+"Restorasi File\n"
+"Terpilih"
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "Restorasi Lain-lain"
+msgstr ""
+"Ubah\n"
+"Path Restorasi"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "Backup %s ke %s.old"
+msgstr "File backup tak ditemukan di %s."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
+"Masukkan CD dengan label %s\n"
+" ke drive CD di titik mount /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "Restorasi dari Hard Disk."
+msgstr "Restorasi Dari CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgstr "Bukan label CD yang benar. Disk berlabel %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"Masukkan pita dengan label %s\n"
+" ke drive pita device %s"
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "Kembalikan tabel partisi"
+msgstr "Restorasi Dari Pita"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgstr "Bukan label pita yang benar. Pita berlabel %s."
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "Restorasi User"
+msgstr "Restorasi Via Jaringan"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgstr "Restorasi Via Protokol Jaringan: %s"
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Nama Host"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
-msgstr ""
+msgstr "Path atau Modul Host"
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "Katasandi"
+msgstr "Katasandi dibutuhkan"
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "Nama user"
+msgstr "Nama pengguna dibutuhkan"
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "Nama Host: "
+msgstr "Nama Host dibutuhkan"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
-msgstr ""
+msgstr "Path atau Modul dibutuhkan"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
-msgstr ""
+msgstr "File Telah Direstorasi..."
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "Restorasi Lain-lain"
+msgstr "Restorasi Gagal..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Restorasi semua backup"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Restorasi pilihan sendiri"
-#: ../../standalone/drakbackup_.c:3854
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
-msgstr "Tekan Lanjutkan utk melanjutkan"
+msgstr "CD di tempat - lanjutkan."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
-msgstr ""
+msgstr "Jelajahi repositori restorasi baru."
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "Kembalikan tabel partisi"
+msgstr "Restorasi Dari Katalog"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "Restorasi User"
+msgstr "Perkembangan Restorasi"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Sebelumnya"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Simpan"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Bangun Backup"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restorasi"
-#: ../../standalone/drakbackup_.c:4229
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"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"
+"Error saat sendmail.\n"
+" Surat laporan Anda tak terkirim.\n"
" Mohon konfigurasikan sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11370,7 +11502,7 @@ msgstr ""
"Paket berikut perlu diinstal:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11378,19 +11510,19 @@ msgstr ""
"Error saat pengiriman file via FTP.\n"
" Betulkan konfigurasi FTP Anda."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Pilih data utk direstorasi..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Pilih media backup..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Pilih data backup..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11398,59 +11530,59 @@ msgstr ""
"Tiada file konfigurasi \n"
"Mohon klik Dukun atau Lanjutan"
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Sedang dibangun ... tunggu."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Backup file sistem"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Backup file user"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Backup file lain"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Total Kemajuan"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "file dikirim dg FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Kirim file..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Backup Sekarang dari file konfigurasi"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Lihat Konfigurasi Backup."
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Konfigurasi Dukun"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Konfigurasi Lanjutan"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Backup Sekarang"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11510,7 +11642,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11524,7 +11656,7 @@ msgstr ""
" myhostname atau mydomain di /etc/postfix/main.cf harus diset\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11599,8 +11731,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11627,22 +11758,22 @@ msgid ""
"\n"
"\n"
msgstr ""
-"penjelasan restore:\n"
+"penjelasan restorasi:\n"
" \n"
"Hanya tanggal terkini yang akan dipakai, karena dg backup incremental \n"
-"diperlukan restore satu demi satu tiap backup lama.\n"
+"diperlukan restorasi satu demi satu tiap backup lama.\n"
"\n"
-"Jadi jika Anda tak suka restorasi user lepaslah pilihan semua kotak\n"
+"Jadi jika Anda tak ingin merestorasi pengguna lepaslah pilihan semua kotak\n"
"tandanya.\n"
"\n"
-"Jika tidak, Anda dapat memilih hanya satu opsi\n"
+"Jika tidak, Anda dapat memilih hanya satu opsi.\n"
"\n"
" - Backup Incremental:\n"
"\n"
"\tBackup incremental adalah opsi terkuat backup,\n"
"\tAnda dapat mem-backup semua data pertama kali,\n"
"\tdan kemudian hanya yg berubah.\n"
-"\tJadi Anda dapat, saat tahap restore, menyimpan\n"
+"\tJadi Anda dapat, saat restorasi, menaruh\n"
"\tulang data Anda dari tanggal yg ditentukan.\n"
"\tJika Anda belum memilih opsi ini semua backup\n"
"\tlama akan dihapus sebelum tiap backup. \n"
@@ -11650,19 +11781,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" update 2002 MandrakeSoft oleh Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11690,7 +11821,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:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11766,7 +11897,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11783,7 +11914,7 @@ msgstr ""
"membangun backup di harddrive Anda sebelum mengirimnya ke server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11804,7 +11935,7 @@ msgstr ""
"akan kehilangan semua data. Hati-hati dan jangan mengubah\n"
"file data backup secara manual.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11929,8 +12060,8 @@ msgid "Synchronization tool"
msgstr "Sinkronisator"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Alat Mandiri"
@@ -11995,7 +12126,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12004,24 +12135,24 @@ msgstr ""
"\n"
"\n"
"Klik tombol utk mengirim laporan kutu.\n"
-"Ini akan membuka window browser web di https://www.bugzilla.com\n"
+"Ini akan membuka window browser web di https://drakbug.mandrakesoft.com\n"
"dan akan ada formulir untuk diisi. Info yang tampil di atas akan\n"
"ditransfer ke server tsb\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Laporan"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Tak terinstal"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "koneksi ke dukun Bugzilla ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Browser tak tersedia! Installah satu"
@@ -12063,7 +12194,7 @@ msgstr "Akses Internet"
#: ../../standalone/drakconnect_.c:180
msgid "Type:"
-msgstr "Tipe: "
+msgstr "Tipe:"
#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Gateway:"
@@ -12071,11 +12202,11 @@ msgstr "Gateway:"
#: ../../standalone/drakconnect_.c:183 ../../standalone/drakconnect_.c:375
msgid "Interface:"
-msgstr "Interface: "
+msgstr "Antarmuka:"
#: ../../standalone/drakconnect_.c:194
msgid "Status:"
-msgstr "Status: "
+msgstr "Status:"
#: ../../standalone/drakconnect_.c:201
msgid "Wait please"
@@ -12115,15 +12246,11 @@ msgstr "Klik di sini utk meluncurkan wizard ->"
#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
-msgstr "Wizard..."
+msgstr "Dukun..."
#: ../../standalone/drakconnect_.c:282
msgid "Apply"
-msgstr "Pasang"
-
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Tunggu ya, sedang mengaktifkan konfigurasi"
+msgstr "Terapkan"
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
@@ -12152,8 +12279,8 @@ msgid ""
"You don't have any configured interface.\n"
"Configure them first by clicking on 'Configure'"
msgstr ""
-"Tiada interface terkonfigurasi.\n"
-"Konfigurasi dulu dg meng-klik 'Configure'"
+"Tiada antarmuka terkonfigurasi.\n"
+"Konfigurasikan dulu dg meng-klik 'Configure'"
#: ../../standalone/drakconnect_.c:452
msgid "LAN Configuration"
@@ -12238,13 +12365,13 @@ msgstr "-misc-Fixed-Medium-r-*-*-*-140-*-*-*-*-*-*,*"
#: ../../standalone/drakfloppy_.c:68
msgid "Module name"
-msgstr "Nama Modul"
+msgstr "Nama modul"
#: ../../standalone/drakfloppy_.c:68
msgid "Size"
msgstr "Ukuran"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12309,12 +12436,12 @@ msgstr "Keluaran"
msgid "Build the disk"
msgstr "Buat disk"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Pastikan media ada di device %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12323,12 +12450,12 @@ msgstr ""
"Media di device %s tidak ada atau write-protected.\n"
"Masukkan satu."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Fork gagal: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12812,160 +12939,146 @@ msgstr ""
"\n"
"Silakan pencet Konfigurasikan untuk mulai."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "Grupkerja"
+msgstr "grup"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "path"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "Partisi %s"
+msgstr "izin"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
-msgstr "User"
+msgstr "pengguna"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "Naik"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
-msgstr "Hapus"
+msgstr "hapus"
-#: ../../standalone/drakperm_.c:50
-#, fuzzy
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr "Sedang"
+msgstr "edit"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "Selesai"
+msgstr "Turun"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "tambah modul"
+msgstr "tambah aturan"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "pilih file izin yg akan dilihat/edit"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm digunakan utk melihat file yg digunakan utk membetulkan izin, "
+"pemilik, dan grup via msec.\n"
+"Anda dapat juga mengedit aturan Anda sendiri yang akan menindas aturan "
+"standar."
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "Tambah printer baru"
+msgstr "Tambah aturan baru di akhir"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "Edit aturan saat ini"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "Semua tak dipilih"
+msgstr "Naikkan aturan terpilih satu level"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "Turunkan aturan terpilih satu level"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "Hapus Pilihan"
+msgstr "Hapus aturan terpilih"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "jelajah"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "Buat user"
+msgstr "Pengguna saat ini"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "Versi: %s\n"
+msgstr "Izin"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "Path"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "Port"
+msgstr "Properti"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "sticky-bit (bit-lengket)"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "Set-UID (ID Pengguna)"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "Set-GID (ID Grup)"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"Digunakan utk direktori:\n"
+" hanya pemilik direktori atau file dalam direktori ini yg dapat menghapusnya"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "Gunakan deteksi otomatis"
+msgstr "Gunakan id pemilik utk eksekusi"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "Gunakan deteksi otomatis"
+msgstr "Gunakan id grup utk eksekusi"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "jika dipilih, pemilik dan grup takkan diubah"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "Pilihan Splash"
+msgstr "Pilihan path"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "User"
+msgstr "pengguna :"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "Grupkerja"
+msgstr "grup :"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "Kartu TV tak terdeteksi!"
+msgstr "Kartu Suara tak terdeteksi!"
-#: ../../standalone/draksound_.c:47
-#, fuzzy
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12976,7 +13089,7 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Kartu TV tak terdeteksi. Pastikan Kartu Video/TV yg disupport Linux "
+"Kartu Suara tak terdeteksi. Pastikan Kartu Suara yg disupport Linux "
"terhubung dengan benar.\n"
"\n"
"\n"
@@ -12985,137 +13098,144 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "paket ImageMagick diperlukan utk kerja secara benar"
+
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "pembuatan bootdisk"
+msgstr "pembuatan step pertama"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "Resolusi"
+msgstr "resolusi akhir"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "Pilih file"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "Nama share"
+msgstr "pilih file image"
#: ../../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"
+msgid "Theme name"
+msgstr "Nama tema"
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instal tema"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "Jelajah"
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
-#, fuzzy
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "Gagal membuat preview Bootsplash"
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "Konfigurasi gambar bootsplash"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
+"koordinat x kotak\n"
+"teks (jumlah huruf)"
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
+"koordinat x kotak\n"
+"teks (jumlah huruf)"
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
-msgstr ""
+msgid "text width"
+msgstr "lebar teks"
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
+msgid "text box height"
+msgstr "tinggi kotak teks"
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
+"koordinat x sudut kiri\n"
+"atas papan perkembangan"
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
+"koordinat y sudut kiri\n"
+"atas papan perkembangan"
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
-msgstr ""
+msgid "the width of the progress bar"
+msgstr "lebar papan perkembangan"
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:119
-#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "the heigth of the progress bar"
+msgstr "tinggi papan perkembangan"
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "device"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr "warna papan perkembangan"
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "Pilih monitor"
+msgid "Preview"
+msgstr "tampilan"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "simpan tema"
#: ../../standalone/draksplash_.c:124
-#, fuzzy
+msgid "Choose color"
+msgstr "pilih warna"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr "Display tema di konsol"
+msgstr "Display logo di Konsol"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
-msgstr ""
+msgstr "Matikan pesan kernel secara default"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
-msgstr ""
+msgstr "Tema ini belum punya bootsplash di %s !"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
-msgstr ""
+msgstr "simpan tema Bootsplash..."
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "Seleksi model printer"
+msgstr "Pilihan warna ProgressBar"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "Pilih/masukkan printer/device!"
+msgstr "Pilihlah file image!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "Pendeteksian alat..."
+msgstr "Preview sedang dibuat ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Gagal membuat preview Bootsplash"
#: ../../standalone/drakxtv_.c:49
msgid ""
@@ -13271,6 +13391,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"cara pakai: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "cara pakai: keyboarddrake [--expert] [keyboard]\n"
@@ -13299,11 +13427,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Gagal memulai upgrade live !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13471,10 +13599,9 @@ msgid "service setting"
msgstr "setting servis"
#: ../../standalone/logdrake_.c:431
-#, fuzzy
msgid ""
"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"
+msgstr "Anda akan diingatkan bila salah satu servis terpilih terhenti"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13520,17 +13647,17 @@ msgstr "Tes port"
#: ../../standalone/scannerdrake_.c:81
#, c-format
msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr ""
+msgstr "Tiada support utk %s pada Linux Mandrake versi ini."
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, 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 ""
+msgstr "%s tak ada di database scanner, konfigurasikan secara manual?"
#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
@@ -13576,16 +13703,14 @@ msgstr ""
"Anda dapat men-scan dokumen dengan ``XSane'' dari Multimedia/Grafik di menu "
"aplikasi."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, 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:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
"\n"
"Bbrp device di kelas %s ditambahkan:\n"
@@ -13662,7 +13787,7 @@ msgstr "Instal update sistem"
msgid "Exit install"
msgstr "Keluar dari proses instal"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13910,8 +14035,283 @@ msgstr "Multimedia - CD Burning"
msgid "Scientific Workstation"
msgstr "Aplikasi Ilmu pengetahuan"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Gagal membuat preview Bootsplash"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "Klik tombol utk mengirim laporan kutu.\n"
+#~ "Ini akan membuka window browser web di https://www.bugzilla.com\n"
+#~ "dan akan ada formulir untuk diisi. Info yang tampil di atas akan\n"
+#~ "ditransfer ke server tsb\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "buat bootsplash tahap 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "maju ke konfigurasi lilosplash"
+
+#~ msgid "Go back"
+#~ msgstr "kembali"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Tak diketahui adanya driver alternatif OSS/ALSA utk kartu suara Anda (%s)"
+
+#~ msgid ""
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Mandrake Linux distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Mandrake Linux distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+#~ msgstr ""
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the Linux-"
+#~ "Mandrake distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Linux-Mandrake distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Linux-Mandrake sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy biasanya ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "keluar"
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
@@ -15961,9 +16361,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ "ditampilkan\n"
#~ "di sini. Anda dapat meng-klik tombol utk mengubah parameternya."
-#~ msgid "Setting security level"
-#~ msgstr "Pilih tingkat keamanan"
-
#~ msgid "Graphics card"
#~ msgstr "Kartu grafis"
@@ -16329,9 +16726,6 @@ msgstr "Aplikasi Ilmu pengetahuan"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Tak jelas (%s), coba lebih detil\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (default %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Pilihan Anda? (default %s pilih 'none' untuk tidak ada) "
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index feaa9ccd9..fed17099b 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-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -93,41 +93,41 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Netstillingar"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -135,19 +135,19 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
#, fuzzy
msgid "Custom"
msgstr "Sérlagađa"
@@ -169,33 +169,33 @@ msgstr "Upplausn"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Í lagi"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Hćtta"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -286,25 +286,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Hćtta viđ"
@@ -380,11 +380,11 @@ msgstr "XFree86 ţjónn: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ţjónn: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X í rćsingu"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -393,7 +393,7 @@ msgstr ""
"Ég get stillt tölvuna ţína til ađ kveikja sjálfvirkt á X viđ rćsingu\n"
"Vilt ţú kveikja á X viđ endurrćsingu?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -405,7 +405,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Viđ hvađa rađtengi er músin ţín tengd?"
@@ -484,7 +484,7 @@ msgstr "Samţjappađ"
msgid "compact"
msgstr "samţjappađ"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Skjáhamur"
@@ -492,17 +492,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Lykilorđ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Lykilorđ (aftur)"
@@ -537,14 +537,14 @@ msgid ""
msgstr ""
"Valkosturinn ``Takmarka alla rofa á skipanalínu'' gerir ekkert án lykilorđs"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Reyndu aftur"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Mismunandi lykilorđ"
@@ -582,7 +582,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
#, fuzzy
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -591,152 +591,152 @@ 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:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Bćta viđ"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Búiđ"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Breyta RAID"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Hverju viltu bćta viđ?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Öđru stýrikerfi (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Öđru stýrikerfi (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Öđru stýrikerfi (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Rćsikjarna"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Rót"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Bćta aftan viđ"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Les-skrif"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tafla"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Óöruggt"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Nafn"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Sjálfgefiđ"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Fjarlćgja"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Autt er ekki leyft"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Ţú verđur ađ hafa diskminni"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
#, fuzzy
msgid "This label is already used"
msgstr "Ţetta nafn er nú ţegar í notkun."
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Fann %s %s tengi"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Er kannski eitt enn í vélinni?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Eru einhver %s tengi í tölvunni?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nei"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Já"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Skođađu vélbúnađarupplýsingar"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Set inn rekil fyrir %s kortiđ %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(eining %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -744,7 +744,7 @@ msgid ""
msgstr ""
# ## skrytid
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Viđföng eru gefin upp sem ``viđfang=gildi viđfang2=gildi2 ...''.\n"
"Til dćmis: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Stillingar kjarnaeininga:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hvađa %s rekil viltu prófa?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -782,15 +782,15 @@ msgstr ""
" hann ţarf? Stundum frystir sjálfvirk stilling vélina en ţađ ćtti ekki\n"
"ađ skemma neitt."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Stilla sjálfvirkt"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Stilla handvirkt"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -799,62 +799,62 @@ msgstr ""
"Innsetning á einingu %s mistókst.\n"
"Viltu prófa aftur međ ólík viđföng?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s er nú ţegar til)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Ţetta lykilorđ er of einfalt"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Vinsamlega sláđu inn notandanafn"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Ţetta notandanafn er nú ţegar til"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Ţetta notandanafn er nú ţegar til"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Bćta viđ notanda"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -863,32 +863,32 @@ msgstr ""
"Sláđu inn notanda\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Samţykkja notanda"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nafn notanda"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Notandanafn:"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Skel"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr ""
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr ""
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -897,59 +897,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:824
+#: ../../any.pm_.c:825
#, fuzzy
msgid "Choose the default user:"
msgstr "Veldu nýja stćrđ"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
#, fuzzy
msgid "Choose the window manager to run:"
msgstr "Veldu forritiđ sem ţú vilt nota"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Hvernig mús ertu međ?"
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr ""
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Bćta viđ notanda"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "Stađbundinn prentari"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,55 +958,55 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Velkomin(n) í tölvuţrjótinn"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Lélegt"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr ""
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hátt"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Hátt"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Taugaveiklađ"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1015,13 +1015,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1035,7 +1035,7 @@ msgstr ""
"Öryggiđ er nógu nógu mikiđ til ađ taka viđ fyrirspurnum frá\n"
"mörgum biđlum. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1044,36 +1044,36 @@ msgstr ""
"Kerfiđ er komiđ á 4. stig og er nú alveg lokađ.\n"
"Öryggiđ er á hćsta stigi."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Upplýsingar"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Hvernig mús ertu međ?"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Stilli öryggisţrep"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Veldu valmöguleika fyrir ţjón"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1086,7 +1086,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, fuzzy, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1113,58 +1113,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr ""
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1222,130 +1222,130 @@ msgstr "Hringja inn međ mótaldi"
msgid "Yaboot mode"
msgstr "Rćsitćki"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Setja kerfiđ inn"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Búa til nýja disksneiđ"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Villa"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "tćki"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Veldu innsetningarflokk"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, 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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Stilla X"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Val á pakkahóp"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
#, fuzzy
msgid "Themes"
msgstr "Tré"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1354,44 +1354,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr ""
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr ""
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr ""
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1497,53 +1497,61 @@ msgstr "rađtengd"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Ný"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Tengipunktur"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr "netţjónn"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Hvernig mús ertu međ?"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "netţjónn"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Tengipunktur: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, fuzzy, c-format
msgid "Options: %s"
msgstr "Rótardisksneiđ"
@@ -1631,7 +1639,7 @@ msgstr "Tóm"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Annađ"
@@ -1784,7 +1792,7 @@ msgstr ""
"Disksneiđin sem var tekin sem afrit er ekki af sömu stćrđ\n"
"Halda áfram?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Ađvörun"
@@ -2335,7 +2343,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:3529
#, fuzzy
msgid "Username"
msgstr "Notandanafn:"
@@ -2350,23 +2358,23 @@ msgstr "NIS lén"
msgid "Search servers"
msgstr "Nafnamiđlari"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, fuzzy, c-format
msgid "%s formatting of %s failed"
msgstr "gat ekki forsniđiđ %s"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "villa viđ ađ aftengja %s: %s"
@@ -2447,46 +2455,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Villa viđ ađ opna %s til skriftar: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Uppsetning"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Sem ţjón"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "Hjálp"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Prófunar skilgreining"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Augnablik..."
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2612,7 +2685,8 @@ msgid "/_Quit"
msgstr "Hćtta"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
#, fuzzy
msgid "/_Help"
msgstr "Hjálp"
@@ -2634,75 +2708,77 @@ msgstr ""
#: ../../harddrake/ui.pm_.c:71
#, fuzzy
+msgid "/_Report Bug"
+msgstr "Lélegt"
+
+#: ../../harddrake/ui.pm_.c:73
+#, fuzzy
msgid "/_About..."
msgstr "Tengipunktur"
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Stilla sjálfvirkt"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Nota fínstillingar á hörđum disk(um)"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Skođađu vélbúnađarupplýsingar"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Sýna upplýsingar"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Tilgreindu mús"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "%s tengipunktur er nú ţegar til"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Augnablik..."
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Viđföng fyrir fjartengda lpd prentara"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "Hćtti eftir %d sekúndur"
@@ -3755,7 +3831,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3770,7 +3846,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3779,31 +3855,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Get ekki notađ útsendingu án NIS léns"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, fuzzy, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../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
+#: ../../install_any.pm_.c:1030
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"
@@ -4054,7 +4130,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Velkomin(n) í tölvuţrjótinn"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Ekkert disklingadrif ađgengilegt"
@@ -4081,11 +4157,11 @@ msgstr "Innsetningarađferđ"
msgid "Please choose one of the following classes of installation:"
msgstr "Vinsamlega tilgreindu eftirfarandi"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Val á pakkahóp"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
#, fuzzy
msgid "Individual package selection"
msgstr "Val á pakkahóp"
@@ -4162,7 +4238,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Innsetning"
@@ -4185,7 +4261,7 @@ msgstr "Fjarlćgja"
msgid "Choose the packages you want to install"
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Set inn"
@@ -4213,19 +4289,19 @@ msgid "Installing package %s"
msgstr "Set inn pakka %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
#, fuzzy
msgid "Accept"
msgstr "Samţykkja notanda"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#, fuzzy
msgid "Refuse"
msgstr "Endurstćkka"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4236,16 +4312,16 @@ msgid ""
msgstr ""
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Viltu samt halda áfram?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ţađ kom upp villa viđ ađ rađa pökkum:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
#, fuzzy
msgid "There was an error installing packages:"
msgstr "Ţađ kom upp villa viđ ađ rađa pökkum:"
@@ -4343,7 +4419,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4421,7 +4497,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Lyklaborđ"
@@ -4638,47 +4714,47 @@ msgstr "Settu tóman diskling í drif %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Veldu pakka til ađ setja inn"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Augnablik"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr ""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Undirbý innsetningu"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4687,21 +4763,21 @@ msgstr ""
"Set inn pakka %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Lokauppsetning"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
#, fuzzy
msgid ""
"You now have the opportunity to download encryption software.\n"
@@ -4784,7 +4860,7 @@ msgstr ""
"Altadena, California, 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4796,168 +4872,168 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
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:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
#, fuzzy
msgid "Which is your timezone?"
msgstr "Á hvađa tímasvćđi ertu?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Veltu stilla tölvuklukkuna á GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS ţjónn"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
#, fuzzy
msgid "Remote CUPS server"
msgstr "Fjartengd prentröđ"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
#, fuzzy
msgid "No printer"
msgstr "Stađbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Er kannski eitt enn í vélinni?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
#, fuzzy
msgid "Mouse"
msgstr "USB mús"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Prentari"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Nota NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Upplýsingar"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Stađbundinn prentari"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Ákveđa rótarlykilorđ"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Ekkert lykilorđ"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "netţjónn"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Auđkenning NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS lén"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS ţjónn"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -4973,21 +5049,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Auđkenning"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nafn léns"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5016,21 +5092,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
#, fuzzy
msgid "First floppy drive"
msgstr "Fyrsta drif"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
#, fuzzy
msgid "Second floppy drive"
msgstr "Annađ drif"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Sleppa"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, fuzzy, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5057,7 +5133,7 @@ msgstr ""
"Viltu búa til rćsidiskling fyrir vélina ţína?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5066,28 +5142,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Ekkert disklingadrif til stađar"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Settu tóman diskling í drif %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Bý til rćsidiskling..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Set upp rćsistjórann..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5095,28 +5171,28 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Viltu nota SILO?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Setja inn rćsihlađara"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Innsetning LILO brást sökum eftirfarandi villu:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5127,18 +5203,18 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
#, fuzzy
msgid "Creating auto install floppy..."
msgstr "Undirbý innsetningu"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5148,7 +5224,7 @@ msgstr ""
"\n"
"Viltu virkilega hćtta núna?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5178,16 +5254,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
#, fuzzy
msgid "Generate auto install floppy"
msgstr "Undirbý innsetningu"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5196,17 +5272,17 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Automated"
msgstr "Sjálfvirkt IP"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
#, fuzzy
msgid "Replay"
msgstr "Endurhlađa"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
#, fuzzy
msgid "Save packages selection"
msgstr "Val á pakkahóp"
@@ -5244,14 +5320,14 @@ msgstr ""
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Texta"
@@ -5718,7 +5794,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr ""
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5861,17 +5937,17 @@ msgstr "Búiđ"
msgid "No mouse"
msgstr "Engin mús"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
#, fuzzy
msgid "Please test the mouse"
msgstr "Hvernig mús ertu međ?"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
#, fuzzy
msgid "To activate the mouse,"
msgstr "Hvernig mús ertu međ?"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr ""
@@ -5908,35 +5984,31 @@ msgstr "Loka tré"
msgid "Toggle between flat and group sorted"
msgstr ""
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
#, fuzzy
msgid "Connect to the Internet"
msgstr "Nafn tengingar"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr ""
@@ -6030,7 +6102,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:362
msgid "Configuring network"
msgstr "Stilli stađarnetstenginu"
@@ -6047,16 +6119,16 @@ 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:367
#, fuzzy
msgid "Host name"
msgstr "Vélarheiti:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Network Configuration Wizard"
msgstr "Netstillingar"
@@ -6099,8 +6171,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Les uppsetningarskrá"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
#, fuzzy
msgid "ISDN Configuration"
msgstr "Uppsetning"
@@ -6135,26 +6207,31 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Hvađa sneiđtegund viltu?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
#, fuzzy
msgid "What kind of card do you have?"
msgstr "Hvernig prentara ertu međ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr ""
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
#, fuzzy
msgid "ISA / PCMCIA"
msgstr "PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
#, fuzzy
msgid "PCI"
msgstr "PCMCIA"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6163,27 +6240,27 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
#, fuzzy
msgid "Continue"
msgstr "Halda samt áfram?"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
#, fuzzy
msgid "Which is your ISDN card?"
msgstr "Á hvađa tímasvćđi ertu?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -6239,62 +6316,62 @@ msgstr "Ađal nafnamiđlari"
msgid "Second DNS Server (optional)"
msgstr "Vara nafnamiđlari"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
#, fuzzy
msgid "You are currently connected to internet."
msgstr "Hvađa disk viltu fćra til?"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr "Nafn tengingar"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
#, fuzzy
msgid "You are not currently connected to Internet."
msgstr "Hvađa disk viltu fćra til?"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Nafn tengingar"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6306,12 +6383,12 @@ msgid ""
"Press OK to continue."
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netstillingar"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6319,7 +6396,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6327,107 +6404,107 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
#, fuzzy
msgid "Choose the profile to configure"
msgstr "Veldu nýja stćrđ"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Leita ađ tćkjum..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy
msgid "Normal modem connection"
msgstr "Stilla nettengingu"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, fuzzy, c-format
msgid "detected on port %s"
msgstr "%s tengipunktur er nú ţegar til"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, fuzzy
msgid "ISDN connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "Cable connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
#, fuzzy
msgid "LAN connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Veldu forritiđ sem ţú vilt nota"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Veldu prenttengingu"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
#, fuzzy
msgid "Do you want to start the connection at boot?"
msgstr "Viltu nota aboot?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
#, fuzzy
msgid "Network configuration"
msgstr "Netstillingar"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6435,27 +6512,27 @@ msgid ""
"%s"
msgstr "Viltu prófa skilgreininguna"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6463,7 +6540,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6473,45 +6550,45 @@ msgstr ""
"á ađ vera IP tala rituđ međ punkt á milli.\n"
"(dćmi 192.168.1.13)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Stilli nettćki %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, fuzzy, c-format
msgid " (driver %s)"
msgstr "XFree86 ţjónn: %s\n"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
#, fuzzy
msgid "IP address"
msgstr "IP vistfang:"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
#, fuzzy
msgid "Netmask"
msgstr "Netsía:"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Sjálfvirkt IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Búa til rćsidiskling"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6523,43 +6600,54 @@ 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:368
msgid "DNS server"
msgstr "Nafnamiđlari"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gátt (tćkiđ)"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP vistfang á ađ vera á sniđinu 192.168.1.10"
+
+#: ../../network/network.pm_.c:394
#, fuzzy
msgid "Proxies configuration"
msgstr "Lokauppsetning"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP sel:"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP Sel:"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Sel á ađ vera http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Sel á ađ vera ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Sel á ađ vera http://..."
#: ../../network/shorewall.pm_.c:24
#, fuzzy
@@ -7952,7 +8040,7 @@ msgstr "Keyri upp netiđ"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8457,11 +8545,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Sel á ađ vera http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8511,6 +8594,43 @@ msgstr ""
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ekki nógu margar disksneiđar fyrir RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Stilli öryggisţrep"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Stilli öryggisţrep"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Viđföng fyrir fjartengda lpd prentara"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " ? (sjálfgefiđ %s) "
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Stilli öryggisţrep"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Undirbý innsetningu"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8745,7 +8865,7 @@ msgstr "Endursníđ..."
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Mouse Systems"
@@ -8842,7 +8962,7 @@ msgstr "Nafn tengingar"
#: ../../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"
msgstr ""
@@ -8890,7 +9010,7 @@ msgstr "Endursníđ..."
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8915,7 +9035,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -8931,7 +9051,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8946,7 +9066,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8995,8 +9115,8 @@ 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 your 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
@@ -9033,11 +9153,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Set inn pakka %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Stimplađu ţig út og sláđu á Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Stimplađu ţig aftur inn í %s til ađ virkja breytingarnar"
@@ -9085,17 +9205,6 @@ msgstr "Bćta viđ notanda"
msgid "Add/Del Clients"
msgstr ""
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "Hjálp"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9148,52 +9257,67 @@ msgstr "Bćta viđ notanda"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr ""
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Uppsetning"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Uppsetning"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "Stilla X"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Settu tóman diskling í drif %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Ekkert disklingadrif ađgengilegt"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9317,13 +9441,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Prófa tengi"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9332,41 +9456,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Ekkert lykilorđ"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Villa viđ ađ opna %s til skriftar: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9377,67 +9501,67 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9445,908 +9569,910 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Villa viđ lestur skráarinnar %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Val á pakkahóp"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Fjartengd prentröđ"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Reyndu aftur"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Ákveđa rótarlykilorđ"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Hvađa lyklaborđsuppsetningu viltu?"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Smelltu á disksneiđ"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Veljiđ skrá"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Geiri"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tegund"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Notandanafn:"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Augnablik"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "stig"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Stillingar kjarnaeininga:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Veldu pakkana sem ţú vilt setja inn"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Setja upp skráarkerfi"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Mús: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Upplýsingar"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Hvađa rađtengi er mótaldiđ tengt viđ?"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Hvernig mús ertu međ?"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr ""
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Annađ"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Setja kerfiđ inn"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Fjartengd prentröđ"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Endurheimta frá diskling"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Endurheimta frá diskling"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Vélarheiti:"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Lykilorđ"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Notandanafn:"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Vélarheiti:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Sérlagađa"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Endurheimta frá diskling"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Endurheimta frá skrá"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "netţjónn"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Endurstćkka"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Skemmd afritsskrá"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Vista í skrá"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Netstillingar"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Uppsetning"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10378,7 +10504,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10387,7 +10513,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10428,7 +10554,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10456,17 +10582,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10483,7 +10609,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10523,7 +10649,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10534,7 +10660,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10547,7 +10673,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10629,8 +10755,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Sel stillingar"
@@ -10707,29 +10833,29 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Lélegt"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Hćtta innsetningu"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
#, fuzzy
msgid "connecting to Bugzilla wizard ..."
msgstr "Uppsetning"
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr ""
@@ -10838,11 +10964,6 @@ msgstr ""
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Prófunar skilgreining"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -10966,7 +11087,7 @@ msgstr "Stillingar kjarnaeininga:"
msgid "Size"
msgstr "Stćrđ: %s"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
#, fuzzy
msgid "drakfloppy"
msgstr "Endurheimta frá diskling"
@@ -11042,24 +11163,24 @@ msgstr ""
msgid "Build the disk"
msgstr ""
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Stilla nettengingu"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11517,156 +11638,156 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Veldu prenttengingu"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Vinnuhópur"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "Rótardisksneiđ"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "USB mús"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Eyđa"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
#, fuzzy
msgid "edit"
msgstr "Miđlungs"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Búiđ"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Bćta viđ notanda"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Stađbundinn prentari"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Fjartengd prentröđ"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Samţykkja notanda"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Útgáfa: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Lélegt"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Val á pakkahóp"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Notandaheiti:"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Vinnuhópur"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Veldu prenttengingu"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11678,136 +11799,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Lokauppsetning"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Upplausn"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Veldu ađgerđ"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Samnýtingarheiti"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
+msgid "the heigth of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "preview"
+msgid "Preview"
msgstr "tćki"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "choose color"
-msgstr "Veldu skjá"
+msgid "Save theme"
+msgstr "Setja kerfiđ inn"
#: ../../standalone/draksplash_.c:124
+#, fuzzy
+msgid "Choose color"
+msgstr "Veldu skjá"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Veldu prenttengingu"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Prenttćki:"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Leita ađ tćkjum..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11946,6 +12078,12 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
@@ -11974,11 +12112,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr ""
@@ -12267,16 +12405,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12354,7 +12489,7 @@ msgstr "Setja kerfiđ inn"
msgid "Exit install"
msgstr "Hćtta innsetningu"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -12613,6 +12748,17 @@ msgstr "Margmiđlun"
msgid "Scientific Workstation"
msgstr "Upplýsingar"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Lokauppsetning"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Sel á ađ vera ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Hćtta"
+
#~ msgid "You don't have any partitions!"
#~ msgstr "Ţú hefur ekki neinar disksneiđar"
@@ -12694,9 +12840,6 @@ msgstr "Upplýsingar"
#~ msgid "Test again"
#~ msgstr "Prófa aftur"
-#~ msgid "Setting security level"
-#~ msgstr "Stilli öryggisţrep"
-
#~ msgid "Select a graphics card"
#~ msgstr "Veldu skjákort"
@@ -12779,9 +12922,6 @@ msgstr "Upplýsingar"
#~ msgid "Ambiguity (%s), be more precise\n"
#~ msgstr "Óljóst (%s), vertu nákvćmari\n"
-#~ msgid " ? (default %s) "
-#~ msgstr " ? (sjálfgefiđ %s) "
-
#~ msgid "Your choice? (default %s enter `none' for none) "
#~ msgstr "Ţitt val? (sjálfgefiđ %s sláđu inn `none' fyrir engan) "
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index 40839698c..32ef6dbb8 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -8,7 +8,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2002-09-04 20:02+0200\n"
"Last-Translator: Roberto Rosselli Del Turco <rosselli@ling.unipi.it>\n"
"Language-Team: Italian <it@li.org>\n"
@@ -92,24 +92,24 @@ msgstr "Configura tutte le testine indipendentemente"
msgid "Use Xinerama extension"
msgstr "Usa l'estensione Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configura solo la scheda \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s con accelerazione 3D hardware SPERIMENTALE"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -152,12 +152,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installazione driver video)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Condivisione personalizzata"
@@ -178,32 +178,32 @@ msgstr "Risoluzione"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Esci"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -302,25 +302,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Annulla"
@@ -397,11 +397,11 @@ msgstr "Server XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X all'avvio"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -410,7 +410,7 @@ msgstr ""
"Posso configurare il tuo computer per eseguire X automaticamente all'avvio.\n"
"Vuoi che X venga eseguito quando riavvierai?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Di che tipo č la tua connessione ISDN?"
@@ -495,7 +495,7 @@ msgstr "Compatta"
msgid "compact"
msgstr "compatta"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modo video"
@@ -503,17 +503,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Password"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Password (ripeti)"
@@ -549,14 +549,14 @@ msgstr ""
"L'opzione ''Limita opzioni della linea di comando'' č inutile\n"
"senza un password"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Per favore prova di nuovo"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Le password non corrispondono"
@@ -599,7 +599,7 @@ msgstr ""
"\n"
"Da quale disco effettuate il boot?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -607,148 +607,148 @@ msgstr ""
"Queste sono le voci attuali.\n"
"Puoi aggiungerne altre o cambiare quelle esistenti."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Aggiungi"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Fatto"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifica"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Che tipo di voce vuoi aggiungere"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Altro OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Altro OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Altro OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Immagine"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Aggiungi"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lettura-scrittura"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabella"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Non sicuro"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etichetta"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predefinito"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Dimensioni Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "No Video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Rimuovi voce"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Etichetta vuota non ammessa"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Dovete indicare l'immagine di un kernel"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Devi specificare una partizione radice"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Questa etichetta č giŕ stata usata"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Trovate %s interfacce %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Ne hai un'altra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hai una qualsiasi interfaccia %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sě"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Vedi informazioni hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Installazione driver per scheda %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -758,7 +758,7 @@ msgstr ""
"Si noti che ogni indirizzo dovrebbe essere inserito con il prefisso 0x (ad "
"es. '0x123')."
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -769,17 +769,17 @@ msgstr ""
"Le opzioni sono in formato ''nome=valore nome2=valore2 ...''.\n"
"Per esempio, ''io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opzioni del modulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quale driver %s dovrei provare?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -797,15 +797,15 @@ msgstr ""
"informazioni di cui ha bisogno? Occasionalmente, la ricerca bloccherŕ il\n"
"computer, ma non dovrebbe causare alcun danno."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Investgazione automatica"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specifica opzioni"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -814,64 +814,64 @@ msgstr ""
"Caricamento del modulo %s fallito.\n"
"Vuoi riprovare con altri parametri?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "accesso ai programmi X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "permetti \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "accesso ai file di amministrazione del sistema"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "accesso agli strumenti RPM"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s giŕ aggiunto)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Questo password č troppo semplice"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Per favore fornisci un nome utente"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Questo nome utente č troppo lungo"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Questo nome utente č giŕ stato aggiunto"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Aggiungi utente"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -880,32 +880,32 @@ msgstr ""
"Inserisci un utente\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Accetta utente"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Vero nome"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome utente"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -914,19 +914,19 @@ msgstr ""
"utente all'avvio.\n"
"Vuoi sfruttare questa caratteristica?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Scegli l'utente predefinito"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Scegli il window manager da eseguire:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Per favore, scegli la lingua da utilizzare."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -934,35 +934,35 @@ msgid ""
msgstr ""
"Potete scegliere altre lingue che saranno disponibili dopo l'installazione"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tutto"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permetti a tutti gli utenti"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Nessuna condivisione"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Il pacchetto obbligatorio %s č assente"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -977,11 +977,11 @@ msgstr ""
"\n"
"\"Custom\" permette un controllo piů preciso per ogni utente.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Lancia userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -989,31 +989,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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Benvenuti cracker"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Scarso"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Normale"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Piů alto"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoico"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1023,7 @@ msgstr ""
"ma molto delicato: non deve essere usato per una macchina connessa ad altre\n"
"o ad Internet. Non c'č nessun accesso con password."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1031,7 +1031,7 @@ msgstr ""
"Ora le password sono abilitate, ma l'uso come computer di rete č comunque\n"
"ancora sconsigliato."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1040,7 +1040,7 @@ msgstr ""
"usare per\n"
"connettersi ad Internet come cliente."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1048,7 +1048,7 @@ msgstr ""
"Esistono giŕ alcuni limiti, e ogni notte vengono eseguiti ulteriori "
"controlli automatici."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1066,7 +1066,7 @@ msgstr ""
"livello\n"
"piů basso."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1074,36 +1074,36 @@ msgstr ""
"Basato sul livello precedente, ma ora il sistema č completamente\n"
"chiuso. Le funzioni di sicurezza sono al massimo."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opzioni"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Scegli livello di sicurezza"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Livello di sicurezza"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Usa libsafe per i server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1111,7 +1111,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1127,59 +1127,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Menu di avvio"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nessun aiuto presente (per ora).\n"
@@ -1231,107 +1231,107 @@ msgstr "Modo LILO/GRUB"
msgid "Yaboot mode"
msgstr "Modo Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Installa sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Crea una nuova partizione"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Errore"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Sto copiando %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "No Video"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
# there is no room to put "Scegli classe d'installazione"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Classe d'installazione"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1340,22 +1340,22 @@ msgstr ""
"Al momento state usando %s come Boot Manager.\n"
"Cliccate su Configura per lanciare l'assistente di configurazione."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configura"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Salva scelta pacchetti"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1364,44 +1364,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Modo sistema"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Lancia il sistema X Window all'avvio"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "No, non voglio il login automatico"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sě, voglio il login automatico con questo (utente, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Non riesco ad aprire /etc/inittab in lettura: %s"
@@ -1498,53 +1498,61 @@ msgstr "Austria"
msgid "United States"
msgstr "Stati Uniti"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "nuovo"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Esegui mount"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Per favore, insersci la velocitŕ del masterizzatore"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opzioni: %s"
@@ -1633,7 +1641,7 @@ msgstr "Vuoto"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Altro"
@@ -1777,7 +1785,7 @@ msgstr ""
"La copia di sicurezza della tabella delle partizioni non ha la stessa\n"
"dimensione. Continuo comunque?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Attenzione"
@@ -2338,7 +2346,7 @@ msgstr ""
"Per favore digitate il vostro nome utente, il password e il nome di dominio\n"
"per poter accedere a questo host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Nome utente"
@@ -2350,23 +2358,23 @@ msgstr "Dominio"
msgid "Search servers"
msgstr "Ricerca server"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formattazione di %s fallita"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "il mount della partizione %s sulla directory %s non č riuscito"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "errore in fase di unmount di %s: %s"
@@ -2452,48 +2460,111 @@ msgstr "Nulla da fare"
msgid "Error opening %s for writing: %s"
msgstr "Errore aprendo %s in scrittura: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configurazione di CUPS"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Driver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Aiuto"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Per favore attendi... sto applicando la configurazione"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Attendere prego"
+
+#: ../../harddrake/sound.pm_.c:208
#, fuzzy
msgid "No known driver"
msgstr "Driver X"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Modello sconosciuto"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2617,7 +2688,8 @@ msgid "/_Quit"
msgstr "/_Esci"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Guida"
@@ -2636,69 +2708,70 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Segnala un bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Informazioni su..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autore:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Versione di Harddrake2 "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Hardware identificato"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informazioni"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Configura modulo"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Identificazione in corso"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Attendere prego"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Sto eseguendo \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "secondario"
@@ -2727,10 +2800,10 @@ msgid ""
msgstr ""
"Per la maggior parte delle schede sintonizzatore TV moderne, il modulo bttv "
"del kernel GNU/Linux si limita\n"
-"ad 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."
+"ad 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
msgid "Card model:"
@@ -3114,7 +3187,8 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
-"Se desiderate connettere il vostro computer ad Internet o ad una rete locale,\n"
+"Se desiderate connettere il vostro computer ad Internet o ad una rete "
+"locale,\n"
"assicuratevi di scegliere l'opzione corretta. Accendete la periferica che\n"
"dovrete usare per connettervi prima di scegliere l'opzione adeguata, per\n"
"permettere a DrakX di individuarla automaticamente.\n"
@@ -3644,7 +3718,8 @@ msgstr ""
"relativi alla sicurezza. Per permettervi di beneficiare di questi\n"
"aggiornamenti vi verrŕ proposto di scaricare la nuova versione dei\n"
"pacchetti usando Internet. Scegliete \"Sě\" se potete contare su una\n"
-"connessione ad Internet funzionante, oppure \"No\" se preferite installare i\n"
+"connessione ad Internet funzionante, oppure \"No\" se preferite installare "
+"i\n"
"pacchetti aggiornati in un secondo momento.\n"
"\n"
"Se scegliete \"Sě\" comparirŕ una lista di siti da cui č possibile\n"
@@ -4203,7 +4278,8 @@ msgstr ""
"l'autenticazione. Se non siete sicuri, chiedete al vostro amministratore di\n"
"rete.\n"
"\n"
-"Se il vostro computer non č connesso ad una rete soggetta ad autenticazione,\n"
+"Se il vostro computer non č connesso ad una rete soggetta ad "
+"autenticazione,\n"
"scegliete \"File locali\"."
# DO NOT BOTHER TO MODIFY HERE, SEE:
@@ -4747,7 +4823,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Dovete formattare anche %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4771,7 +4847,7 @@ msgstr ""
"\n"
"Vuoi davvero installare questi server?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4780,20 +4856,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Non posso usare broadcast senza un dominio NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Inserisci un floppy MS-DOS nel drive %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Questo floppy non č stato formattato usando MS DOS/Windows"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4801,12 +4877,12 @@ msgstr ""
"Per usare la selezione di pacchetti che avete salvato, dovete cominciare "
"l'installazione digitando ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Errore leggendo il file %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -5052,7 +5128,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Benvenuto a %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nessun drive floppy disponibile"
@@ -5081,11 +5157,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selezione Gruppi di Pacchetti"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selezione individuale pacchetti"
@@ -5163,7 +5239,7 @@ msgstr "Mostra i pacchetti selezionati automaticamente"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installa"
@@ -5183,7 +5259,7 @@ msgstr "Installazione minima"
msgid "Choose the packages you want to install"
msgstr "Scegli i pacchetti da installare"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Installazione"
@@ -5210,17 +5286,17 @@ msgid "Installing package %s"
msgstr "Installazione del pacchetto %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accetta"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Rifiuta"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5233,20 +5309,20 @@ msgstr ""
"\n"
"Per favore inserisci il Cd-Rom chiamato \"%s\" nel tuo lettore e premi Ok "
"quando\n"
-"č pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da questo "
-"Cd-Rom."
+"č pronto. Se non ce l'hai, premi Annulla per evitare l'installazione da "
+"questo Cd-Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Vado avanti comunque?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "C'č stato un errore ordinando i pacchetti:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "C'č stato un errore installando i pacchetti:"
@@ -5375,7 +5451,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5466,12 +5542,13 @@ msgstr ""
"usare in qualsiasi modo il Software implica l'esplicita accettazione e il "
"pieno consenso ad adeguarsi ai termini e alle condizioni di questa Licenza. "
"Se non siete d'accordo con uno o piů punti della Licenza, non avete "
-"l'autorizzazione ad installare, duplicare o utilizzare il Software. Qualunque "
-"tentativo di installare, duplicare o utilizzare il Software in modi non "
-"conformi ai termini e alle condizioni della Licenza porterŕ automaticamente "
-"all'annullamento della licenza e alla revoca dei vostri diritti ai sensi "
-"della stessa. Una volta invalidata la Licenza, avete l'obbligo di "
-"distruggere immediatamente tutte le copie del Software in vostro possesso.\n"
+"l'autorizzazione ad installare, duplicare o utilizzare il Software. "
+"Qualunque tentativo di installare, duplicare o utilizzare il Software in "
+"modi non conformi ai termini e alle condizioni della Licenza porterŕ "
+"automaticamente all'annullamento della licenza e alla revoca dei vostri "
+"diritti ai sensi della stessa. Una volta invalidata la Licenza, avete "
+"l'obbligo di distruggere immediatamente tutte le copie del Software in "
+"vostro possesso.\n"
"\n"
"\n"
"2. Garanzia e limiti della garanzia\n"
@@ -5549,7 +5626,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastiera"
@@ -5760,11 +5837,11 @@ msgstr "Inserisci un floppy contenente la scelta dei pacchetti"
msgid "Selected size is larger than available space"
msgstr "Lo spazio indicato č maggiore dello spazio disponibile"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipo di installazione"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5772,19 +5849,19 @@ msgstr ""
"Non avete selezionato nessun gruppo di pacchetti.\n"
"Per favore scegliete il tipo di installazione minima desiderato:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Con X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Con la documentazione essenziale (raccomandata!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Installazione veramente minima (in particolare niente urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5794,16 +5871,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom chiamato \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Sto preparando l'installazione"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5812,21 +5889,21 @@ msgstr ""
"Installazione del pacchetto %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configurazione post installazione"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5902,7 +5979,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5923,161 +6000,161 @@ msgstr ""
"\n"
"Volete installare gli aggiornamenti?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Scegli un mirror da cui prendere i pacchetti"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Qual'č il tuo fuso orario?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "L'orologio del tuo hardware č settato su GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizzazione automatica dell'ora (usando NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Server CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nessuna stampante"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Hai una scheda audio ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Riepilogo"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Fuso orario"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Stampante"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Scheda ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Scheda audio"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Scheda TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Prendi i font di Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "File locali"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Scegli il password per root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Nessun Password"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Questo password č troppo semplice (deve essere almeno di %d caratteri)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticazione"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autenticazione NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Dominio NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -6093,21 +6170,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticazione LDAP"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome dominio"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6136,19 +6213,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Secondo drive floppy"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Salta"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6174,7 +6251,7 @@ msgstr ""
"del sistema. Vuoi creare un disco di avvio per il tuo sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6188,29 +6265,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Spiacente, nessun drive floppy disponibile"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Inserisci un floppy nel drive %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Creazione disco di avvio"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparazione del bootloader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6222,11 +6299,11 @@ msgstr ""
"L'installazione continuerŕ, ma dovrai usare\n"
" BootX per avviare il tuo computer"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Vuoi usare aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6234,16 +6311,16 @@ msgstr ""
"Errore installando aboot, \n"
"provo a forzare l'installazione anche se ciň distrugge la prima partizione?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Sto installando il bootloader"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Installazione del bootloader fallita. Si č verificato il seguente errore:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6260,17 +6337,17 @@ msgstr ""
" Poi digitate: shut-down\n"
"Al boot successivo dovreste vedere il prompt del bootloader."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Sto creando il floppy di installazione automatica ..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6280,7 +6357,7 @@ msgstr ""
"\n"
"Vuoi veramente interrompere adesso?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6313,15 +6390,15 @@ msgstr ""
"capitolo\n"
"sulla post-installazione della Guida Ufficiale dell'Utente Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Crea il floppy di installazione automatica"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6336,15 +6413,15 @@ msgstr ""
"\n"
"Probabilmente preferirete ripetere l'installazione.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizzata"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ripeti"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Salva scelta pacchetti"
@@ -6380,14 +6457,14 @@ msgstr "Avanzato"
msgid "Basic"
msgstr "Di base"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Successivo"
@@ -6837,7 +6914,7 @@ msgstr "Tasto \"Windows\" di destra"
msgid "Circular mounts %s\n"
msgstr "Mount circolari %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Prima rimuovi i volumi logici\n"
@@ -6975,15 +7052,15 @@ msgstr "nessuno"
msgid "No mouse"
msgstr "Nessun mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Per favore prova il mouse"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Per attivare il mouse"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MUOVI LA RUOTA!"
@@ -7020,11 +7097,11 @@ msgstr "Raggruppa struttura"
msgid "Toggle between flat and group sorted"
msgstr "Cambia tra ordinamento semplice o a gruppi"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Connetti ad Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7034,23 +7111,19 @@ msgstr ""
"Alcune connessioni usano pptp, poche usano dhcp.\n"
"Se non sai, scegli 'usa pppoe'."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "usa dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "usa pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "usa pptp"
@@ -7153,7 +7226,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:362
msgid "Configuring network"
msgstr "Sto configurando la rete"
@@ -7169,15 +7242,15 @@ 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:367
msgid "Host name"
msgstr "Nome host"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Wizard della configurazione di rete"
@@ -7225,8 +7298,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Vecchia configurazione (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configurazione ISDN"
@@ -7262,23 +7335,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Quale protocollo vuoi usare?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Che tipo di scheda hai?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Non so"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7292,19 +7370,19 @@ msgstr ""
"\n"
"Se hai una scheda PCMCIA, devi sapere IRQ e I/O della tua scheda.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Annulla"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continua"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Qual'č la tua scheda ISDN?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7312,7 +7390,7 @@ msgstr ""
"Ho trovato una scheda ISDN PCI, ma non so di che tipo. Per favore seleziona "
"una scheda PCI nella prossima schermata."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Non trovo nessuna scheda ISDN PCI. Per favore selezionane una \n"
@@ -7366,7 +7444,7 @@ msgstr "Primo server DNS (opzionale)"
msgid "Second DNS Server (optional)"
msgstr "Secondo server DNS (opzionale)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7374,7 +7452,7 @@ msgstr ""
"\n"
"Puoi disconnetterti o riconfigurare la tua connessione."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7382,11 +7460,11 @@ msgstr ""
"\n"
"Puoi configurare nuovamente la connessione."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Adesso sei connesso ad Internet"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7394,32 +7472,32 @@ msgstr ""
"\n"
"Puoi connetterti ad Internet o configurare nuovamente la connessione."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "In questo momento non sei connesso ad Internet"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Connetti"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Disconnetti"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configura la connessione"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Connessione & configurazione Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Adesso proseguiremo con la configurazione della connessione %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7438,12 +7516,12 @@ msgstr ""
"\n"
"Premi OK per cominciare."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configurazione della rete"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7455,7 +7533,7 @@ msgstr ""
"Clicca su Ok per mantenere questa configurazione, o su Annulla per "
"riconfigurare la rete e la connessione ad Internet.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7468,72 +7546,72 @@ msgstr ""
"Se non volete usare il riconoscimento automatico, deselezionate il \n"
"pulsante d'opzione.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Scegli il profilo da configurare"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Usa il riconoscimento automatico"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Riconoscimento periferiche..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Connessione normale via modem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "rilevato sulla porta: %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Connessione ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "rilevato %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Connessione ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "rilevato sull'interfaccia %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Connessione via cavo"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Rilevata connessione via cavo"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Connessione LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "rilevata scheda(e) ethernet"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Scegli il tipo di connessione che vuoi configurare"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7543,23 +7621,23 @@ msgstr ""
"Scegli quello che vuoi usare.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Connessione ad Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Vuoi effettuare la connessione all'avvio?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configurazione della rete"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "La rete dev'essere riavviata"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7570,7 +7648,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7580,7 +7658,7 @@ msgstr ""
"\n"
"Adesso questa configurazione verrŕ applicata al vostro sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7588,7 +7666,7 @@ msgstr ""
"Dopo che questo sarŕ stato fatto, vi raccomandiamo di riavviare il\n"
"vostro ambiente X per evitare problemi relativi al cambio di hostname."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7598,7 +7676,7 @@ msgstr ""
"Provate la connessione usando net_monitor o mcc. Se la connessione non "
"funziona, dovreste ripetere la configurazione."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7610,7 +7688,7 @@ msgstr ""
"Devi solo cliccare su OK per mantenere la precedente configurazione.\n"
"Modifiche ai campi qui sotto cambieranno questa configurazione."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7620,42 +7698,42 @@ msgstr ""
"Ogni dato dovrebbe essere inserito come un indirizzo IP in notazione\n"
"decimale puntata (ad esempio 1.2.3.4.)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Sto configurando il dispositivo di rete %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Indirizzo IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automatico"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Attiva al momento del boot"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7667,42 +7745,53 @@ 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:368
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (es. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositivo di gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Configurazione dei proxy"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Individua identitŕ della scheda di rete (utile per i laptop)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Il proxy dovrebbe essere http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Il proxy dovrebbe essere ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "L'URL dovrebbe cominciare con 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9142,7 +9231,7 @@ msgstr "Sto stampando con la stampante \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9628,11 +9717,6 @@ msgstr ""
"Per favore completa le informazioni relative al proxy ftp\n"
"Lascia in bianco se non desideri un proxy ftp"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "L'URL dovrebbe cominciare con 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9680,6 +9764,43 @@ msgstr "mkraid fallito (forse manca raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Non ci sono abbastanza partizioni per RAID livello %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Livello di sicurezza"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Livello di sicurezza"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Amministrazione remota"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Predefinito)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Scegli livello di sicurezza"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Per favore attendi, sto preparando l'installazione"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Lancia il sistema audio ALSA (Advanced Linux Sound Architecture)"
@@ -9988,7 +10109,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -10078,7 +10199,7 @@ msgstr "Connetti ad Internet"
#: ../../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"
msgstr ""
@@ -10123,7 +10244,7 @@ msgstr "Interfacce utente"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10148,7 +10269,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -10164,7 +10285,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10179,7 +10300,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -10227,8 +10348,8 @@ 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 your 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
@@ -10264,11 +10385,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Installazione dei pacchetti ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Per favore esci e usa Ctrl-Alt-Backspace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Per favore rientra come %s per attivare le modifiche"
@@ -10309,16 +10430,6 @@ msgstr "Aggiungi/Rimuovi utenti"
msgid "Add/Del Clients"
msgstr "Aggiungi/Rimuovi client"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Aiuto"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10367,48 +10478,63 @@ msgstr "Aggiungi utente -->"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Rimuovi client"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Configurazione dhcpd ..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configurazione avanzata"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Scrivi configurazione"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Per favore inserisci il floppy disk:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Nessun drive floppy disponibile!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10525,13 +10651,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "progresso totale"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10540,41 +10666,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Nessuna Password"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10585,65 +10711,65 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Backup dei file di sistema..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "File di backup su disco rigido..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup dei file dell'utente"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Progresso del backup del disco rigido..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Usa unitŕ a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10651,52 +10777,52 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, fuzzy, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr "Errore durante l'invio della mail. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selezione file"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Selezionate i file e le directory e cliccate su 'Aggiungi'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10704,7 +10830,7 @@ msgstr ""
"\n"
"Per favore abilitate tutte le opzioni necessarie\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
@@ -10712,20 +10838,20 @@ msgstr ""
"nella\n"
"vostra directory /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Backup dei vostri file di sistema (directory /etc)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Non includere file critici (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10733,131 +10859,133 @@ msgstr ""
"Grazie a questa opzione sarete in grado di ripristinare ogni versione della\n"
"vostra directory /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Non includere la cache del navigatore"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Usa backup incrementali (non sostituire i vecchi backup)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Utenti"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Usa unitŕ a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Per favore inserisci il nome dell'host o l'IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
#, 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:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Per favore inserisci il tuo nomei di login"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Per favore inserisci il tuo password"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Ricorda questo password"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Per favore, scegliete lo spazio su CD"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Per favore, accertatevi di usare supporti CD-RW"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10865,36 +10993,36 @@ msgstr ""
"Per favore, inserite il numero che identifica il vostro masterizzatore\n"
"ad esempio: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Scegli file"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Usa unitŕ a nastro per effettuare il backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
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:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10902,57 +11030,57 @@ msgstr ""
"Per favore, indicate le dimensioni massime\n"
"concesse a Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Usa una quota per i file di backup."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Rete"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disco rigido  / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "ogni ora"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "ogni giorno"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "settimanale"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "ogni mese"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Usa demone"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10960,7 +11088,7 @@ msgstr ""
"Per favore, scegli la frequenza\n"
"del backup"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10968,7 +11096,7 @@ msgstr ""
"Per favore, scegli il supporto\n"
"del backup"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
#, fuzzy
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
@@ -10977,71 +11105,71 @@ msgid ""
msgstr ""
"Per favore, accertatevi che il demone cron sia incluso fra i servizi attivi"
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Dopo ogni backup invia una mail rapporto a:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Cosa"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Dove"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Quando"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Altre opzioni"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Configurazione di Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Per favore scegliete dove volete effettuare il backup"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "sul disco rigido"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "sulla rete"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Per favore scegliete i pacchetti che volete installare."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Sistema di backup"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Fai il backup degli utenti"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Seleziona l'utente manualmente"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11049,7 +11177,7 @@ msgstr ""
"\n"
"Fonti del backup: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11057,7 +11185,7 @@ msgstr ""
"\n"
"- File di sistema:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11065,7 +11193,7 @@ msgstr ""
"\n"
"- File degli utenti:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11073,7 +11201,7 @@ msgstr ""
"\n"
"- Altri file:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11082,32 +11210,32 @@ msgstr ""
"\n"
"- Salva su disco rigido seguendo il percorso: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositivo del mouse: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, fuzzy, c-format
msgid ""
"\n"
@@ -11116,12 +11244,12 @@ msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, fuzzy, c-format
msgid ""
"\n"
@@ -11130,7 +11258,7 @@ msgstr ""
"\n"
"- Salva via FTP sull'host: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11139,7 +11267,7 @@ msgstr ""
"\t\t nome utente: %s\n"
"\t\t sul percorso: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11147,325 +11275,325 @@ msgstr ""
"\n"
"-Opzioni:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNon includere file di sistema\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tEffettua backup usando tar e bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tI backup fanno uso di tar e gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Disco rigido.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Rete via SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
#, fuzzy
msgid "\t-Network by rsync.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
#, fuzzy
msgid "\t-Network by webdav.\n"
msgstr "\t-Rete via FTP.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
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:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr "Lista di dati da ripristinare:\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr "Lista di dati corrotti:\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Per favore scegliete a che porta seriale č connesso il vostro modem."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "I file di backup sono corrotti"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
#, fuzzy
msgid " All of your selected data have been "
msgstr "          Tutti i dati selezionati sono stati          "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr "          Ripristinati con successo su %s       "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr "         Ripristina configurazione       "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK al ripristino degli altri file"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Effettua il backup dei file di sistema prima di:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Per favore, scegliete la data da ripristinare"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Usa il disco rigido per effettuare il backup"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Per favore inserisci la directory da salvare:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Connessione FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Connessione sicura"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Ripristina da disco rigido"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Per favore, indicate la directory in cui sono archiviati i backup"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Scegliete un altro supporto dal quale effettuare il ripristino"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Altri supporti"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Ripristina sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "selezionate il percorso del ripristino (invece di / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"Effettua nuovo backup prima del ripristino (solo per backup incrementali)."
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Rimuovi le directory dell'utente prima del ripristino."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, fuzzy, c-format
msgid "Backup files not found at %s."
msgstr "I file di backup sono corrotti"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Ripristina da disco rigido"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Ripristina tabella delle partizioni"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nome host"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Password"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nome utente"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nome host: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Ripristina altro"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Ripristina tutti i backup"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Personalizza il ripristino"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Ripristina tabella delle partizioni"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Ripristina utenti"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Precedente"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Salva"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Costruisci backup"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Ripristina"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
#, fuzzy
msgid ""
"Error during sendmail.\n"
@@ -11476,14 +11604,14 @@ msgstr ""
" la vostra mail di report non č stata inviata\n"
" Per favore configurate sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
#, fuzzy
msgid ""
"Error during sending file via FTP.\n"
@@ -11492,19 +11620,19 @@ msgstr ""
"Errore nella trasmissione del file via FTP.\n"
" Per favore, controllate la configurazione FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Per favore, scegliete il tipo del vostro mouse."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11512,59 +11640,59 @@ msgstr ""
"Nessun file di configurazione trovato\n"
"per favore cliccate su Assistente o Avanzato"
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Ancora in sviluppo ... attendere per favore."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Backup dei file di sistema"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Backup dei file degli utenti"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Backup di altri file"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Progresso totale"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "trasmissione file via FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Sto inviando i file ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Effettua il backup adesso sulla base del file di configurazione"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Vedi la configurazione di backup"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Configurazione dell'assistente"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Configurazione avanzata"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Effettua il backup adesso"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11596,7 +11724,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11609,7 +11737,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:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11650,7 +11778,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11678,18 +11806,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11706,7 +11834,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11746,7 +11874,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11757,7 +11885,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11770,7 +11898,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11852,8 +11980,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Programmi da linea di comando"
@@ -11920,26 +12048,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Report"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Non installato"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Dopo 'installazione degli screenshot saranno disponibili in %s"
@@ -12041,10 +12169,6 @@ msgstr "Assistente..."
msgid "Apply"
msgstr "Applica"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Per favore attendi... sto applicando la configurazione"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Connesso"
@@ -12166,7 +12290,7 @@ msgstr "Nome modulo"
msgid "Size"
msgstr "Dimensione"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12231,12 +12355,12 @@ msgstr "Output"
msgid "Build the disk"
msgstr "Crea il disco"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
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
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12245,12 +12369,12 @@ msgstr ""
"Il dispositivo %s č vuoto o il supporto č protetto in scrittura.\n"
"Per favore inserisci un supporto."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Impssibile eseguire la chiamata fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12705,8 +12829,8 @@ msgid ""
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
"Ogni cosa č stata configurata.\n"
-"Ora puoi condividere la connessione ad Internet con altri computers sulla tua "
-"rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
+"Ora puoi condividere la connessione ad Internet con altri computers sulla "
+"tua rete locale (LAN) usando la configurazione di rete automatica (DHCP)."
#: ../../standalone/drakgw_.c:504
msgid "The setup has already been done, but it's currently disabled."
@@ -12740,158 +12864,158 @@ msgstr ""
"\n"
"Cliccate su ``Configura'' se volete lanciare il Wizard di configurazione."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Gruppo di lavoro"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partizione %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Utente"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Cancella"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Fatto"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Aggiungi un modulo"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Aggiungi nuova stampante"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Deseleziona tutto"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Rimuovi quelli selezionati"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Accetta utente"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versione: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porta"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Usa il riconoscimento automatico"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Usa il riconoscimento automatico"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Salva scelta pacchetti"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Utente"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Gruppo di lavoro"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nessuna NIC selezionata!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12903,137 +13027,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "creazione disco di avvio"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Risoluzione"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Scegli un file"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nome di condivisione"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositivo"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositivo"
+msgid "Save theme"
+msgstr "Installa sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Scegli un monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Scelta del modello della stampante"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Dovete scegliere/indicare una stampante/un dispositivo!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Riconoscimento periferiche ..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13167,6 +13301,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "uso: keyboarddrake [--expert] [tastiera]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uso: keyboarddrake [--expert] [tastiera]\n"
@@ -13196,13 +13337,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Non riesco ad avviare l'aggiornamento diretto !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Il cambiamento č stato applicato, ma perché diventi effettivo dovete uscire "
"dalla sessione"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13485,17 +13626,14 @@ msgstr ""
"Adesso potete utilizzarlo usando \"XSane\" (sezione Multimedia/Graphics del "
"menu di sistema)."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, 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:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13570,7 +13708,7 @@ msgstr "Installa aggiornamenti di sistema"
msgid "Exit install"
msgstr "Termina installazione"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13817,3 +13955,18 @@ msgstr "Multimedia - Masterizzazione CD"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Workstation scientifica"
+
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configurazione post installazione"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Il proxy dovrebbe essere ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Esci"
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index ca6f74585..67b537db0 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -89,24 +89,24 @@ msgstr "ĽŘĽĂĽÉ¤ň¤˝¤ě¤ž¤ěĆČΊ¤ËŔßÄę"
msgid "Use Xinerama extension"
msgstr "Xinerama łČÄĽ¤ňťČ¤Ś"
-#: ../../Xconfig/card.pm_.c:386
-#, fuzzy, c-format
+#: ../../Xconfig/card.pm_.c:387
+#, c-format
msgid "Configure only card \"%s\"%s"
-msgstr "°Ę˛ź¤ÎĽŤĄźĽÉ¤Ŕ¤ą¤ňŔßÄꥧ ĄČ%sĄÉ(%s)"
+msgstr "°Ę˛ź¤ÎĽŤĄźĽÉ¤Ŕ¤ą¤ňŔßÄꥧ\"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó¤Ä¤­¤ÎXFree %s"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ"
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "źÂ¸łĂĘłŹ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó¤Ä¤­¤ÎXFree %s"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,17 +145,16 @@ msgstr ""
"¤ł¤ÎĽŤĄźĽÉ¤ĎXFree %s ¤Ç3DĽ˘ĽŻĽťĽéĽěĄźĽˇĽçĽó˛ÄÇ˝¤Ç¤šĄŁ\n"
"¤ż¤Ŕ¤ˇ¤˘¤Ż¤Ţ¤ÇĄ˘źÂ¸łĹŞ¤ĘĽľĽÝĄźĽČ¤ÇĄ˘ĽŢĽˇĽóĽŐĽęĄźĽş¤Î˛ÄÇ˝Ŕ­¤Ź¤˘¤ę¤Ţ¤šĄŁ"
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (Ľ¤ĽóĽšĽČĄźĽëĽÇĽŁĽšĽ×ĽěĽ¤ĽÉĽéĽ¤ĽĐ)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "ĽŤĽšĽżĽŕ"
#: ../../Xconfig/main.pm_.c:102
-#, fuzzy
msgid "Graphic Card"
msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ"
@@ -169,34 +168,34 @@ msgstr "˛ňÁüĹŮ"
#: ../../Xconfig/main.pm_.c:113
msgid "Test"
-msgstr ""
+msgstr "ĽĆĽšĽČ"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "˝ŞÎť"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -215,20 +214,19 @@ msgstr "ĽâĽËĽż¤ňÁޤó¤Ç˛ź¤ľ¤¤"
#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
-msgstr ""
+msgstr "Ľ×ĽéĽ°ĄőĽ×ĽěĽ¤"
#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
msgstr "ČĆÍŃ"
#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
-#, fuzzy
msgid "Vendor"
-msgstr "¤â¤Č¤ËĚᤚ"
+msgstr "ĽŮĽóĽŔĄź"
#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
-msgstr ""
+msgstr "Ľ×ĽéĽ°ĄőĽ×ĽěĽ¤¤ÎĽ×ĽíĄźĽÖźşÇÔĄŁźęĆ°¤ÇĽâĽËĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
#: ../../Xconfig/monitor.pm_.c:114
msgid ""
@@ -292,25 +290,25 @@ msgstr "˛ňÁüĹ٤ȿ§żźĹŮ"
msgid "Graphics card: %s"
msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Ľ­ĽăĽóĽťĽë"
@@ -323,7 +321,6 @@ msgid "Do you want to test the configuration?"
msgstr "¤ł¤ÎŔßÄę¤Çťî¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
#: ../../Xconfig/test.pm_.c:31
-#, fuzzy
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"ˇŮšđĄ§¤ł¤ÎĽ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňĽĆĽšĽČ¤š¤ë¤ČĽŢĽˇĽó¤ŹĽŐĽęĄźĽş¤š¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó"
@@ -388,11 +385,11 @@ msgstr "XFree86 ĽľĄźĽĐ: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ĽÉĽéĽ¤ĽĐ: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ¤ÎľŻĆ°"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -401,7 +398,7 @@ msgstr ""
"ĽłĽóĽÔĽĺĄźĽż¤ňĽÖĄźĽČ¤ˇ¤żťţĄ¤źŤĆ°ĹŞ¤Ë X ¤ŹÎŠ¤Ážĺ¤Ź¤ëŔßÄę¤Ë¤Ç¤­¤Ţ¤šĄŁ\n"
"ĽęĽÖĄźĽČ¤ˇ¤żťţ X ¤ňΊ¤Ážĺ¤˛¤Ţ¤š¤ŤĄŠ"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,11 +409,18 @@ msgid ""
"\n"
"Do you have this feature?"
msgstr ""
+"¤˘¤Ę¤ż¤ÎĽÓĽÇĽŞĽŤĄźĽÉ¤ĎĄ˘TV-OUT ĽłĽÍĽŻĽż¤Ź¤Ä¤¤¤Ć¤¤¤ë¤č¤Ś¤Ç¤šĄŁ\n"
+"ĽŐĽěĄźĽŕĽĐĽĂĽŐĽĄ¤ňťČ¤Ă¤ĆĆ°¤Ż¤č¤Ś¤ËŔßÄę¤Ç¤­¤Ţ¤š¤čĄŁ\n"
+"\n"
+"¤ł¤ě¤ň¤ä¤ë¤Ë¤ĎĄ˘ĽłĽóĽÔĽĺĄźĽż¤ňľŻĆ°¤š¤ëÁ°¤ËĽÓĽÇĽŞĽŤĄźĽÉ¤ňĽĆĽěĽÓ¤Ë¤Ä¤Ę¤¤¤Ç¤Ż¤Ŕ"
+"¤ľ¤¤ĄŁ\n"
+"¤˝¤ě¤Ť¤éĽÖĄźĽČĽíĄźĽŔ¤Ç \"TVout\" ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+"\n"
+"¤ł¤ÎľĄÇ˝¤Ź¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
-msgstr "¤É¤ÎźďÎŕ¤ÎISDNŔÜÂł¤Ç¤š¤ŤĄŠ"
+msgstr "ĽĆĽěĽÓ¤Î˛čÁüĘýź°¤Ď˛ż¤Ç¤š¤ŤĄŠ"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -486,7 +490,7 @@ msgstr "ĽłĽóĽŃĽŻĽČ"
msgid "compact"
msgstr "ĽłĽóĽŃĽŻĽČ"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "ĽÓĽÇĽŞĽâĄźĽÉ"
@@ -494,17 +498,17 @@ msgstr "ĽÓĽÇĽŞĽâĄźĽÉ"
msgid "Delay before booting default image"
msgstr "ĽÇĽŐĽŠĽëĽČĽ¤ĽáĄźĽ¸ľŻĆ°¤ÎÂÔ¤Áťţ´Ö"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "ĽŃĽšĽďĄźĽÉ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "ĽŃĽšĽďĄźĽÉ (¤â¤Ś°ěĹŮ)"
@@ -544,14 +548,14 @@ msgstr ""
"ĄČĽłĽŢĽóĽÉĽéĽ¤ĽóĽŞĽ×ĽˇĽçĽó¤ÎŔŠ¸ÂĄÉĽŞĽ×ĽˇĽçĽó¤ĎĽŃĽšĽďĄźĽÉ¤Ź¤Ę¤¤¤Č\n"
"Ěň¤Ë¤ż¤Á¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "¤â¤Ś°ěĹٝ¤Ć˛ź¤ľ¤¤"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "ĽŃĽšĽďĄźĽÉ¤Ź°ěĂפˇ¤Ţ¤ť¤ó"
@@ -587,8 +591,13 @@ msgid ""
"\n"
"On which drive are you booting?"
msgstr ""
+"ĽÖĄźĽČĽíĄźĽŔ¤ňĽŃĄźĽĆĽŁĽˇĽçĽó¤ËĽ¤ĽóĽšĽČĄźĽë¤š¤ë¤ł¤Č¤Ë¤ˇ¤Ţ¤ˇ¤ż¤ÍĄŁ\n"
+"¤ł¤ě¤ĎľŻĆ°ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ë¤š¤Ç¤ËĽÖĄźĽČĽíĄźĽŔĄĘĽˇĽšĽĆĽŕĽłĽŢĽóĽŔĄź¤Ę¤É¤Ź¤˘¤ë¤Č"
+"¤¤¤Ś°ŐĚŁ¤Ŕ¤ČÍý˛ň¤ˇ¤Ţ¤šĄŁ\n"
+"\n"
+"¤É¤ÎĽÉĽéĽ¤ĽÖ¤Ť¤éľŻĆ°¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -596,149 +605,149 @@ msgstr ""
"Ľ¨ĽóĽČĽę¤Ď°Ę˛ź¤Î¤Č¤Ş¤ę¤Ç¤šĄŁ\n"
"ÄɲåŚĘŃšš¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "ÄɲĂ"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "˝ŞÎť"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "ĘŃšš"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "¤É¤ÎĽżĽ¤Ľ×¤ňÄɲ䡤ޤš¤Ť"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "ž¤Î OS (SunOS¤Ę¤É...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "ž¤Î OS (MacOS¤Ę¤É...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "ž¤Î OS (ĽŚĽŁĽóĽÉĽŚĽş¤Ę¤É...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Ľ¤ĽáĄźĽ¸"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "ĽëĄźĽČ"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "ÄɲĂ"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Ćɤ߽ń¤­"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "ĽĆĄźĽÖĽë"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "´í¸ą"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "ĽéĽŮĽë"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ĽÇĽŐĽŠĽëĽČ"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "InitrdĽľĽ¤Ľş"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "ĽÓĽÇĽŞ¤Ę¤ˇ"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ľ¨ĽóĽČĽę¤ňžĂ¤š"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "śőÇň¤ÎĽéĽŮĽë¤Ďľö¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "ĽŤĄźĽÍĽëĽ¤ĽáĄźĽ¸¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "rootĽŃĄźĽĆĽŁĽˇĽçĽó¤ĎÉŹ¤şťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "¤ł¤ÎĽéĽŮĽë¤Ď¤š¤Ç¤ËťČ¤ď¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ˇ¤ż"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Ę̤Τâ¤Î¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "%s Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "¤¤¤¤¤¨"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "¤Ď¤¤"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎžđĘó¤ň¸Ť¤Ć˛ź¤ľ¤¤"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s ĽŤĄźĽÉ %s ¤ÎĽÉĽéĽ¤ĽĐĽ¤ĽóĽšĽČĄźĽëĂć"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(ĽâĽ¸ĽĺĄźĽë %s)"
-#: ../../any.pm_.c:689
-#, fuzzy, c-format
+#: ../../any.pm_.c:690
+#, 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'"
@@ -746,7 +755,7 @@ msgstr ""
"¤Ç¤ĎĽâĽ¸ĽĺĄźĽë %s ¤ÎĽŞĽ×ĽˇĽçĽó¤ňťŘÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"¤Ę¤ŞĄ˘Ľ˘ĽÉĽěĽš¤Ď¤š¤Ů¤ĆĄ˘ĆŹ¤Ë 0x ¤ň¤Ä¤ą¤ĆĆţÎϤš¤ë¤ł¤ČĄŁÎ㥧 '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -757,17 +766,17 @@ msgstr ""
"ĽŞĽ×ĽˇĽçĽó¤ÎĽŐĽŠĄźĽŢĽĂĽČ¤ĎĄČĚžÁ°=ĂÍ ĚžÁ°2=ĂÍ2 ...ĄÉ¤Ç¤šĄŁ\n"
"Îă: ĄČio=0x300 irq=7ĄÉ"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "ĽâĽ¸ĽĺĄźĽë¤ÎĽŞĽ×ĽˇĽçĽó"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "¤É¤Î %s ĽÉĽéĽ¤ĽĐ¤ňťî¤ˇ¤Ţ¤ˇ¤ç¤Ś¤ŤĄŠ"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -784,15 +793,15 @@ msgstr ""
"¤ľ¤ť¤Ć¤ß¤Ţ¤š¤ŤĄŠĄĄĽ×ĽíĄźĽÖĂć¤ËĽłĽóĽÔĽĺĄźĽż¤ŹÄäťß¤š¤ë¤Ť¤âĂΤě¤Ţ¤ť¤ó¤ŹĄ¤\n"
"ĽŢĽˇĽó¤Ź¤ł¤ď¤ě¤ż¤ę¤š¤ë¤ł¤Č¤Ď¤˘¤ę¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "ĽŞĄźĽČĽ×ĽíĄźĽÖ"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "ĽŞĽ×ĽˇĽçĽóťŘÄę"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -801,64 +810,61 @@ msgstr ""
"ĽâĽ¸ĽĺĄźĽë %s ¤ÎĽíĄźĽÉ¤Ź¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
"ĽŃĽéĽáĄźĽż¤ňĘѤ¨¤Ć¤ä¤ę¤Ę¤Ş¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "X Ľ×ĽíĽ°ĽéĽŕ¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "rpm ĽÄĄźĽë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "ĄČsuĄÉ¤ňľö¤š"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "´ÉÍýĽŐĽĄĽ¤Ľë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "rpm ĽÄĄźĽë¤Ř¤ÎĽ˘ĽŻĽťĽš"
+msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÄĄźĽë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "rpm ĽÄĄźĽë¤Ř¤ÎĽ˘ĽŻĽťĽš"
+msgstr "ĽłĽóĽŃĽ¤ĽëĽÄĄźĽë¤Ř¤ÎĽ˘ĽŻĽťĽš"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s ¤ĎÄɲúѤß)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "ĽŃĽšĽďĄźĽÉ¤Ź´ĘĂą¤š¤Ž¤Ţ¤š"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "ĽćĄźĽśĚž¤ňÍż¤¨¤Ć˛ź¤ľ¤¤"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ĽćĄźĽśĚž¤Ë¤ĎąŃžŽĘ¸ťúĄ¤żôťúĄ˘ĄÖ-Ą×¤äĄÖ_Ą×¤ˇ¤ŤťČ¤¨¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:768
-#, fuzzy
+#: ../../any.pm_.c:769
msgid "The user name is too long"
-msgstr "¤ł¤ÎĽćĄźĽśĚž¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤š"
+msgstr "¤ł¤ÎĽćĄźĽśĚž¤ĎÄš¤š¤Ž¤Ţ¤š"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "¤ł¤ÎĽćĄźĽśĚž¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤š"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "ĽćĄźĽś¤ňÄɲĂ"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -867,32 +873,32 @@ msgstr ""
"ĽćĄźĽśĚž¤ňĆţÎϤˇ¤Ć˛ź¤ľ¤¤\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "źő¤ąÉŐ¤ą¤ëĽćĄźĽś"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "źÂşÝ¤ÎťáĚž"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "ĽćĄźĽśĚž"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "ĽˇĽ§Ľë"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ľ˘Ľ¤ĽłĽó"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -900,54 +906,54 @@ msgstr ""
"źŤĆ°ĹޤËĆĂÄęĽćĄźĽś¤ŹĽíĽ°ĽŞĽó¤š¤ë¤č¤Ś¤ËĽłĽóĽÔĽĺĄźĽż¤ňŔßÄę¤Ç¤­¤Ţ¤šĄŁ\n"
"¤ł¤ÎľĄÇ˝¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "ĽÇĽŐĽŠĽëĽČĽćĄźĽś¤ÎÁŞÂň:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "ťČ¤ŚĽŚĽŁĽóĽÉĽŚĽŢĽÍĄźĽ¸Ľă¤ňÁޤó¤Ç˛ź¤ľ¤¤Ą§"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "¤É¤Î¸Ŕ¸ě¤ňťČ¤Ś¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "¤ź¤ó¤Ö"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "¤š¤Ů¤Ć¤ÎĽćĄźĽś¤ňǧ¤á¤ë"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "ĽŐĽĄĽ¤ĽëśŚÍ­¤ˇ¤Ę¤¤"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "Ľ¨ĽŻĽšĽÝĄźĽČ¤Ë¤Ď NFS ¤Ť Samba ¤ŹťČ¤¨¤Ţ¤šĄŁ¤É¤Á¤é¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ÉŹÍ׼ѼüąĄźĽ¸ %s ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -955,12 +961,17 @@ msgid ""
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
+"ĽćĄźĽśĆąťÎ¤ŹĽÇĽŁĽěĽŻĽČĽę¤Î°ěÉô¤ňśŚÍ­¤Ç¤­¤ë¤č¤Ś¤Ë¤ˇ¤Ţ¤š¤Ť?\n"
+"¤ł¤Ś¤š¤ë¤ČĄ˘ĽćĄźĽś¤ż¤Á¤Ďkonqueror¤änautilus¤ÇĄÖśŚÍ­Ą×¤ňĽŻĽęĽĂĽŻ¤š¤ë¤Ŕ¤ą¤Ç¤š¤ß"
+"¤Ţ¤šĄŁ\n"
+"\n"
+"ĄÖĽŤĽšĽżĽŕĄ×¤ĎĽćĄźĽś¤´¤Č¤ËşŮ¤Ť¤¤ŔßÄꤏ¤Ç¤­¤Ţ¤šĄŁ\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "userdrake ¤ňľŻĆ°"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -968,31 +979,31 @@ msgstr ""
"ĽćĄźĽśËč¤ÎśŚÍ­¤ĎĄ˘ĄČfileshareĄÉĽ°ĽëĄźĽ×¤ňťČ¤¤¤Ţ¤šĄŁ\n"
"¤ł¤ÎĽ°ĽëĄźĽ×¤ËĽćĄźĽś¤ňÄɲ䚤ë¤Ë¤ĎĄ˘userdrake ¤ŹťČ¤¨¤Ţ¤š¤čĄŁ"
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "°­źÁ¤ĘĽŻĽéĽĂĽŤĄźÍͤ⿯Ćţ¤ˇ¤Ű¤Ś¤Ŕ¤¤"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "¤­¤ď¤á¤ĆÄ㤤"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "ɸ˝ŕ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "šâ¤¤"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "¤â¤Ă¤Čšâ¤¤"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "żŔˇĐźÁ¤Ę¤Ű¤Éšâżĺ˝ŕ"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1013,7 @@ msgstr ""
"¤Ŕ¤ě¤Ë¤Ç¤âĽ˘ĽŻĽťĽš¤Ç¤­¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁÂž¤ÎĽŢĽˇĽó¤äĽ¤ĽóĽżĄźĽÍĽĂĽČ\n"
"¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽŢĽˇĽó¤Ç¤ĎťČ¤ď¤Ę¤¤¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁĽŃĽšĽďĄźĽÉŔŠ¸Â¤â¤˘¤ę¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1010,7 +1021,7 @@ msgstr ""
"ĽŃĽšĽďĄźĽÉ¤ŹÍ­¸ú¤Ë¤Ę¤ę¤Ţ¤ˇ¤ż¤ŹĄ˘ĽÍĽĂĽČĽďĄźĽŻ¤Ë¤Ä¤Ę¤°¤Î¤Ď¤Ţ¤Ŕ\n"
"¤ŞžŠ¤á¤Ç¤­¤Ţ¤ť¤óĄŁ"
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1018,13 +1029,13 @@ msgstr ""
"¤ł¤ě¤Ďɸ˝ŕ¤ÎĽťĽ­ĽĺĽęĽĆĽŁ¤ÇĄ˘ĽŻĽéĽ¤Ľ˘ĽóĽČ¤Č¤ˇ¤ĆĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤š¤ëĽŢĽˇĽó¤Ç"
"¤ÎżäžŠĽěĽŮĽë¤Ç¤šĄŁ"
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr "¤š¤Ç¤ËŔŠ¸Â¤Ź¤Ť¤Ť¤Ă¤Ć¤¤¤ĆĄ˘¤ľ¤é¤ËËčČŐźŤĆ°ĽÁĽ§ĽĂĽŻ¤Ź¤â¤Ă¤Č¤Ť¤Ť¤ę¤Ţ¤šĄŁ"
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1038,7 +1049,7 @@ msgstr ""
"żĺ˝ŕ¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁĂ𥧤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ŹĽ¤ĽóĽżĄźĽÍĽĂĽČžĺ¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČŔěÍѤĘ"
"¤éĄ˘¤â¤Ă¤ČÄ㤤ĽěĽŮĽë¤ňÁޤó¤Ŕ¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤š¤čĄŁ"
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1046,47 +1057,47 @@ msgstr ""
"Á°¤ÎĽěĽŮĽë¤Ë´đ¤Ĺ¤¤¤Ć¤¤¤Ţ¤š¤ŹĄ˘¤ł¤ě¤ÇĽˇĽšĽĆĽŕ¤Ď´°Á´¤Ë¤Č¤¸¤żžőÂÖ\n"
"¤Ë¤Ę¤Ă¤Ć¤¤¤Ţ¤šĄŁĽťĽ­ĽĺĽęĽĆĽŁ¤ĎşÇÂç¤Ç¤šĄŁ"
-#: ../../any.pm_.c:1094
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
-msgstr "ĽŞĽ×ĽˇĽçĽó"
+msgstr "DrakSec´đËÜĽŞĽ×ĽˇĽçĽó"
-#: ../../any.pm_.c:1095
-#, fuzzy
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ¤Îżĺ˝ŕ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "ĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "ĽľĄźĽĐ¤Ëlibsafe¤ňťČ¤Ś"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"ĽĐĽĂĽŐĽĄĽŞĄźĽĐĄźĽŐĽíĄź¤äĽŐĽŠĄźĽŢĽĂĽČĽšĽČĽęĽóĽ°šśˇâ¤ňËɸ椚¤ëĽéĽ¤ĽÖĽéĽęĄŁ"
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
-msgstr ""
+msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ´ÉÍýźÔĄĘĽíĽ°Ľ¤Ľó¤ŤĹŝҼᥟĽëĄË"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"¤ł¤ł¤Ç¤ĎĄ˘łĆźď¤ÎĽ­ĄźĽÜĄźĽÉÇŰÎó´ÖĄĘÎ㥧ĽéĽĆĽó¤ČČóĽéĽĆĽóĄË¤ň\n"
+"ŔÚ¤ęÂؤ¨¤ëĽ­Ąź¤ÎÁȤߚç¤ď¤ť¤ňÁŞ¤Ů¤Ţ¤šĄŁ"
# NOTE: this message will be displayed by SILO at boot time; that is
# only the ascii charset will be available
# so use only 7bit for this message
#
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1110,58 +1121,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "ĽÇĽšĽŻĽČĽĂĽ×"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "ĽšĽżĄźĽČĽáĽËĽĺĄź"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤Ď %s ĽŃĄźĽĆĽŁĽˇĽçĽó¤Ë¤ĎĽ¤ĽóĽšĽČĄźĽë¤Ç¤­¤Ţ¤ť¤ó\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "ĽŘĽëĽ×¤Ď¤Ţ¤ŔźÂÁő¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
@@ -1213,106 +1224,106 @@ msgstr "Lilo/grub ĽâĄźĽÉ"
msgid "Yaboot mode"
msgstr "Yaboot ĽâĄźĽÉ"
-#: ../../bootlook.pm_.c:148
-#, fuzzy
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
-msgstr "ĽˇĽšĽĆĽŕ¤ÎĆłĆţ"
+msgstr "ĽĆĄźĽŢ¤ÎĆłĆţ"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
-msgstr ""
+msgstr "ĽłĽóĽ˝ĄźĽë¤ÇĽĆĄźĽŢ¤ňÉ˝ź¨"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşîŔŽ"
+msgstr "żˇ¤ˇ¤¤ĽĆĄźĽŢ¤ňşîŔŽ"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
-msgstr ""
+msgstr "%s ¤ň %s.old ¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Ľ¨ĽéĄź"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
-msgstr ""
+msgstr "liloĽáĽĂĽťĄźĽ¸¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç¤­¤Ţ¤ť¤ó"
-#: ../../bootlook.pm_.c:196
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:195
+#, c-format
msgid "Copy %s to %s"
-msgstr "%s ĽłĽÔĄźĂć"
+msgstr "%s ¤ň%s¤ËĽłĽÔĄźĂć"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
-msgstr ""
+msgstr "liloĽáĽĂĽťĄźĽ¸¤ňĘŃšš¤Ç¤­¤Ţ¤ť¤ó"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
-msgstr ""
+msgstr "liloĽáĽĂĽťĄźĽ¸¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "/etc/sysconfig/bootsplash¤Ź˝ń¤ą¤Ţ¤ť¤ó"
-#: ../../bootlook.pm_.c:230
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:229
+#, c-format
msgid "Write %s"
-msgstr "XFree %s"
+msgstr "%s¤ň˝ń¤­šţ¤ŕ"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
+"/etc/sysconfig/bootsplash¤Ź˝ń¤­šţ¤á¤Ţ¤ť¤ó\n"
+"ĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŁ"
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgstr "mkinitrd -f /boot/initrd-%s.img %s¤ňľŻĆ°¤Ç¤­¤Ţ¤ť¤óĄŁ"
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-msgstr ""
+msgstr "mkinitrd -f /boot/initrd-%s.img %s¤ňinitrd¤Ë¤š¤ë"
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+"LiLo¤ňşĆźÂšÔ¤Ç¤­¤Ţ¤ť¤óĄŞ\n"
+"LiloĽĆĄźĽŢ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ň´°Îť¤š¤ë¤Ë¤Ďroot¤Ë¤Ę¤Ă¤ĆĄÖliloĄ×¤ňźÂšÔ¤ˇ¤Ţ¤šĄŁ"
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
-msgstr ""
+msgstr "lilo¤ňşĆźÂšÔ¤ˇ¤Ţ¤š"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
-msgstr "ĽÓĽÇĽŞ¤Ę¤ˇ"
+msgstr "ÄĚĂÎ"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+msgstr "Lilo¤ČľŻĆ°ťţĽšĽ×ĽéĽĂĽˇĽĺĽĆĄźĽŢ¤ÎĽ¤ĽóĽšĽČĄźĽëŔŽ¸ů"
-#: ../../bootlook.pm_.c:259
-#, fuzzy
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
-msgstr "ĆłĆţĽŻĽéĽš¤ÎÁŞÂň"
+msgstr "ĽĆĄźĽŢ¤ÎĽ¤ĽóĽšĽČĄźĽëźşÇÔĄŞ"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1321,22 +1332,21 @@ msgstr ""
"¤¤¤ŢĄ˘ĽÖĄźĽČĽŢĽÍĄźĽ¸Ľă¤Ë¤Ď %s ¤ň¤ŞťČ¤¤¤Ç¤šĄŁ\n"
"ŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤š¤ë¤Ë¤ĎĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "ŔßÄę"
-#: ../../bootlook.pm_.c:277
-#, fuzzy
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
-msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĘݸ"
+msgstr "ĽšĽ×ĽéĽĂĽˇĽĺÁŞÂň"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
-msgstr ""
+msgstr "ĽĆĄźĽŢ"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1344,45 +1354,49 @@ msgid ""
"you can choose\n"
"them separatly"
msgstr ""
+"\n"
+"lilo¤ČľŻĆ°ĽšĽ×ĽéĽĂĽˇĽĺ¤Î\n"
+"ĽĆĄźĽŢ¤ňÁŞ¤Ó¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
+"ΞźÔ¤ĎĘĚĄš¤ËÁŞ¤Ů¤Ţ¤š"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
-msgstr ""
+msgstr "lilo˛čĚĚ"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
-msgstr ""
+msgstr "ľŻĆ°ĽšĽ×ĽéĽĂĽˇĽĺ"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "ĽˇĽšĽĆĽŕĽâĄźĽÉ"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "ľŻĆ°ťţ¤Ë X ĽŚĽŁĽóĽÉĽŚ¤ňźÂšÔ"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "źŤĆ°ĽíĽ°Ľ¤Ľó¤Ď¤ˇ¤Ę¤¤"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "¤ł¤Î (ĽćĄźĽśĄ˘ĽÇĽšĽŻĽČĽĂĽ×ĄË¤ÇźŤĆ°ĽíĽ°Ľ¤Ľó¤š¤ë"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "/etc/inittab ¤ŹĆɤߤȤęÍѤ˳Ť¤ą¤Ţ¤ť¤ó: %s"
@@ -1479,53 +1493,58 @@ msgstr "ĽŞĄźĽšĽČĽęĽ˘"
msgid "United States"
msgstr "Ľ˘ĽáĽęĽŤšç˝°šń"
-#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "żˇľŹ"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "ĽŢĽŚĽóĽČ"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "ĽľĄźĽĐ"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
-msgstr "CDĽéĽ¤ĽżĄź¤ÎÂŽĹ٤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+msgstr "WavDAVĽľĄźĽĐ¤ÎURL¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
-msgstr ""
+msgstr "URL ¤Ď http:// ¤Ť https://¤ÇťĎ¤Ţ¤ë¤ł¤ČĄŞ"
-#: ../../diskdrake/dav.pm_.c:105
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
-msgstr "ĽľĄźĽĐ"
+msgstr "ĽľĄźĽĐ: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "ĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "ĽŞĽ×ĽˇĽçĽó: %s"
@@ -1579,11 +1598,8 @@ msgid "Details"
msgstr "žÜşŮ"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr ""
-"ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŞ\n"
-"\n"
+msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1615,7 +1631,7 @@ msgstr "śő"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "¤˝¤Îž"
@@ -1759,7 +1775,7 @@ msgstr ""
"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ëĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ÎĽľĽ¤Ľş¤Ź°ă¤¤¤Ţ¤š\n"
"Âł¤ą¤Ţ¤š¤ŤĄŠ"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "ˇŮšđ"
@@ -1841,6 +1857,9 @@ msgid ""
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"żˇ¤ˇ¤¤ĽŃĄźĽĆĽŁĽˇĽçĽó¤Źşî¤ě¤Ţ¤ť¤ó\n"
+"(´đËÜĽŃĄźĽĆĽŁĽˇĽçĽó¤Îżô¤Źžĺ¸Â¤ËĂŁ¤ˇ¤Ć¤¤¤ë¤ż¤á)ĄŁ\n"
+"¤É¤ě¤Ť´đËÜĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşď˝ü¤ˇĄ˘łČÄĽĽŃĄźĽĆĽŁĽˇĽçĽó¤ňşî¤ę¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
@@ -1878,9 +1897,9 @@ msgstr ""
"¤Ţ¤şĽëĄźĽ×ĽĐĽĂĽŻ¤ň˛ň˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
#: ../../diskdrake/interactive.pm_.c:594
-#, fuzzy, c-format
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "ĽÇĽĐĽ¤Ľš %s ¤ň¤É¤ł¤ËĽŢĽŚĽóĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
+msgstr "%s ¤ň¤É¤ł¤ËĽŢĽŚĽóĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
@@ -2001,7 +2020,7 @@ msgid "What type of partitioning?"
msgstr "¤É¤ó¤ĘĽŃĄźĽĆĽŁĽˇĽçĽó¤Ç¤š¤ŤĄŠ"
#: ../../diskdrake/interactive.pm_.c:965
-#, fuzzy, c-format
+#, c-format
msgid "The package %s is needed. Install it?"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ŹÉŹÍפǤšĄŁĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
@@ -2223,7 +2242,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm_.c:1150
msgid "Read-only"
-msgstr ""
+msgstr "ĆɤߤȤęŔěÍŃ"
#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
@@ -2250,9 +2269,9 @@ msgid "Partition table type: %s\n"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽëĽżĽ¤Ľ×: %s\n"
#: ../../diskdrake/interactive.pm_.c:1156
-#, fuzzy, c-format
+#, c-format
msgid "on channel %d id %d\n"
-msgstr "ĽĐĽš %d id %d\n"
+msgstr "ĽÁĽăĽóĽÍĽë %d id %džĺ\n"
#: ../../diskdrake/interactive.pm_.c:1186
msgid "Filesystem encryption key"
@@ -2290,59 +2309,55 @@ msgstr "ĽáĽÇĽŁĽ˘¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#: ../../diskdrake/smbnfs_gtk.pm_.c:162
#, c-format
msgid "Can't login using username %s (bad password?)"
-msgstr ""
+msgstr "ĽćĄźĽśĚž %s ¤ÇĽíĽ°Ľ¤Ľó¤Ç¤­¤Ţ¤ť¤óĄĘĽŃĽšĽďĄźĽÉ¤Î¤Ţ¤Á¤Ź¤¤ĄŠ"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
-#, fuzzy
msgid "Domain Authentication Required"
-msgstr "ǧžÚ"
+msgstr "ĽÉĽáĽ¤ĽóǧžÚ¤ŹÉŹÍפǤš"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
+msgstr "¤â¤Ś°ě¤Ä"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Which username"
-msgstr "ĽćĄźĽśĚž"
+msgstr "¤É¤ÎĽćĄźĽśĚž"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
+"¤ł¤ÎĽŰĽšĽČ¤ÎĽ˘ĽŻĽťĽš¤Ë¤ĎĽćĄźĽśĚžĄ˘ĽŃĽšĽďĄźĽÉĄ˘ĽÉĽáĽ¤ĽóĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
-#, fuzzy
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "ĽćĄźĽśĚž"
#: ../../diskdrake/smbnfs_gtk.pm_.c:180
-#, fuzzy
msgid "Domain"
-msgstr "NIS ĽÉĽáĽ¤Ľó"
+msgstr "ĽÉĽáĽ¤Ľó"
#: ../../diskdrake/smbnfs_gtk.pm_.c:200
msgid "Search servers"
msgstr "ĽľĄźĽĐ¤ň¸Ąş÷"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ĽŐĽŠĄźĽŢĽĂĽČ, %s źşÇÔ"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s ¤ň ĽżĽ¤Ľ× %s ¤ÇĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëĘýËĄ¤ňĂΤę¤Ţ¤ť¤ó"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s ¤ňĽÇĽŁĽěĽŻĽČĽę %s ¤ËĽŢĽŚĽóĽČ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤ż"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ¤ňĽ˘ĽóĽŢĽŚĽóĽČĂć¤ËĽ¨ĽéĄź: %s"
@@ -2404,12 +2419,11 @@ msgid "This directory should remain within the root filesystem"
msgstr "¤ł¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ď root ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕĆâ¤ËťÄ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#: ../../fsedit.pm_.c:530
-#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"¤ł¤ÎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ë¤ĎĄ˘źÂşß¤š¤ëĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ (ext2, reiserfs) \n"
+"¤ł¤ÎĽŢĽŚĽóĽČĽÝĽ¤ĽóĽČ¤Ë¤ĎĄ˘źÂşß¤š¤ëĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ (ext2, reiserfs, xfs, jfs)"
"¤ŹÉŹÍפǤšĄŁ\n"
#: ../../fsedit.pm_.c:532
@@ -2430,48 +2444,108 @@ msgstr "¤š¤ë¤ł¤Č¤Ź¤˘¤ę¤Ţ¤ť¤ó"
msgid "Error opening %s for writing: %s"
msgstr "˝ń¤­šţ¤ß¤Î¤ż¤á %s ¤ňłŤ¤Ż¤Č¤­Ľ¨ĽéĄź¤ŹČŻŔ¸: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
-msgstr ""
+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:169
+#, fuzzy, c-format
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
+msgstr "¤ł¤ÎĽľĽŚĽóĽÉĽŤĄźĽÉ (%s) ÍѤδűĂΤÎOSS/ALSAÂĺÂؼɼ鼤ĽĐ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "CUPS ŔßÄę"
+msgstr "ĽľĽŚĽóĽÉŔßÄę"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
+"¤ł¤ł¤Ç¤ĎĽľĽŚĽóĽÉĽŤĄźĽÉ (%s) ÍѤËÂĺÂؼɼ鼤ĽĐĄĘOSS¤ŤALSA) ¤ňÁŞÂň¤Ç¤­¤Ţ¤š"
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "ĽÉĽéĽ¤ĽĐ"
+msgstr "ĽÉĽéĽ¤ĽĐĄ§"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "ĽŘĽëĽ×"
-#: ../../harddrake/sound.pm_.c:173
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄÄĄÄŔßÄę¤ňĹŹÍѤˇ¤Ć¤¤¤Ţ¤š"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "¤ŞÂÔ¤Á˛ź¤ľ¤¤"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
-msgstr "X ĽÉĽéĽ¤ĽĐ"
+msgstr "´űĂΤμɼ鼤ĽĐ¤Ę¤ˇ"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
-msgstr ""
+msgstr "¤ł¤ÎĽľĽŚĽóĽÉĽŤĄźĽÉ (%s) ÍѤδűĂΤμɼ鼤ĽĐ¤Ď¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr "̤ĂΤμâĽÇĽë"
+msgstr "̤ĂΤμɼ鼤ĽĐ"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2480,34 +2554,36 @@ msgid ""
"<install at mandrakesoft dot com>\n"
"with subject: unlisted sound driver \"%s\""
msgstr ""
+"¤ł¤ÎĽľĽŚĽóĽÉĽŤĄźĽÉÍѤΥÖ%sĄ×ĽÉĽéĽ¤ĽĐ¤Ď°ěÍ÷¤Ë¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
+"\n"
+"\"lspcidrake -v\" ĽłĽŢĽóĽÉ¤Î˝ĐÎϤň\n"
+"<install at mandrakesoft dot com>\n"
+"¤ËĄ˘subject: unlisted sound driver \"%s\"¤ÇĽáĄźĽë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
msgid "Model"
-msgstr "ĽâĽ¸ĽĺĄźĽë"
+msgstr "ĽâĽÇĽë"
#: ../../harddrake/ui.pm_.c:16
-#, fuzzy
msgid "hard disk model"
-msgstr "ĽŤĄźĽÉ mem (DMA)"
+msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽâĽÇĽë"
#: ../../harddrake/ui.pm_.c:17
-#, fuzzy
msgid "Channel"
-msgstr "Ľ­ĽăĽóĽťĽë"
+msgstr "ĽÁĽăĽóĽÍĽë"
#: ../../harddrake/ui.pm_.c:17
msgid "EIDE/SCSI channel"
-msgstr ""
+msgstr "EIDE/SCSI ĽÁĽăĽóĽÍĽë"
#: ../../harddrake/ui.pm_.c:19
msgid "Bus"
-msgstr ""
+msgstr "ĽĐĽš"
#: ../../harddrake/ui.pm_.c:20
msgid ""
"this is the physical bus on which the device is plugged (eg: PCI, USB, ...)"
-msgstr ""
+msgstr "ĽÇĽĐĽ¤Ľš¤ÎŔÜÂł¤ľ¤ě¤żĘŞÍýĽĐĽš¤ňÁŞ¤Ó¤Ţ¤šĄĘPCIĄ˘USB¤Ę¤É)"
#: ../../harddrake/ui.pm_.c:21
msgid "Module"
@@ -2515,38 +2591,39 @@ msgstr "ĽâĽ¸ĽĺĄźĽë"
#: ../../harddrake/ui.pm_.c:21
msgid "the module of the GNU/Linux kernel that handle that device"
-msgstr ""
+msgstr "¤˝¤ÎĽÇĽĐĽ¤Ľš¤ň°ˇ¤ŚGNU/LinuxĽŤĄźĽÍĽë¤ÎĽâĽ¸ĽĺĄźĽë"
#: ../../harddrake/ui.pm_.c:22
msgid "Media class"
-msgstr ""
+msgstr "ĽáĽÇĽŁĽ˘ĽŻĽéĽš"
#: ../../harddrake/ui.pm_.c:22
msgid "class of hardware device"
-msgstr ""
+msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘ĽÇĽĐĽ¤Ľš¤ÎĽŻĽéĽš"
#: ../../harddrake/ui.pm_.c:23 ../../printerdrake.pm_.c:1517
msgid "Description"
-msgstr "Ľ×ĽęĽóĽż¤ÎŔâĚŔ"
+msgstr "ŔâĚŔ"
#: ../../harddrake/ui.pm_.c:23
msgid "this field describe the device"
-msgstr ""
+msgstr "¤ł¤ÎĽŐĽŁĄźĽëĽÉ¤ĎĽÇĽĐĽ¤Ľš¤ÎŔâĚŔ¤Ç¤š"
#: ../../harddrake/ui.pm_.c:25
-#, fuzzy
msgid "Bus identification"
-msgstr "ǧžÚ"
+msgstr "ĽĐĽš¤ÎĆąÄę"
#: ../../harddrake/ui.pm_.c:26
msgid ""
"- PCI and USB devices: this list the vendor, device, subvendor and subdevice "
"PCI/USB ids"
msgstr ""
+"- PCI ¤Č USB ĽÇĽĐĽ¤ĽšĄ§ĽŮĽóĽŔĄźĄ˘ĽÇĽĐĽ¤ĽšĄ˘ĽľĽÖĽŮĽóĽŔĄźĄ˘ĽľĽÖĽÇĽĐĽ¤Ľš¤ÎPCI/"
+"USB id¤ňľ­˝Ň¤ˇ¤Ţ¤šĄŁ"
#: ../../harddrake/ui.pm_.c:28
msgid "Location on the bus"
-msgstr ""
+msgstr "ĽĐĽšžĺ¤Î°ĚĂÖ"
#: ../../harddrake/ui.pm_.c:29
msgid ""
@@ -2554,160 +2631,153 @@ msgid ""
"- 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 ĽÇĽĐĽ¤Ľš: ¤ł¤ÎĽŤĄźĽÉ¤ÎPCIĽšĽíĽĂĽČĄ˘ĽÇĽĐĽ¤Ľš¤ČľĄÇ˝\n"
+"- eide ĽÇĽĐĽ¤Ľš: ĽšĽěĄźĽÖ¤ŤĽŢĽšĽżĄź¤ÎĽÇĽĐĽ¤Ľš\n"
+"- scsi ĽÇĽĐĽ¤Ľš: scsi ĽĐĽš¤Čscsi ĽÇĽĐĽ¤Ľš¤Îid"
#: ../../harddrake/ui.pm_.c:32
-#, fuzzy
msgid "Old device file"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
+msgstr "¸Ĺ¤¤ĽÇĽĐĽ¤ĽšĽŐĽĄĽ¤Ľë"
#: ../../harddrake/ui.pm_.c:33
msgid "old static device name used in dev package"
-msgstr ""
+msgstr "devĽŃĽĂĽąĄźĽ¸¤ÇťČ¤ď¤ě¤ż¸Ĺ¤¤ŔĹĹŞĽÇĽĐĽ¤ĽšĚž"
#: ../../harddrake/ui.pm_.c:34
-#, fuzzy
msgid "New devfs device"
-msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ĽÇĽĐĽ¤Ľš"
+msgstr "żˇ¤ˇ¤¤devfsĽÇĽĐĽ¤Ľš"
#: ../../harddrake/ui.pm_.c:35
msgid "new dinamic device name generated by incore kernel devfs"
-msgstr ""
+msgstr "incoreĽŤĄźĽÍĽëdevfs¤ÎŔ¸ŔŽ¤ˇ¤żżˇ¤ˇ¤¤Ć°ĹŞĽÇĽĐĽ¤ĽšĚž"
#: ../../harddrake/ui.pm_.c:36
-#, fuzzy
msgid "Number of buttons"
-msgstr "2ĽÜĽżĽó"
+msgstr "ĽÜĽżĽóżô"
#: ../../harddrake/ui.pm_.c:37
msgid "the vendor name of the device"
-msgstr ""
+msgstr "ĽÇĽĐĽ¤Ľš¤ÎĽŮĽóĽŔĄźĚž"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "Ę̤μƼšĽČĽÚĄźĽ¸ (A4)"
+msgstr "ÂĺÂؼɼ鼤ĽĐ"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
-msgstr ""
+msgstr "¤ł¤ÎĽľĽŚĽóĽÉĽŤĄźĽÉÍŃÂĺÂؼɼ鼤ĽĐ°ěÍ÷"
#: ../../harddrake/ui.pm_.c:63
-#, fuzzy
msgid "/_Quit"
-msgstr "˝ŞÎť"
+msgstr "/˝ŞÎť(_Q)"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/ĽŘĽëĽ×(_H)"
#: ../../harddrake/ui.pm_.c:65
-#, fuzzy
msgid "/_Help..."
-msgstr "/ĽŘĽëĽ×(_H)"
+msgstr "/ĽŘĽëĽ×(_H)..."
#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
-msgstr ""
+msgstr "Harddrake ĽŘĽëĽ×"
#: ../../harddrake/ui.pm_.c:67
msgid ""
"Description of the fields:\n"
"\n"
msgstr ""
+"ĽŐĽŁĄźĽëĽÉ¤ÎŔâĚŔ:\n"
+"\n"
#: ../../harddrake/ui.pm_.c:71
-#, fuzzy
+msgid "/_Report Bug"
+msgstr "/ĽĐĽ°Ęóšđ(_R)"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
-msgstr "/ĽŘĽëĽ×(H)/žđĘó(_A)..."
+msgstr "/žđĘó(_A)..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
-msgstr ""
+msgstr "Harddrake¤Ë¤Ä¤¤¤Ć"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
+"¤ł¤ÎĽ˝ĽŐĽČ¤ĎHardDrake, Mandrake ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘ŔßÄęĽÄĄźĽë¤Ę¤ęĄŁ\n"
+"ĽĐĄźĽ¸ĽçĽó:"
-#: ../../harddrake/ui.pm_.c:74
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
-msgstr "ĽŞĄźĽČĽ×ĽíĄźĽÖ"
+msgstr "şîźÔ: "
-#: ../../harddrake/ui.pm_.c:84
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
-msgstr "ĽÇĽŁĽšĽŻ¤Î¸Ą˝Đ"
+msgstr "Harddrake2 ĽĐĄźĽ¸ĽçĽó"
-#: ../../harddrake/ui.pm_.c:99
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
-msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎžđĘó¤ň¸Ť¤Ć˛ź¤ľ¤¤"
+msgstr "¸Ą˝Đ¤ľ¤ě¤żĽĎĄźĽÉĽŚĽ§Ľ˘"
-#: ../../harddrake/ui.pm_.c:101
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
-msgstr "žđĘó¤ňÉ˝ź¨"
+msgstr "žđĘó"
-#: ../../harddrake/ui.pm_.c:104
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
-msgstr "ĽŢĽŚĽš¤ÎŔßÄę"
+msgstr "ĽâĽ¸ĽĺĄźĽëŔßÄę"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
-msgstr ""
+msgstr "ŔßÄęĽÄĄźĽëźÂšÔ"
-#: ../../harddrake/ui.pm_.c:109
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
-msgstr "ĽÝĄźĽČ %s ¤Ç¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż"
+msgstr "¤ż¤Ŕ¤¤¤Ţ¸Ą˝ĐĂć"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "¤ŞÂÔ¤Á˛ź¤ľ¤¤"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "ĽâĽ¸ĽĺĄźĽë¤ÎłĆĽŃĽéĽáĄźĽż¤ň¤ł¤ł¤ÇŔßÄę¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../harddrake/ui.pm_.c:161
-#, fuzzy, c-format
+#: ../../harddrake/ui.pm_.c:166
+#, c-format
msgid "Running \"%s\" ..."
-msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
+msgstr "\"%s\" ¤ňźÂšÔĂć..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "%sĽŻĽéĽš¤ňĽ×ĽíĄźĽÖĂć\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
-msgstr ""
+msgstr "°ěźĄ"
-#: ../../harddrake/ui.pm_.c:198
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
-msgstr "¤˘¤Č %d ÉĂ"
+msgstr "ĆóźĄ"
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
-#, fuzzy
msgid "Auto-detect"
-msgstr "źŤĆ°¸Ą˝Đ¤ň¤š¤ë"
+msgstr "źŤĆ°¸Ą˝Đ"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
-#, fuzzy
msgid "Unknown|Generic"
-msgstr "ČĆÍŃ"
+msgstr "̤ĂÎ|ČĆÍŃ"
#: ../../harddrake/v4l.pm_.c:98
msgid "Unknown|CPH05X (bt878) [many vendors]"
-msgstr ""
+msgstr "̤ĂÎ|CPH05X (bt878) [łĆźďĽŮĽóĽŔĄź]"
#: ../../harddrake/v4l.pm_.c:99
msgid "Unknown|CPH06X (bt878) [many vendors]"
-msgstr ""
+msgstr "̤ĂÎ|CPH06X (bt878) [łĆźďĽŮĽóĽŔĄź]"
#: ../../harddrake/v4l.pm_.c:210
msgid ""
@@ -2716,37 +2786,38 @@ 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 ""
+"şÇśá¤ÎĽĆĽěĽÓĽŤĄźĽÉ¤Î¤Ű¤Č¤ó¤É¤Ç¤ĎGNU/Linux ĽŤĄźĽÍĽë¤ÎbttvĽâĽ¸ĽĺĄźĽë¤ŹŔľ¤ˇ¤¤ĽŃ"
+"ĽéĽáĄźĽż¤ňźŤĆ°¸Ą˝Đ¤ˇ¤Ţ¤šĄŁ\n"
+"ĽŤĄźĽÉ¤ŹŔľ¤ˇ¤Ż¸Ą˝Đ¤ľ¤ě¤Ę¤ą¤ě¤ĐĄ˘źęĆ°¤ÇťŘÄę¤Ç¤­¤Ţ¤šĄŁÉŹÍפ˹ţ¤¸¤ĆĽĆĽěĽÓĽŤĄźĽÉ"
+"¤ÎĽŃĽéĽáĄźĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
#: ../../harddrake/v4l.pm_.c:213
-#, fuzzy
msgid "Card model:"
-msgstr "ĽŤĄźĽÉ mem (DMA)"
+msgstr "ĽŤĄźĽÉĽâĽÇĽë: "
#: ../../harddrake/v4l.pm_.c:214
-#, fuzzy
msgid "Tuner type:"
-msgstr "ĽżĽ¤Ľ×¤ÎĘŃšš"
+msgstr "ĽÁĽĺĄźĽĘ¤ÎźďÎŕ: "
#: ../../harddrake/v4l.pm_.c:215
msgid "Number of capture buffers:"
-msgstr ""
+msgstr "Ľ­ĽăĽ×ĽÁĽăĽĐĽĂĽŐĽĄ¤Îżô: "
#: ../../harddrake/v4l.pm_.c:215
msgid "number of capture buffers for mmap'ed capture"
-msgstr ""
+msgstr "mmapĽ­ĽăĽ×ĽÁĽăÍѤμ­ĽăĽ×ĽÁĽăĽĐĽĂĽŐĽĄżô"
#: ../../harddrake/v4l.pm_.c:217
-#, fuzzy
msgid "PLL setting:"
-msgstr "ŔßÄę¤ÎĆɤߚţ¤ßĂć"
+msgstr "PLL ŔßÄę:"
#: ../../harddrake/v4l.pm_.c:218
msgid "Radio support:"
-msgstr ""
+msgstr "ĽéĽ¸ĽŞĽľĽÝĄźĽČ: "
#: ../../harddrake/v4l.pm_.c:218
msgid "enable radio support"
-msgstr ""
+msgstr "ĽéĽ¸ĽŞĽľĽÝĄźĽČ¤ňÍ­¸ú¤Ë¤š¤ë"
#: ../../help.pm_.c:13
msgid ""
@@ -3204,7 +3275,6 @@ msgstr ""
"¤ČĹú¤¨¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../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"
@@ -3247,7 +3317,7 @@ msgstr ""
"¤Ę¤É¤Ë¤č¤ëĽŻĽéĽĂĽˇĽĺ¤Ť¤éĽˇĽšĽĆĽŕ¤ň˛óÉü¤ľ¤ť¤ë¤Î¤ËťČ¤¨¤ëĄ˘łĆźď¤ÎĽÄĄźĽë\n"
"¤ŹĆţ¤Ă¤Ć¤¤¤Ţ¤šĄŁ\n"
"\n"
-"¤ł¤ÎĽšĽĆĽĂĽ×¤ňĽŻĽęĽĂĽŻ¤š¤ë¤ČĄ˘ĽŐĽíĽĂĽÔĄźĽÇĽŁĽšĽŻ¤ňĽÉĽéĽ¤ĽÖ¤ËĆţ¤ě¤í¤Č\n"
+"ĄÖ¤Ď¤¤Ą×¤Čąţ¤¨¤ż¤éĄ˘ĽŐĽíĽĂĽÔĄźĽÇĽŁĽšĽŻ¤ňĽÉĽéĽ¤ĽÖ¤ËĆţ¤ě¤í¤Č\n"
"Í׾᤾¤ě¤Ţ¤šĄŁÁŢĆţ¤š¤ëĽŐĽíĽĂĽÔĄźĽÇĽŁĽšĽŻ¤ĎĄ˘śő¤ŤĄ˘ÉÔÍפʼǥźĽż¤ˇ¤Ť\n"
"Ćţ¤Ă¤Ć¤¤¤Ę¤¤¤â¤Î¤Ë¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁĽŐĽŠĄźĽŢĽĂĽČ¤š¤ëÉŹÍפϤ˘¤ę¤Ţ¤ť¤óĄŁ\n"
"DrakX¤Ź´°Á´¤Ë¤˝¤ě¤ň˝ń¤­´š¤¨¤Ţ¤šĄŁ"
@@ -4477,13 +4547,16 @@ msgid ""
"missing), this generally means your boot floppy in not in sync with the "
"Installation medium (please create a newer boot floppy)"
msgstr ""
+"¤˘¤Ę¤ż¤ÎĽŤĄźĽÍĽë¤ËÂĐąţ¤ˇ¤żĽŤĄźĽÍĽëĽâĽ¸ĽĺĄźĽë¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤ť¤ó(ĽŐĽĄĽ¤Ľë%s¤Ź"
+"¤˘¤ę¤Ţ¤ť¤ó)ĄŁ¤ł¤ě¤ĎÉáÄĚĄ˘ľŻĆ°ĽŐĽíĽĂĽÔĄź¤ŹĽ¤ĽóĽšĽČĄźĽëĽáĽÇĽŁĽ˘¤ČÂĐąţ¤ˇ¤Ć¤¤¤Ę¤¤"
+"¤Č¤¤¤Ś¤ł¤Č¤Ç¤šĄĘżˇ¤ˇ¤¤ľŻĆ°ĽŐĽíĽĂĽÔĄź¤ňşî¤ę¤Ę¤Ş¤ˇ¤Ţ¤ˇ¤ç¤Ś)"
#: ../../install2.pm_.c:167
#, c-format
msgid "You must also format %s"
msgstr "%s ¤âĽŐĽŠĄźĽŢĽĂĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4507,7 +4580,7 @@ msgstr ""
"\n"
"ËÜĹö¤Ë¤ł¤ÎĽľĄźĽĐ¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤¤¤¤¤Ç¤š¤ÍĄŠ\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4515,21 +4588,25 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"ĽˇĽšĽĆĽŕššżˇ¤ň˛ÄÇ˝¤Ë¤š¤ë¤ż¤áĄ˘°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ňşď˝ü¤ˇ¤Ţ¤š: %s\n"
+"\n"
+"\n"
+"ËÜĹö¤Ë¤ł¤ě¤é¤ňşď˝ü¤ˇ¤Ć¤¤¤¤¤Ç¤š¤Ť?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS ĽÉĽáĽ¤Ľó¤Ź¤Ę¤¤¤Î¤ÇĽÖĽíĄźĽÉĽ­ĽăĽšĽČ¤ŹťČ¤¨¤Ţ¤ť¤ó"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "FATˇÁź°¤ÎĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "¤ł¤ÎĽŐĽíĽĂĽÔĄź¤Ď FATĽŐĽŠĄźĽŢĽĂĽČ¤¸¤ă¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4537,12 +4614,12 @@ msgstr ""
"¤ł¤ÎĘݸ¤ˇ¤żĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ňťČ¤Ś¤Ë¤ĎĄ˘Ľ¤ĽóĽšĽČĄźĽë¤ÎľŻĆ°ťţ¤ËĄÖlinux "
"defcfg=floppyĄ×¤ČťŘÄꤡ¤Ţ¤šĄŁ"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "ĽŐĽĄĽ¤Ľë %s ¤ÎĆɤߤȤ꼨ĽéĄź¤Ç¤š"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4785,7 +4862,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%s ¤Ř¤č¤Ś¤ł¤˝"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
@@ -4816,11 +4893,11 @@ msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŻĽéĽš"
msgid "Please choose one of the following classes of installation:"
msgstr "°Ę˛ź¤ÎĽ¤ĽóĽšĽČĄźĽëĽŻĽéĽš¤ň¤É¤ě¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "ĽŃĽĂĽąĄźĽ¸Ľ°ĽëĄźĽ×¤ňÁŞÂň"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "¸ÄĘĚĽŃĽĂĽąĄźĽ¸¤ÎÁŞÂň"
@@ -4896,7 +4973,7 @@ msgstr "źŤĆ°ÁŞÂň¤ľ¤ě¤żĽŃĽĂĽąĄźĽ¸¤ňÉ˝ź¨"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë"
@@ -4916,7 +4993,7 @@ msgstr "şÇžŽĽ¤ĽóĽšĽČĄźĽë"
msgid "Choose the packages you want to install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¤¤ĽŃĽĂĽąĄźĽ¸¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Ľ¤ĽóĽšĽČĄźĽëĂć"
@@ -4943,17 +5020,17 @@ msgid "Installing package %s"
msgstr "ĽŃĽĂĽąĄźĽ¸ %s ¤ÎĽ¤ĽóĽšĽČĄźĽë"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "ǧ¤á¤ë"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "ľńČÝ"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4967,16 +5044,16 @@ msgstr ""
"CD¤Ź¤Ę¤ą¤ě¤ĐĄ˘Cancel ¤ň˛Ą¤ˇ¤Ć¤ł¤Î Cd-Rom ¤Ť¤é¤ÎĽ¤ĽóĽšĽČĄźĽë¤ň˛óČň¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "¤Ť¤Ţ¤ď¤şŔč¤ËżĘ¤ß¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎŔ°Îó¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
@@ -5100,7 +5177,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5211,7 +5288,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5285,10 +5362,10 @@ msgstr ""
#: ../../install_steps_interactive.pm_.c:191
msgid "Are you sure you refuse the licence?"
-msgstr ""
+msgstr "ĽéĽ¤ĽťĽóĽš¤ňËÜĹö¤ËľńČݤˇ¤Ć¤č¤í¤ˇ¤¤¤Ç¤š¤ŤĄŠ"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ľ­ĄźĽÜĄźĽÉ"
@@ -5432,24 +5509,24 @@ msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"ĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ %s ¤ÎĽÁĽ§ĽĂĽŻ¤ËźşÇÔĄŁĽ¨ĽéĄź¤ň˝¤Éü¤ˇ¤Ţ¤š¤ŤĄŠĄĘ¤ż¤Ŕ¤ˇĽÇĄźĽż¤Ź"
+"°ěÉôžĂ¤¨¤ë¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó¤č)"
#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Ë˝˝ĘŹ¤ĘĽšĽďĽĂĽ×¤Ź¤˘¤ę¤Ţ¤ť¤óĄ¤ĽšĽďĽĂĽ×¤ň˛Ă¤¨¤Ć˛ź¤ľ¤¤"
#: ../../install_steps_interactive.pm_.c:472
-#, fuzzy
msgid "Looking for available packages and rebuilding rpm database..."
-msgstr "źęťý¤Á¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š"
+msgstr "źęťý¤Á¤ÎĽŃĽĂĽąĄźĽ¸¤ňĂľ¤ˇ¤ĆrpmĽÇĄźĽżĽŮĄźĽšşĆš˝ĂŰĂć..."
#: ../../install_steps_interactive.pm_.c:473
msgid "Looking for available packages..."
msgstr "źęťý¤Á¤ÎĽŃĽĂĽąĄźĽ¸¤ň¤ľ¤Ź¤ˇ¤Ć¤¤¤Ţ¤š"
#: ../../install_steps_interactive.pm_.c:476
-#, fuzzy
msgid "Looking at packages already installed..."
-msgstr "¤ł¤ÎĽŃĽĂĽąĄźĽ¸¤ĎČóÁŞÂň¤Ë¤Ç¤­¤Ţ¤ť¤óĄŁ¤š¤Ç¤ËĽ¤ĽóĽšĽČĄźĽëşŃ¤ß¤Ç¤š"
+msgstr "Ľ¤ĽóĽšĽČĄźĽëşŃ¤ßĽŃĽĂĽąĄźĽ¸¤ňÄ´¤Ů¤Ć¤¤¤Ţ¤š..."
#: ../../install_steps_interactive.pm_.c:480
msgid "Finding packages to upgrade..."
@@ -5495,32 +5572,31 @@ msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĆţ¤Ă¤żĽŐĽíĽĂĽÔĄź¤ňÁŢĆţ"
msgid "Selected size is larger than available space"
msgstr "Áޤó¤Ŕ¤â¤Î¤ÎĽľĽ¤Ľş¤Ďśő¤­ĽšĽÚĄźĽš¤ňąŰ¤¨¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ÎźďÎŕ"
-#: ../../install_steps_interactive.pm_.c:642
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
"ĽŃĽĂĽąĄźĽ¸Ľ°ĽëĄźĽ×¤ŹÁŞ¤Đ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŁ\n"
-"şÇÄă¸ÂÍߤˇ¤¤Ľ¤ĽóĽšĽČĄźĽë¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
+"şÇÄă¸ÂÍߤˇ¤¤Ľ¤ĽóĽšĽČĄźĽë¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤: "
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "X ¤ňťČ¤Ś"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "´đËÜĹŞ¤ĘĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤ňĆţ¤ě¤ëĄĘżäžŠĄŞĄË"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "ËÜĹö¤ËşÇÄă¸Â¤ÎĽ¤ĽóĽšĽČĄźĽëĄĘurpmi ¤â¤Ę¤ˇĄË"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5530,16 +5606,16 @@ msgstr ""
"CD¤Ź°ě¤Ä¤â¤Ę¤ą¤ě¤ĐĄ˘Ľ­ĽăĽóĽťĽë¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"źę¸ľ¤Ë¤Ę¤¤CD¤Ź¤˘¤ě¤ĐĄ˘¤˝¤ě¤ňÁŞÂň¤Ť¤é¤Ď¤ş¤ˇ¤Ć¤Ť¤éOk¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "ĄÖ %s Ą×¤Č¤¤¤ŚCd-Rom"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î˝ŕČ÷"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5548,21 +5624,21 @@ msgstr ""
"ĽŃĽĂĽąĄźĽ¸ %s ¤ňĽ¤ĽóĽšĽČĄźĽë\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Ľ¤ĽóĽšĽČĄźĽëŔßÄę¤ňłÎÄę"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "ťČ¤Ă¤żľŻĆ°ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "ššżˇĽâĽ¸ĽĺĄźĽëĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ¤ˇ¤Ć˛ź¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5626,8 +5702,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5639,165 +5714,162 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
"ĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¸řłŤťţ°Ęšß¤Ëššżˇ¤ľ¤ě¤żĽŃĽĂĽąĄźĽ¸¤ň\n"
-"ĽŔĽŚĽóĽíĄźĽÉ¤Ç¤­¤Ţ¤šĄŁ\n"
-"\n"
-"ĽťĽ­ĽĺĽęĽĆĽŁĽŐĽŁĽĂĽŻĽš¤äĽĐĽ°ĽŐĽŁĽĂĽŻĽš¤ŹĆŔ¤é¤ě¤Ţ¤š¤ŹĄ˘\n"
-"¤ł¤ě¤Ë¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ŹÉŹÍפǤšĄŁ\n"
+"ĽŔĽŚĽóĽíĄźĽÉ¤Ç¤­¤Ţ¤šĄŁĽťĽ­ĽĺĽęĽĆĽŁĽŐĽŁĽĂĽŻĽš¤äĽĐĽ°ĽŐĽŁĽĂĽŻĽš¤ŹĆŔ¤é¤ě¤Ţ¤šĄŁ\n"
+"ĽŃĽĂĽąĄźĽ¸¤ÎĽŔĽŚĽóĽíĄźĽÉ¤Ë¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ŹÉŹÍפǤšĄŁ\n"
"\n"
"ššżˇĽŃĽĂĽąĄźĽ¸¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "Mandrake Linux ĽľĽ¤ĽČ¤ËŔÜÂł¤ˇ¤ĆĽßĽéĄź°ěÍ÷¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "¤É¤ÎĽľĽ¤ĽČ¤Ť¤éĽŃĽĂĽąĄźĽ¸¤ňťý¤Ă¤Ć¤Ż¤ë¤Ť¤ňÁŞÂň"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "ĽľĽ¤ĽČ¤ËŔÜÂł¤ˇ¤ĆĽŃĽĂĽąĄźĽ¸°ěÍ÷¤ňźčĆŔ¤ˇ¤Ć¤¤¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "¤˘¤Ę¤ż¤Îťţ´ÖÂӤϤɤě¤Ç¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "ĽĎĄźĽÉĽŚĽ§Ľ˘ĽŻĽíĽĂĽŻ¤Ď GMT ¤ËĽťĽĂĽČ¤ˇ¤Ć¤˘¤ę¤Ţ¤š"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "źŤĆ°ťţ´Ö¤˘¤ď¤ťĄĘNTP¤ňťČ¤ŚĄË"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP ĽľĄźĽĐ"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "ĽęĽâĄźĽČCUPS ĽľĄźĽĐ"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Ľ×ĽęĽóĽż¤Ę¤ˇ"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ISA ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ď¤˘¤ę¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄÖsndconfigĄ×¤ňźÂšÔ¤ˇ¤ĆĽľĽŚĽóĽÉĽŤĄźĽÉ¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĄÖharddrakeĄ×¤ňťî¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "¤Ţ¤Č¤á"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "ĽŢĽŚĽš"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "ťţ´ÖÂÓ"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Ľ×ĽęĽóĽż"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDNĽŤĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "ĽľĽŚĽóĽÉĽŤĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "ĽĆĽěĽÓĽŤĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
-msgstr "ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽŐĽŠĽóĽČ¤ňźč¤Ă¤Ć¤Ż¤ë"
+msgstr "ĽŚĽŁĽóĽÉĽŚĽş¤ÎĽÉĽáĽ¤Ľó"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "ĽíĄźĽŤĽëĽŐĽĄĽ¤Ľë"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "ĽëĄźĽČĽŃĽšĽďĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "ĽŃĽšĽďĄźĽÉ¤Ę¤ˇ"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "¤ł¤ÎĽŃĽšĽďĄźĽÉ¤Ď´ĘĂą¤š¤Ž¤Ţ¤šĄĘşÇÄă¤Ç¤â %d ʸťúťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄË"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "ǧžÚ"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "ǧžÚLDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAPĽŮĄźĽšdn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAPĽľĄźĽĐ"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "ǧžÚNIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS ĽÉĽáĽ¤Ľó"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS ĽľĄźĽĐ"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5812,22 +5884,31 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
+"W2K PDC¤Ç¤ł¤ě¤ňťČ¤Ś¤Ë¤ĎĄ˘¤ż¤Ö¤óadmin¤Ë°Ę˛ź¤ňźÂšÔ¤ˇ¤Ć¤â¤é¤ŚÉŹÍפŹ¤˘¤ę¤Ţ¤šC:"
+"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" everyone /add ¤˝¤ˇ¤Ć"
+"ĽľĄźĽĐ¤ňşĆľŻĆ°¤ˇ¤Ţ¤šĄŁ\n"
+"¤Ţ¤żĽŢĽˇĽó¤ňĽŚĽŁĽóĽÉĽŚĽş(TM)ĽÉĽáĽ¤Ľó¤Ëť˛˛Ă¤ľ¤ť¤ë¤Ë¤ĎĽÉĽáĽ¤Ľó´ÉÍýźÔ¤ÎĽćĄźĽśĚž/"
+"ĽŃĽšĽďĄźĽÉ¤ŹÉŹÍפǤšĄŁ\n"
+"ĽÍĽĂĽČĽďĄźĽŻ¤ŹÍ­¸ú¤Ë¤Ę¤Ă¤Ć¤¤¤Ę¤ą¤ě¤ĐĄ˘Drakx¤ĎĽÍĽĂĽČĽďĄźĽŻŔßÄꤏ˝Ş¤ď¤Ă¤Ć¤Ť¤éĽÉ"
+"ĽáĽ¤Ľó¤Ëť˛˛Ă¤ˇ¤č¤Ś¤Č¤ˇ¤Ţ¤šĄŁ\n"
+"¤ł¤ÎŔßÄꤏ˛ż¤é¤Ť¤ÎÍýÍł¤ÇźşÇÔ¤ˇĄ˘ĽÉĽáĽ¤ĽóǧžÚ¤ŹľĄÇ˝¤ˇ¤Ę¤ą¤ě¤ĐĄ˘ĽˇĽšĽĆĽŕ¤ňľŻĆ°"
+"¤ˇ¤Ć¤Ť¤éĄ˘ĽŚĽŁĽóĽÉĽŚĽş(TM)¤ÎĽÉĽáĽ¤Ľó¤Č´ÉÍýźÔ¤ÎĽćĄźĽśĚž/ĽŃĽšĽďĄźĽÉ¤ňťČ¤Ă"
+"¤Ć'smbpasswd -j DOMAIN -U USER%PASSWORD' ¤ňźÂšÔ¤ˇ¤Ţ¤šĄŁ\n"
+"'wbinfo -t' ĽłĽŢĽóĽÉ¤ň¤Ä¤Ť¤Ś¤ČĄ˘Ç§žÚÍѤÎČëĚŠ¤ŹÂçžćÉפŤĽÁĽ§ĽĂĽŻ¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:1122
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
-msgstr "ǧžÚLDAP"
+msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽÉĽáĽ¤ĽóǧžÚ"
-#: ../../install_steps_interactive.pm_.c:1124
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
-msgstr "ĽÉĽáĽ¤ĽóĚž"
+msgstr "ĽÉĽáĽ¤Ľó´ÉÍýźÔĚž"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
-msgstr ""
+msgstr "ĽÉĽáĽ¤Ľó´ÉÍýźÔĽŃĽšĽďĄźĽÉ"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5854,19 +5935,19 @@ msgstr ""
"ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ë¤Ę¤é¤ĐĄ˘ĽŐĽíĽĂĽÔĽŁĽÇĽŁĽšĽŻ¤ňĽÉĽéĽ¤ĽÖ¤ËÁŢĆţ¤ˇĄ˘\n"
"ĄÖOKĄ×¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "şÇ˝é¤ÎĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "ĆóČÖĚܤμռíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "ĽšĽ­ĽĂĽ×"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5890,7 +5971,7 @@ msgstr ""
"Éüľě¤š¤ë¤Î¤ŹłÚ¤Ë¤Ę¤ę¤Ţ¤šĄŁĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ę¤Ţ¤š¤ŤĄŠ\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5904,28 +5985,28 @@ msgstr ""
"1.44 Mb ĽŐĽíĽĂĽÔĄź¤ÇľŻĆ°ĽÇĽŁĽšĽŻ¤ňşî¤ë¤Î¤Ď¤ż¤Ö¤óĚľÍý¤Ç¤šĄŁ\n"
"XFS ¤Ď¤Č¤Ć¤âÂ礭¤ĘĽÉĽéĽ¤ĽĐ¤ŹÉŹÍפŔ¤Ť¤é¤Ç¤š)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤óĄ¤¤´¤á¤ó¤Ę¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ňşî¤ę¤ż¤¤ĽŐĽíĽĂĽÔĽŁĽÉĽéĽ¤ĽÖ¤ňÁŞÂň"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻ¤ÎşîŔŽ"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤Î˝ŕČ÷"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5937,11 +6018,11 @@ msgstr ""
"Ľ¤ĽóĽšĽČĄźĽë¤ĎÂł¤ą¤Ţ¤š¤ŹĄ˘ĽŢĽˇĽó¤ÎľŻĆ°¤Ë¤Ď\n"
"BootX ¤ňťČ¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot ¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5949,15 +6030,15 @@ msgstr ""
"aboot Ľ¤ĽóĽšĽČĄźĽëťţ¤ËĽ¨ĽéĄźČŻŔ¸ĄŁ\n"
"ĚľÍý¤ËĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤ß¤Ţ¤š¤ŤĄŠĄĄ¤ż¤Ŕ¤ˇşÇ˝é¤ÎĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÇ˲ő¤ľ¤ě¤Ţ¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "ĽÖĄźĽČĽíĄźĽŔĽ¤ĽóĽšĽČĄźĽëĂć"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "ĽÖĄźĽČĽíĄźĽŔ¤ÎĽ¤ĽóĽšĽČĄźĽë¤ËźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŁ°Ę˛ź¤ÎĽ¨ĽéĄź¤ŹČŻŔ¸:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5974,17 +6055,17 @@ msgstr ""
" ¤˝¤ě¤Ť¤é¤ł¤ŚĽżĽ¤Ľ×¤ˇ¤Ţ¤š: shut-down\n"
"źĄ¤ÎľŻĆ°ťţ¤Ë¤ĎĽÖĄźĽČĽíĄźĽŔ¤ÎĽ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤ë¤Ď¤ş¤Ç¤šĄŁ"
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "śő¤ÎĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ¤ˇ¤Ć˛ź¤ľ¤¤"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5994,8 +6075,8 @@ msgstr ""
"\n"
"ËÜĹö¤Ë˝ŞÎť¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../install_steps_interactive.pm_.c:1316
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1317
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -6019,22 +6100,21 @@ msgstr ""
"¤ł¤ÎĽĐĄźĽ¸ĽçĽó¤Î Mandrake Linux ¤ÎĽĐĽ°˝¤ŔľžđĘó¤ĎĄ˘\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/82errata.php3 ¤ÇÄ´¤Ů¤é¤ě¤Ţ¤šĄŁ\n"
+"%s ¤ÇÄ´¤Ů¤é¤ě¤Ţ¤šĄŁ\n"
"\n"
"\n"
"Ľ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎŔßÄę¤Ë¤Ä¤¤¤Ć¤ĎĽćĄźĽśĽŹĽ¤ĽÉ¤ÎĄÖĽ¤ĽóĽšĽČĄźĽë¤ˇ¤ż¸ĺĄ×¤Î\n"
"žĎ¤ňť˛žČ¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../install_steps_interactive.pm_.c:1329
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1330
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:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6047,15 +6127,15 @@ msgstr ""
"(¤ł¤ě¤ĎĘ̤μ޼ˇĽó¤Ř¤ÎĽ¤ĽóĽšĽČĄźĽëÍѤΤâ¤Î¤Ç¤š).\n"
"\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Á´źŤĆ°"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "şĆŔ¸"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĘݸ"
@@ -6090,14 +6170,14 @@ msgstr "šâĹ٤ĘÁŞÂň"
msgid "Basic"
msgstr "´đËÜ"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "źĄ"
@@ -6135,7 +6215,7 @@ msgstr "¤ł¤ÎĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤š¤ŤĄŠ"
#: ../../interactive/stdio.pm_.c:105
msgid " enter `void' for void entry"
-msgstr ""
+msgstr "Ěľ¸ú¤ĘĽ¨ĽóĽČĽę¤Ë¤ĎĄÖvoidĄ×¤ČĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#: ../../interactive/stdio.pm_.c:105
#, c-format
@@ -6243,9 +6323,8 @@ msgid "Belgian"
msgstr "ĽŮĽëĽŽĄź"
#: ../../keyboard.pm_.c:177
-#, fuzzy
msgid "Bengali"
-msgstr "Í­¸ú¤Ë"
+msgstr "ĽŮĽóĽŹĽë"
#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
@@ -6260,9 +6339,8 @@ msgid "Brazilian (ABNT-2)"
msgstr "ĽÖĽéĽ¸Ľë"
#: ../../keyboard.pm_.c:183
-#, fuzzy
msgid "Bosnian"
-msgstr "Ľ¨ĽšĽČĽËĽ˘"
+msgstr "ĽÜĽšĽËĽ˘"
#: ../../keyboard.pm_.c:184
msgid "Belarusian"
@@ -6286,7 +6364,7 @@ msgstr "ĽÉĽ¤ĽÄĄĘĽÇĽĂĽÉĽ­Ąź¤Ę¤ˇĄË"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "ĽÇĽôĽĄĽĘĽŹĄźĽęĄź"
#: ../../keyboard.pm_.c:192
msgid "Danish"
@@ -6322,11 +6400,11 @@ msgstr "ĽŽĽęĽˇĽă"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Ľ°Ľ¸ĽăĽéĄźĽČ"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Ľ°ĽëĽŕĽ­"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
@@ -6358,7 +6436,7 @@ msgstr "Ľ¤ĽżĽęĽ˘"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Ľ¤ĽĚĽŻĽĆĽŁĽČĽČ"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
@@ -6373,9 +6451,8 @@ msgid "Latin American"
msgstr "ĽéĽĆĽóĽ˘ĽáĽęĽŤ"
#: ../../keyboard.pm_.c:218
-#, fuzzy
msgid "Laotian"
-msgstr "ĽéĽČĽôĽŁĽ˘"
+msgstr "ĽéĽŞĽš"
#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
@@ -6403,20 +6480,19 @@ msgstr "ĽŢĽąĽÉĽËĽ˘"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "ĽßĽăĽóĽŢĄźĄĘĽÓĽëĽŢĄË"
#: ../../keyboard.pm_.c:227
-#, fuzzy
msgid "Mongolian (cyrillic)"
-msgstr "ĽťĽëĽÓĽ˘(cyrillic)"
+msgstr "ĽâĽóĽ´Ľë(cyrillic)"
#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "ĽŢĽëĽż (UK)"
#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "ĽŢĽëĽż (US)"
#: ../../keyboard.pm_.c:230
msgid "Dutch"
@@ -6547,33 +6623,31 @@ msgstr "ąŚĄÖĽŚĽŁĽóĽÉĽŚĽşĄ×Ľ­Ąź"
msgid "Circular mounts %s\n"
msgstr "˝ä˛óĽŢĽŚĽóĽČ %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "¤Ţ¤şĎŔÍýĽÜĽęĽĺĄźĽŕ¤ňşď˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
#: ../../modparm.pm_.c:50
-#, fuzzy
msgid "a number"
-msgstr "ĹĹĎĂČÖšć"
+msgstr "ČÖšć"
#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated numbers"
-msgstr ""
+msgstr "%d ĽłĽóĽŢśčŔÚ¤ę¤Îżôťú"
#: ../../modparm.pm_.c:52
#, c-format
msgid "%d comma separated strings"
-msgstr ""
+msgstr "%d ĽłĽóĽŢśčŔÚ¤ę¤ÎʸťúÎó"
#: ../../modparm.pm_.c:54
msgid "comma separated numbers"
-msgstr ""
+msgstr "ĽłĽóĽŢśčŔÚ¤ę¤Îżôťú"
#: ../../modparm.pm_.c:54
-#, fuzzy
msgid "comma separated strings"
-msgstr "ĽŐĽŠĄźĽŢĽĂĽČ"
+msgstr "ĽłĽóĽŢśčŔÚ¤ę¤ÎʸťúÎó"
#: ../../modules.pm_.c:293
msgid ""
@@ -6611,9 +6685,8 @@ msgid "Genius NetScroll"
msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČĄŚĽ¤ĽóĽĆĽęĽŢĽŚĽšĄĘPS/2ĄË"
+msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČĽ¨ĽŻĽšĽ×ĽíĄźĽé"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
@@ -6687,20 +6760,19 @@ msgstr "¤Ę¤ˇ"
msgid "No mouse"
msgstr "ĽŢĽŚĽš¤Ę¤ˇ"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "ĽŢĽŚĽš¤ňĽĆĽšĽČ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "ĽŢĽŚĽš¤ňÍ­¸ú¤Ë¤š¤ë¤Ë¤ĎĄ˘"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "ĽŰĽ¤ĄźĽë¤ňĆ°¤Ť¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
#: ../../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-"
@@ -6734,11 +6806,11 @@ msgstr "ĽÄĽęĄź¤ň˝Ě¤á¤ë"
msgid "Toggle between flat and group sorted"
msgstr "¤˝¤Î¤Ţ¤Ţ¤ČĽ°ĽëĄźĽ×Ę̤ňŔÚ¤ęÂؤ¨"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6748,53 +6820,43 @@ msgstr ""
"¤Ç¤âĄ˘pptp¤äĄ˘dhcp¤ˇ¤ŤťČ¤ď¤Ę¤¤ŔÜÂł¤â¤˘¤ę¤Ţ¤šĄŁ\n"
"¤ď¤Ť¤é¤Ę¤ą¤ě¤ĐĄ˘ĄÖpppoe¤ňťČ¤ŚĄ×¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "dhcp¤ňťČ¤Ś"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "pppoe¤ňťČ¤Ś"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "pptp¤ňťČ¤Ś"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr "ĽľĄźĽĐ"
+msgstr "Web ĽľĄźĽĐ"
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "ĽÉĽáĽ¤ĽóĚž"
+msgstr "ĽÉĽáĽ¤ĽóĚžĽľĄźĽĐ"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ"
+msgstr "ĽáĄźĽëĽľĄźĽĐ"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "LDAPĽľĄźĽĐ"
+msgstr "POP¤ČIMAPĽľĄźĽĐ"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽŤĄźĽÉ¤Ź¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤ó"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6802,7 +6864,7 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"ĽßĽËĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëŔßÄę\n"
+"drakfirewallŔßÄę\n"
"\n"
"¤ł¤Î Mandrake Linux ĽŢĽˇĽóÍѤθĿÍÍŃĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽëŔßÄę¤ň¤ˇ¤Ţ¤šĄŁ\n"
"śŻÎϤĘŔěÍŃĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¸ţ¤ą¤Ë¤ĎĄ˘ŔěÍѤΠMandrakeSecurity\n"
@@ -6810,7 +6872,7 @@ msgstr ""
#: ../../network/drakfirewall.pm_.c:147
msgid "Which services would you like to allow the Internet to connect to?"
-msgstr ""
+msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤Ç¤É¤ÎĽľĄźĽÓĽš¤ËŔÜÂł¤ňľö˛Ä¤ˇ¤Ţ¤š¤ŤĄŠ"
#: ../../network/drakfirewall.pm_.c:148
msgid ""
@@ -6818,6 +6880,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"¤˝¤ÎžłĆźďĽÝĄźĽČ¤ň¤ł¤ł¤ÇĆţÎϤǤ­¤Ţ¤šĄŁ\n"
+"Í­¸ú¤ĘĆţÎĎÎă: 139/tcp 139/udp.\n"
+"žÜ¤ˇ¤Ż¤Ď /etc/services ¤ň¸Ť¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -6826,15 +6891,17 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"Ěľ¸ú¤ĘĽÝĄźĽČ¤Ź¤˘¤ę¤Ţ¤š: %s.\n"
+"Ŕľ¤ˇ¤¤ˇÁź°¤Ď \"port/tcp\" ¤Ţ¤ż¤Ď \"port/udp\", \n"
+"¤ÇĄ˘port ¤Ď 1 ¤Ť¤é 65535¤Îżôťú¤Ç¤šĄŁ"
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "Á´ÉôĄĘĽŐĽĄĽ¤Ľ˘ĄźĽŚĽŠĄźĽë¤Ę¤ˇĄË"
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "ĽÝĄźĽČ¤ÎĽĆĽšĽČ"
+msgstr "¤˝¤ÎžĽÝĄźĽČ"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -6865,7 +6932,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:362
msgid "Configuring network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę"
@@ -6880,15 +6947,15 @@ 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:367
msgid "Host name"
msgstr "ĽŰĽšĽČĚž:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄ꼌ĽŁĽśĄźĽÉ"
@@ -6935,8 +7002,8 @@ msgid "Old configuration (isdn4net)"
msgstr "¸Ĺ¤¤ŔßÄę (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN¤ÎŔßÄę"
@@ -6972,23 +7039,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "¤É¤ÎĽ×ĽíĽČĽłĽë¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "¤É¤ó¤ĘĽŤĄźĽÉ¤ňťČ¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "ĘŹ¤Ť¤é¤Ę¤¤"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7001,19 +7073,19 @@ msgstr ""
"\n"
"¤â¤ˇPCMCIAĽŤĄźĽÉ¤ňťý¤Ă¤Ć¤¤¤ż¤éĄ˘ĽŤĄźĽÉ¤Îirq¤Čio¤ňĂΤëÉŹÍפŹ¤˘¤ę¤Ţ¤šĄŁ\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "ĂćĂÇ"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Âł¤ą¤ë"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "¤˘¤Ę¤ż¤ÎISDNĽŤĄźĽÉ¤Ď¤É¤ě¤Ç¤š¤ŤĄŠ"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7021,7 +7093,7 @@ msgstr ""
"ISDN ĽŤĄźĽÉ¤ň¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż¤ŹĄ˘ĽżĽ¤Ľ×¤ŹĘŹ¤Ť¤ę¤Ţ¤ť¤óĄŁźĄ¤Î˛čĚ̤Ť¤é PCI ĽŤĄźĽÉ¤ň"
"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "ISDN PCI ĽŤĄźĽÉ¤Ď¸ŤÉŐ¤Ť¤ę¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁźĄ¤Î˛čĚ̤Ť¤éÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
@@ -7073,7 +7145,7 @@ msgstr "DNS ĽľĄźĽĐĄĘĽŞĽ×ĽˇĽçĽóĄË"
msgid "Second DNS Server (optional)"
msgstr "ĽťĽŤĽóĽÉ DNS ĽľĄźĽĐĄĘĽŞĽ×ĽˇĽçĽóĄË"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7081,7 +7153,7 @@ msgstr ""
"\n"
"ŔÜÂł¤ňŔڤ뤍Ą˘¤˘¤ë¤¤¤ĎşĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7089,11 +7161,11 @@ msgstr ""
"\n"
"Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ňşĆŔßÄę¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤šĄŁ"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7101,32 +7173,32 @@ msgstr ""
"\n"
"Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł¤š¤ë¤ŤŔÜÂł¤ňşĆŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "¸˝şß¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ËŔÜÂł¤ˇ¤Ć¤¤¤Ţ¤ť¤óĄŁ"
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "ŔÜÂł"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "ŔÚĂÇ"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "ŔÜÂł¤ÎŔßÄę"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ČŔßÄę"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "¤Ç¤Ď %s ŔÜÂł¤ňŔßÄꤡ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7145,12 +7217,12 @@ msgstr ""
"\n"
"ĄÖOKĄ×¤ň˛Ą¤ˇ¤ĆťĎ¤á¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ÎŔßÄę"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7161,7 +7233,7 @@ msgstr ""
"¤¤¤Ţ¤ÎŔßÄę¤ň¤˝¤Î¤Ţ¤ŢťČ¤Ś¤Ë¤Ď OK ¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽÍĽĂĽČĽďĄźĽŻ/Ľ¤ĽóĽżĄź"
"ĽÍĽĂĽČ¤ňşĆŔßÄꤚ¤ë¤Ë¤ĎĽ­ĽăĽóĽťĽë¤ň˛Ą¤ˇ¤Ţ¤šĄŁ\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7173,72 +7245,72 @@ msgstr ""
"¤ł¤ł¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ/ĽÍĽĂĽČĽďĄźĽŻŔÜÂł¤ňŔßÄꤚ¤ë¤Č¤ł¤í¤Ç¤šĄŁ\n"
"źŤĆ°¸Ą˝Đ¤ňťČ¤¤¤ż¤Ż¤Ę¤ą¤ě¤ĐĄ˘ĽÁĽ§ĽĂĽŻ¤ň¤Ď¤ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "ŔßÄꤚ¤ëĽ×ĽíĽŐĽŁĄźĽë¤ÎÁŞÂň"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "źŤĆ°¸Ą˝Đ¤ňťČ¤Ś"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "ĽÇĽĐĽ¤Ľš¤Î¸Ą˝ĐĂć¤Ç¤šĄÄĄÄ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "¤Ő¤Ä¤Ś¤ÎĽâĽÇĽŕŔÜÂł¤ňŔßÄę"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "ĽÝĄźĽČ %s ¤Ç¸Ą˝Đ¤ˇ¤Ţ¤ˇ¤ż"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN ŔÜÂł"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s ¤ň¸Ą˝Đ"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL ŔÜÂł"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "Ľ¤ĽóĽżĄźĽŐĽ§ĄźĽš %s ¤Ç¸Ą˝Đ"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "ĽąĄźĽÖĽëŔÜÂł"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "ĽąĄźĽÖĽëŔÜÂł¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤ż"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN ŔÜÂł"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "Ľ¤ĄźĽľĽÍĽĂĽČĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ˇ¤ż"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "ŔßÄꤡ¤ż¤¤ŔÜÂł¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7248,23 +7320,23 @@ msgstr ""
"¤É¤ě¤ňťČ¤Ś¤ŤÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "ĽÖĄźĽČťţ¤ËŔÜÂł¤ňłŤťĎ¤ˇ¤Ţ¤š¤ŤĄŠ"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄę"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤ňşĆľŻĆ°¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7275,7 +7347,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7285,7 +7357,7 @@ msgstr ""
"\n"
"ŔßÄę¤ň¤ł¤ě¤Ť¤éĽˇĽšĽĆĽŕ¤ËČżąÇ¤ľ¤ť¤Ţ¤šĄŁ\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7293,7 +7365,7 @@ msgstr ""
"¤ł¤ě¤Ź˝Ş¤ď¤Ă¤ż¤éĄ˘X ĽŚĽŁĽóĽÉĽŚ´Äś­¤ňşĆľŻĆ°¤ľ¤ť¤ĆĄ˘ĽŰĽšĽČĚžĘŃšš¤ËČź¤Ś\n"
"ĚäÂę¤ň˛óČň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7303,7 +7375,7 @@ msgstr ""
"net_monitor ¤Ť mcc¤ÇŔÜÂł¤ňĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁŔÜÂł¤Ź¤Ç¤­¤Ć¤¤¤Ę¤ą¤ě¤ĐŔßÄę¤ň"
"şĆľŻĆ°¤ˇ¤ż¤Ű¤Ś¤Ź¤¤¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤ó"
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7314,7 +7386,7 @@ msgstr ""
"¤â¤Č¤ÎŔßÄę¤ňťÄ¤ˇ¤ż¤ą¤ě¤ĐĄ˘¤ł¤Î¤Ţ¤Ţ OK ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"°Ę˛ź¤ÎĽŐĽŁĄźĽëĽÉ¤ňĘŃšš¤š¤ë¤ČĄ˘ŔßÄꤏĘѤď¤Ă¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁ"
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7324,43 +7396,42 @@ msgstr ""
"łĆĄš¤ÎšŕĚܤˤϼɼüȤǜčŔÚ¤é¤ě¤ż˝˝żĘżô(Î㥤1.2.3.4)¤ŹIP Ľ˘ĽÉĽěĽš¤Č¤ˇ¤ĆĆţÎϤľ"
"¤ě¤Ţ¤šĄŁ"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽÇĽĐĽ¤Ľš %s ¤ÎŔßÄę"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (ĽÉĽéĽ¤ĽĐ %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP Ľ˘ĽÉĽěĽš:"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "ĽÍĽĂĽČĽŢĽšĽŻ:"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP ¤ÎźŤĆ°ŔßÄę"
-#: ../../network/network.pm_.c:315
-#, fuzzy
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "ľŻĆ°ťţ¤ËłŤťĎ"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7371,42 +7442,52 @@ msgstr ""
"ĽŰĽšĽČĚž¤ĎĄČmybox.mylab.myco.comĄÉ¤Î¤č¤Ś¤Ë¤ˇ¤Ć˛ź¤ľ¤¤ĄŁ\n"
"¤â¤ˇĽ˛ĄźĽČĽŚĽ§Ľ¤¤Ź¤˘¤ě¤ĐĄ¤¤˝¤Î IP Ľ˘ĽÉĽěĽš¤âĆţÎϤˇ¤Ć˛ź¤ľ¤¤ĄŁ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS ĽľĄźĽĐ"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ (Îă %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Ľ˛ĄźĽČĽŚĽ§Ľ¤ĽÇĽĐĽ¤Ľš"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP Ľ˘ĽÉĽěĽš¤Ď 1.2.3.4 ¤Î¤č¤Ś¤ËĆţÎϤˇ¤Ć˛ź¤ľ¤¤"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP Ľ˘ĽÉĽěĽš¤Ď 1.2.3.4 ¤Î¤č¤Ś¤ËĆţÎϤˇ¤Ć˛ź¤ľ¤¤"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Ľ×ĽíĽ­Ľˇ¤ÎŔßÄę"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "ĽÍĽĂĽČĽďĄźĽŻĽŤĄźĽÉ¤Îid¤ňÄÉŔץʼéĽĂĽ×ĽČĽĂĽ×¤ÇĘŘÍřĄË"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy ¤Ď http://... ¤Ç¤š"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy ¤Ď ftp://... ¤Ç¤š"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url ¤Ď ftp:¤Ťhttp: ¤Ç¤Ď¤¸¤Ţ¤ę¤Ţ¤š"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7523,7 +7604,7 @@ msgstr "Ľ˘ĽŤĽŚĽóĽČĽŃĽšĽďĄźĽÉ"
#: ../../network/tools.pm_.c:104 ../../network/tools.pm_.c:118
msgid "United Kingdom"
-msgstr ""
+msgstr "Ľ¤ĽŽĽęĽš"
#: ../../partition_table.pm_.c:602
msgid "mount failed: "
@@ -7656,7 +7737,6 @@ msgid "Pipe job into a command"
msgstr "Ľ¸ĽçĽÖ¤ňĽłĽŢĽóĽÉ¤ŘĽŃĽ¤Ľ×"
#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
-#, fuzzy
msgid "Unknown Model"
msgstr "̤ĂΤμâĽÇĽë"
@@ -7706,7 +7786,7 @@ msgid ", printing to %s"
msgstr "%s ¤Ř°őşţ˝ĐÎĎĂć"
#: ../../printer.pm_.c:792
-#, fuzzy, c-format
+#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr "LPD ĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, Ľ×ĽęĽóĽżĄÖ%sĄ×"
@@ -7715,13 +7795,14 @@ msgstr "LPD ĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, Ľ×ĽęĽóĽżĄÖ%sĄ×"
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", TCP/IP ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
+# y, c-format
#: ../../printer.pm_.c:798
-#, fuzzy, c-format
+#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, śŚÍ­ĄÖ%sĄ×"
#: ../../printer.pm_.c:802
-#, fuzzy, c-format
+#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr "Novell ĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, Ľ×ĽęĽóĽżĄÖ%sĄ×"
@@ -7775,7 +7856,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:36
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
-msgstr ""
+msgstr "Ľ×ĽęĽóĽżźŤĆ°¸Ą˝Đ (ĽíĄźĽŤĽëĄ˘TCP/Socket, SMBĽ×ĽęĽóĽż)"
#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
@@ -7861,34 +7942,37 @@ msgid "Printerdrake"
msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "Ľ×ĽęĽóĽżĽˇĽšĽĆĽŕşĆľŻĆ°Ăć..."
+msgstr "ĽˇĽšĽĆĽŕÄ´şşĂć..."
#: ../../printerdrake.pm_.c:186
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "ĽŢĽˇĽó¤ËÄžˇë¤ˇ¤żĽ×ĽęĽóĽż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
#: ../../printerdrake.pm_.c:198
-#, fuzzy
msgid ""
"The following printers\n"
"\n"
-msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤Źźč¤ę˝ü¤Ť¤ě¤Ţ¤š"
+msgstr ""
+"°Ę˛ź¤ÎĽ×ĽęĽóĽż\n"
+"\n"
#: ../../printerdrake.pm_.c:199
-#, fuzzy
msgid ""
"The following printer\n"
"\n"
-msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤Źźč¤ę˝ü¤Ť¤ě¤Ţ¤š"
+msgstr ""
+"°Ę˛ź¤ÎĽ×ĽęĽóĽż\n"
+"\n"
#: ../../printerdrake.pm_.c:201
msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"¤Č1Âć¤Î̤ĂΤμ׼ęĽóĽż¤Ź"
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -7896,29 +7980,36 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+"¤Č %d Âć¤Î̤ĂΤμ׼ęĽóĽż¤Ź"
#: ../../printerdrake.pm_.c:207
msgid ""
"\n"
"are "
msgstr ""
+"\n"
+"¤Ź"
#: ../../printerdrake.pm_.c:208
msgid ""
"\n"
"is "
msgstr ""
+"\n"
+"¤Ź"
#: ../../printerdrake.pm_.c:210
-#, fuzzy
msgid "directly connected to your system"
-msgstr "ĽˇĽšĽĆĽŕžĺ¤ÎĽŐĽŠĽóĽČ¤ňĽłĽÔĄź"
+msgstr "ĽŢĽˇĽó¤ËÄžˇë¤ˇ¤Ć¤¤¤Ţ¤š"
#: ../../printerdrake.pm_.c:213
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"̤ĂΤμ׼ęĽóĽż¤Ź°ěÂćĽŢĽˇĽó¤ËÄžˇë¤ˇ¤Ć¤¤¤Ţ¤š"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -7926,33 +8017,31 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"%d Âć¤Î̤ĂΤμ׼ęĽóĽż¤ŹĽŢĽˇĽó¤ËÄžˇë¤ˇ¤Ć¤¤¤Ţ¤š"
#: ../../printerdrake.pm_.c:221
-#, fuzzy
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "ĽâĽÇĽŕ¤Ď¤É¤ÎĽˇĽęĽ˘ĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤Ź¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
+msgstr "(¤š¤Ů¤Ć¤ÎĽ×ĽęĽóĽż¤ňŔÜÂł¤ˇ¤ĆĹŸť¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤)ĄŁ\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 ""
+"žĺľ­¤ÎĽ×ĽęĽóĽż¤äĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽ×ĽęĽóĽż¤Ç¤Î°őşţ¤ň˛ÄÇ˝¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ\n"
#: ../../printerdrake.pm_.c:236
-#, fuzzy
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr ""
-"¤ł¤ÎĽ×ĽęĽóĽż (\"%s\") ¤ň\n"
-"ĽÇĽŐĽŠĽëĽČĽ×ĽęĽóĽż¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ"
+msgstr "ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻ¤ÎĽ×ĽęĽóĽż¤Ç°őşţ¤ň˛ÄÇ˝¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ\n"
#: ../../printerdrake.pm_.c:238
-#, fuzzy
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "ĽÖĄźĽČťţ¤ËŔÜÂł¤ňłŤťĎ¤ˇ¤Ţ¤š¤ŤĄŠ"
+msgstr "žĺľ­¤ÎĽ×ĽęĽóĽż¤Ç°őşţ¤ň˛ÄÇ˝¤Ë¤ˇ¤Ţ¤š¤ŤĄŠ\n"
#: ../../printerdrake.pm_.c:239
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "¤ł¤ÎĽŢĽˇĽó¤ÇËÜĹö¤Ë°őşţ¤ÎŔßÄę¤ň¤ˇ¤Ţ¤š¤ŤĄŠ\n"
#: ../../printerdrake.pm_.c:240
#, c-format
@@ -7960,6 +8049,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"ĂíĄ§Ľ×ĽęĽóĽż¤ÎľĄźď¤Č°őşţĘýź°¤Ë¤č¤Ă¤Ć¤ĎĄ˘şÇÂç¤Ç %d MB ¤ÎÄɲü˝ĽŐĽČ¤ŹĽ¤ĽóĽšĽČĄź"
+"Ľë¤ľ¤ě¤Ţ¤šĄŁ"
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -8008,6 +8099,22 @@ 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"
+"Ľ×ĽęĽóĽżŔßÄ꼌ĽŁĽśĄźĽÉ¤Ř¤¤¤é¤Ă¤ˇ¤ăĄÁ¤¤\n"
+"\n"
+"¤ł¤ÎĽŚĽŁĽśĄźĽÉ¤Ç¤ĎĄ˘¤ł¤ÎĽŢĽˇĽó¤äĽÍĽĂĽČĽďĄźĽŻ¤ËÄžˇë¤ˇ¤żĽ×ĽęĽóĽż¤äĄ˘ĽęĽâĄźĽČ¤Î"
+"ĽŚĽŁĽóĽÉĽŚĽşĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ\n"
+"\n"
+"ĽŢĽˇĽó¤ËĽ×ĽęĽóĽż¤ŹŔÜÂł¤ľ¤ě¤Ć¤¤¤ë¤Ę¤éĄ˘ĽąĄźĽÖĽë¤ň¤Ä¤Ę¤¤¤ÇĹŸť¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ"
+"¤¤ĄŁźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤šĄŁ¤Ţ¤żĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤äĽŚĽŁĽóĽÉĽŚĽşĽŢĽˇĽó¤âĆą¤¸¤ŻŔÜ"
+"Âł¤ˇ¤ĆĹŸť¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+"\n"
+"¤Ę¤ŞĄ˘ĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽ×ĽęĽóĽż¤ÎźŤĆ°¸Ą˝Đ¤ĎĄ˘ĽŢĽˇĽó¤ËÄžˇë¤ˇ¤żĽ×ĽęĽóĽż¤ÎźŤĆ°¸Ą"
+"˝Đ¤č¤ę¤Ďťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤šĄŁ¤Ŕ¤Ť¤éÉŹÍפʤą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤äĽŚĽŁĽóĽÉ"
+"ĽŚĽşžĺ¤ÎĽ×ĽęĽóĽżźŤĆ°¸Ą˝Đ¤ĎĽŞĽŐ¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
+"\n"
+"˝ŕČ÷¤Ź¤Ç¤­¤ż¤éĄÖźĄĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽ×ĽęĽóĽżŔßÄę¤ň¤ˇ¤Ę¤¤¤Ę¤éĄÖĽ­ĽăĽó"
+"ĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
msgid ""
@@ -8023,6 +8130,17 @@ 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"
+"Ľ×ĽęĽóĽżŔßÄ꼌ĽŁĽśĄźĽÉ¤Ř¤¤¤é¤Ă¤ˇ¤ăĄÁ¤¤\n"
+"\n"
+"¤ł¤ÎĽŚĽŁĽśĄźĽÉ¤Ç¤ĎĄ˘¤ł¤ÎĽŢĽˇĽó¤äĽÍĽĂĽČĽďĄźĽŻ¤ËÄžˇë¤ˇ¤żĽ×ĽęĽóĽż¤äĄ˘ĽęĽâĄźĽČ¤Î"
+"ĽŚĽŁĽóĽÉĽŚĽşĽŢĽˇĽó¤Ë¤Ä¤Ę¤Ź¤Ă¤żĽ×ĽęĽóĽż¤ňĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ţ¤šĄŁ\n"
+"\n"
+"ĽŢĽˇĽó¤ËĽ×ĽęĽóĽż¤ŹŔÜÂł¤ľ¤ě¤Ć¤¤¤ë¤Ę¤éĄ˘ĽąĄźĽÖĽë¤ň¤Ä¤Ę¤¤¤ÇĹŸť¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ"
+"¤¤ĄŁźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤šĄŁ\n"
+"\n"
+"˝ŕČ÷¤Ź¤Ç¤­¤ż¤éĄÖźĄĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽ×ĽęĽóĽżŔßÄę¤ň¤ˇ¤Ę¤¤¤Ę¤éĄÖĽ­ĽăĽó"
+"ĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../printerdrake.pm_.c:297
msgid ""
@@ -8043,19 +8161,34 @@ 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"
+"Ľ×ĽęĽóĽżŔßÄ꼌ĽŁĽśĄźĽÉ¤Ř¤¤¤é¤Ă¤ˇ¤ăĄÁ¤¤\n"
+"\n"
+"¤ł¤ÎĽŚĽŁĽśĄźĽÉ¤Ç¤ĎĄ˘¤ł¤ÎĽŢĽˇĽó¤äĽÍĽĂĽČĽďĄźĽŻ¤ËÄžˇë¤ˇ¤żĽ×ĽęĽóĽż¤ňĽ¤ĽóĽšĽČĄźĽë"
+"¤ˇ¤Ţ¤šĄŁ\n"
+"\n"
+"ĽŢĽˇĽó¤ËĽ×ĽęĽóĽż¤ŹŔÜÂł¤ľ¤ě¤Ć¤¤¤ë¤Ę¤éĄ˘ĽąĄźĽÖĽë¤ň¤Ä¤Ę¤¤¤ÇĹŸť¤ňĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ"
+"¤¤ĄŁźŤĆ°¸Ą˝Đ¤ľ¤ě¤Ţ¤šĄŁ¤Ţ¤żĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż¤âĆą¤¸¤ŻŔÜÂł¤ˇ¤ĆĹŸť¤ňĆţ¤ě¤Ć¤Ż"
+"¤Ŕ¤ľ¤¤ĄŁ\n"
+"\n"
+"¤Ę¤ŞĄ˘ĽÍĽĂĽČĽďĄźĽŻžĺ¤ÎĽ×ĽęĽóĽż¤ÎźŤĆ°¸Ą˝Đ¤ĎĄ˘ĽŢĽˇĽó¤ËÄžˇë¤ˇ¤żĽ×ĽęĽóĽż¤ÎźŤĆ°¸Ą"
+"˝Đ¤č¤ę¤Ďťţ´Ö¤Ź¤Ť¤Ť¤ę¤Ţ¤šĄŁ¤Ŕ¤Ť¤éÉŹÍפʤą¤ě¤ĐĄ˘ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽżźŤĆ°¸Ą˝Đ¤Ď"
+"ĽŞĽŐ¤Ë¤ˇ¤Ć¤Ş¤­¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
+"\n"
+"˝ŕČ÷¤Ź¤Ç¤­¤ż¤éĄÖźĄĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁĽ×ĽęĽóĽżŔßÄę¤ň¤ˇ¤Ę¤¤¤Ę¤éĄÖĽ­ĽăĽó"
+"ĽťĽëĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../printerdrake.pm_.c:315
-#, fuzzy
msgid "Auto-detect printers connected to this machine"
-msgstr "Ľ×ĽęĽóĽżźŤĆ°¸Ą˝Đ"
+msgstr "ĽŢĽˇĽóÄžˇëĽ×ĽęĽóĽżźŤĆ°¸Ą˝Đ"
#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
-msgstr ""
+msgstr "ĽíĄźĽŤĽëĽÍĽĂĽČĽďĄźĽŻŔÜÂł¤ÎĽ×ĽęĽóĽż¸Ą˝Đ"
#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
-msgstr ""
+msgstr "ĽŢĽ¤ĽŻĽíĽ˝ĽŐĽČĽŚĽŁĽóĽÉĽŚĽşžĺ¤ÎĽ×ĽęĽóĽżźŤĆ°¸Ą˝Đ"
#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
#: ../../printerdrake.pm_.c:587
@@ -8088,19 +8221,18 @@ msgstr ""
#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Printer auto-detection"
-msgstr "źŤĆ°¸Ą˝Đ¤ň¤š¤ë"
+msgstr "Ľ×ĽęĽóĽżźŤĆ°¸Ą˝Đ¤ň¤š¤ë"
#: ../../printerdrake.pm_.c:408
-#, fuzzy, c-format
+#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ", TCP/IP ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
+msgstr ", ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽżĄÖ%sĄ×, ĽÝĄźĽČ %s"
#: ../../printerdrake.pm_.c:410
-#, fuzzy, c-format
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/ĽŚĽŁĽóĽÉĽŚĽş 95/98/NTĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
+msgstr ", Ľ×ĽęĽóĽżĄÖ%sĄ×Ą˘SMB/ĽŚĽŁĽóĽÉĽŚĽş 95/98/NTĽľĄźĽĐĄÖ%sĄ×žĺ"
#: ../../printerdrake.pm_.c:416
#, c-format
@@ -8120,14 +8252,14 @@ msgid "USB printer \\/*%s"
msgstr "USB Ľ×ĽęĽóĽż \\/*%s"
#: ../../printerdrake.pm_.c:424
-#, fuzzy, c-format
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽżĄĘTCP/Ľ˝ĽąĽĂĽČĄË"
+msgstr "ĽÍĽĂĽČĽďĄźĽŻĽ×ĽęĽóĽż %s, ĽÝĄźĽČ %s"
#: ../../printerdrake.pm_.c:426
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/ĽŚĽŁĽóĽÉĽŚĽş 95/98/NTĽľĄźĽĐžĺ¤ÎĽ×ĽęĽóĽż"
+msgstr "Ľ×ĽęĽóĽż %s, SMB/ĽŚĽŁĽóĽÉĽŚĽş 95/98/NTĽľĄźĽĐ%sžĺ"
#: ../../printerdrake.pm_.c:563
msgid ""
@@ -8146,16 +8278,12 @@ msgid "You must enter a device or file name!"
msgstr "ĽÇĽĐĽ¤Ľš¤ŤĽŐĽĄĽ¤ĽëĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#: ../../printerdrake.pm_.c:578
-#, fuzzy
msgid "No printer found!"
-msgstr ""
-"ĽíĄźĽŤĽëĽ×ĽęĽóĽż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŞ\n"
-"\n"
+msgstr "Ľ×ĽęĽóĽż¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤óĄŞ"
#: ../../printerdrake.pm_.c:588
-#, fuzzy
msgid "Available printers"
-msgstr "ĽíĄźĽŤĽëĽ×ĽęĽóĽż"
+msgstr "ťČ¤¨¤ëĽ×ĽęĽóĽż"
#: ../../printerdrake.pm_.c:592
msgid ""
@@ -8252,24 +8380,23 @@ msgid "Remote printer name missing!"
msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽżĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
-#, fuzzy, c-format
+#, c-format
msgid "Detected model: %s %s"
-msgstr "%s ¤ň¸Ą˝Đ"
+msgstr "¸Ą˝Đ¤ľ¤ě¤żĽâĽÇĽë: %s %s"
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Scanning network..."
-msgstr "ĽÍĽĂĽČĽďĄźĽŻľŻĆ°Ăć..."
+msgstr "ĽÍĽĂĽČĽďĄźĽŻÁöşşĂć..."
#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
-#, fuzzy, c-format
+#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr "ĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ ĄÖ%sĄ×žĺ¤Î, śŚÍ­ĄÖ%sĄ×"
+msgstr ", Ľ×ĽęĽóĽż%s, ĽľĄźĽĐĄÖ%sĄ×žĺ"
#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "°Ę˛ź¤ÎĽ×ĽęĽóĽż¤Ç°őşţĂ楧 \"%s\""
+msgstr "Ľ×ĽęĽóĽż%s, ĽľĄźĽĐĄÖ%sĄ×žĺ"
#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
@@ -8291,6 +8418,8 @@ 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:846
msgid "SMB server host"
@@ -8309,9 +8438,8 @@ msgid "Workgroup"
msgstr "ĽďĄźĽŻĽ°ĽëĄźĽ×"
#: ../../printerdrake.pm_.c:853
-#, fuzzy
msgid "Auto-detected"
-msgstr "źŤĆ°¸Ą˝Đ¤ň¤š¤ë"
+msgstr "źŤĆ°¸Ą˝Đ¤ľ¤ě¤ż¤â¤Î"
#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
@@ -8323,7 +8451,7 @@ msgstr "SambaĽˇĽ§Ľ˘Ěž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
#: ../../printerdrake.pm_.c:874
msgid "SECURITY WARNING!"
-msgstr ""
+msgstr "!!!ĽťĽ­ĽĺĽęĽĆĽŁˇŮšđ!!!"
#: ../../printerdrake.pm_.c:875
#, c-format
@@ -8348,6 +8476,23 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"¤ł¤ě¤Ť¤éĽŃĽšĽďĄźĽÉ¤Ä¤­¤ÎĽŚĽŁĽóĽÉĽŚĽş¤ÎĽ˘ĽŤĽŚĽóĽČžĺ¤Ç¤Î°őşţŔßÄę¤ňšÔ¤¤¤Ţ¤šĄŁ"
+"SambaĽŻĽéĽ¤Ľ˘ĽóĽČĽ˝ĽŐĽČĽŚĽ§Ľ˘¤ÎĽ˘ĄźĽ­ĽĆĽŻĽÁĽăžĺ¤Îˇç´Ů¤Î¤ż¤áĄ˘ĽŃĽšĽďĄźĽÉ¤Ď°őşţ"
+"Ľ¸ĽçĽÖ¤ňĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ¤ËÁ÷¤ëťţ¤ËťČ¤ď¤ě¤ëSambaĽŻĽéĽ¤Ľ˘ĽóĽČ¤ÎĽłĽŢĽóĽÉĽéĽ¤Ľó"
+"¤Ëʿʸ¤Î¤Ţ¤Ţ¤ÇĆţ¤ę¤Ţ¤šĄŁ¤Ŕ¤Ť¤é¤ł¤ÎĽŢĽˇĽóžĺ¤ÎÁ´ĽćĄźĽś¤ĎĄ˘ĄÖps auxwwwĄ×ĽłĽŢĽóĽÉ"
+"¤ňźÂšÔ¤š¤ë¤ČĄ˘ĽŃĽšĽďĄźĽÉ¤ňÉ˝ź¨¤Ç¤­¤Ć¤ˇ¤Ţ¤¤¤Ţ¤šĄŁ\n"
+"\n"
+"¤Ç¤­¤ě¤Đ°Ę˛ź¤ÎÂĺÂŘĘýź°¤ň¤Ş¤š¤š¤á¤ˇ¤Ţ¤šĄĘ¤¤¤ş¤ě¤Îžěšç¤Ë¤âĄ˘¤ż¤Č¤¨¤ĐĽŐĽĄĽ¤Ľ˘Ąź"
+"ĽŚĽŠĄźĽë¤Ę¤É¤ňťČ¤Ă¤ĆĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ë¤Î¤ŹĽíĄźĽŤĽëĽÍĽĂĽČĽďĄź"
+"ĽŻžĺ¤ÎĽŢĽˇĽó¤Ŕ¤ą¤Ç¤˘¤ë¤ł¤Č¤ňłÎǧ¤ˇ¤Ţ¤ˇ¤ç¤Ś):\n"
+"\n"
+"ĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐžĺ¤ÇĄÖGUESTĄ×¤Ę¤ÉĽŃĽšĽďĄźĽÉ¤Î¤Ę¤¤Ľ˘ĽŤĽŚĽóĽČ¤äĄ˘°őşţŔěÍѤμ˘"
+"ĽŤĽŚĽóĽČ¤ňťČ¤Ś¤ł¤ČĄŁ¸ÄżÍ¤ÎĽ˘ĽŤĽŚĽóĽČ¤ä´ÉÍýźÔĽ˘ĽŤĽŚĽóĽČ¤Ť¤éĽŃĽšĽďĄźĽÉĘݸî¤ňźč"
+"¤ę˝ü¤¤¤Ć¤Ď¤¤¤ą¤Ţ¤ť¤óĄŁ\n"
+"\n"
+"ĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ¤ÎŔßÄę¤ÇĄ˘Ľ×ĽęĽóĽż¤ŹLPDĽ×ĽíĽČĽłĽë¤ÇÄ󜥤ľ¤ě¤ë¤č¤Ś¤Ë¤š¤ëĄŁ¤˝"
+"¤ˇ¤Ć¤łŁîĽŢĽˇĽó¤Ť¤é¤Î°őşţŔßÄę¤ňPrinterdrake¤Î \"%s\" ŔÜÂłĽżĽ¤Ľ×¤ÇšÔ¤ŚĄŁ\n"
+"\n"
#: ../../printerdrake.pm_.c:885
#, c-format
@@ -8357,6 +8502,9 @@ msgid ""
"type in Printerdrake.\n"
"\n"
msgstr ""
+"ĽŚĽŁĽóĽÉĽŚĽşĽľĄźĽĐ¤ňŔßÄꤡ¤ĆĽ×ĽęĽóĽż¤ŹIPPĽ×ĽíĽČĽłĽë¤ÇÄ󜥤ľ¤ě¤ë¤č¤Ś¤Ë¤š¤ëĄŁ¤˝"
+"¤ˇ¤Ć¤łŁîĽŢĽˇĽó¤Ť¤é¤Î°őşţŔßÄę¤ňPrinterdrake¤Î \"%s\" ŔÜÂłĽżĽ¤Ľ×¤ÇšÔ¤ŚĄŁ\n"
+"\n"
#: ../../printerdrake.pm_.c:888
msgid ""
@@ -8365,6 +8513,10 @@ msgid ""
"\n"
"Do you really want to continue setting up this printer as you are doing now?"
msgstr ""
+"Ľ×ĽęĽóĽż¤ňLinuxĽľĄźĽĐ¤ËŔÜÂł¤ˇ¤ĆĄ˘ĽŚĽŁĽóĽÉĽŚĽşĽŢĽˇĽó¤ň¤˝¤ÎĽŻĽéĽ¤Ľ˘ĽóĽČ¤Č¤ˇ¤ĆŔÜ"
+"Âł¤š¤ë¤č¤Ś¤Ë¤š¤ëĄŁ\n"
+"\n"
+"¤¤¤Ţ¤ÎžőÂ֤Ǽ׼ęĽóĽż¤ÎŔßÄę¤ňÂł¤ą¤Ţ¤š¤Ť?"
#: ../../printerdrake.pm_.c:960
msgid "NetWare Printer Options"
@@ -8398,14 +8550,14 @@ msgid "NCP queue name missing!"
msgstr "NCP Ľ­ĽĺĄźĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
-#, fuzzy, c-format
+#, c-format
msgid ", host \"%s\", port %s"
-msgstr ", TCP/IP ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
+msgstr ", ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
-#, fuzzy, c-format
+#, c-format
msgid "Host \"%s\", port %s"
-msgstr ", TCP/IP ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
+msgstr "ĽŰĽšĽČĄÖ%sĄ×, ĽÝĄźĽČ %s"
#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
@@ -8416,29 +8568,29 @@ 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 ""
+"°ěÍ÷¤Ť¤éźŤĆ°¸Ą˝ĐĽ×ĽęĽóĽż¤ň¤É¤ě¤ŤÁޤ֤ŤĄ˘ĆţÎĎĽŐĽŁĄźĽëĽÉ¤ËĽŰĽšĽČĚž¤ŤIP ¤ČĽŞĽ×"
+"ĽˇĽçĽó¤ÇĽÝĄźĽČČÖšćĄĘĽÇĽŐĽŠĽëĽČ¤Ď9100ĄË¤ňĆţÎϤš¤ëĄŁ"
#: ../../printerdrake.pm_.c:1085
-#, fuzzy
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 ""
-"Ľ˝ĽąĽĂĽČĽ×ĽęĽóĽż¤Ç°őşţ¤š¤ë¤Ę¤éĄ˘Ľ×ĽęĽóĽż¤ÎĽŰĽšĽČĚž¤ČĄ˘žěšç¤Ë¤č¤Ă¤Ć¤Ď\n"
-"ĽÝĄźĽČČ֚椏ɏÍפˤʤę¤Ţ¤šĄŁHP JetDirect ĽľĄźĽĐ¤Ç¤ĎĄ˘ĽÝĄźĽČČÖšć¤Ď\n"
-"ÄĚžď9100¤Ç¤š¤ŹĄ˘¤Ű¤Ť¤ÎĽľĄźĽĐ¤Ŕ¤Č¤Ţ¤Á¤Ţ¤Á¤Ç¤šĄŁĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎĽŢĽËĽĺĽ˘Ľë¤ň\n"
-"¸Ť¤Ţ¤ˇ¤ç¤ŚĄŁ"
+"TCP¤Ţ¤ż¤ĎĽ˝ĽąĽĂĽČĽ×ĽęĽóĽż¤Ç°őşţ¤š¤ë¤Ę¤éĄ˘Ľ×ĽęĽóĽż¤ÎĽŰĽšĽČĚž¤ŤĄ˘IPČÖšć¤Čťţ¤Ë¤Ď"
+"ĽÝĄźĽČČÖšć (ĽÇĽŐĽŠĽëĽČ¤Ď9100) ¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁHP JetDirect ĽľĄźĽĐ¤Ç¤ĎĄ˘ĽÝĄź"
+"ĽČČÖšć¤Ď\n"
+"ÄĚžď9100¤Ç¤š¤ŹĄ˘¤Ű¤Ť¤ÎĽľĄźĽĐ¤Ŕ¤Č¤Ţ¤Á¤Ţ¤Á¤Ç¤šĄŁĽĎĄźĽÉĽŚĽ§Ľ˘¤ÎĽŢĽËĽĺĽ˘Ľë¤ň¸Ť¤Ţ"
+"¤ˇ¤ç¤ŚĄŁ"
#: ../../printerdrake.pm_.c:1090
-#, fuzzy
msgid "Printer host name or IP missing!"
-msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
+msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž¤ŤIP¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞ"
#: ../../printerdrake.pm_.c:1112
-#, fuzzy
msgid "Printer host name or IP"
-msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž"
+msgstr "Ľ×ĽęĽóĽżĽŰĽšĽČĚž¤ŤIP"
#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
@@ -8588,7 +8740,6 @@ msgstr ""
"Ľ×ĽęĽóĽż¤ňĽíĄźĽŤĽëĽÝĄźĽČ¤Ë¤Ä¤Ę¤°¤ŤŔÜÂł¤ľ¤ě¤Ć¤¤¤ëĽŢĽˇĽó¤ÇŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
#: ../../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."
@@ -8610,7 +8761,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "Zenographics ZJ-StreamˇÁź°¤ÎGDIĽěĄźĽśĽ×ĽęĽóĽż"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8634,6 +8785,22 @@ msgid ""
"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 ""
+"¤˘¤Ę¤ż¤ÎĽ×ĽęĽóĽż¤ĎĄ˘Zenographics ZJ-streamĽéĽšĽżˇÁź°¤ÇĽ×ĽęĽóĽż¤ËĽÇĄźĽż¤ňÁ÷"
+"¤ëĄ˘GDIĽěĄźĽśĽ×ĽęĽóĽż¤Î°ěźď¤Ç¤šĄŁ¤ł¤ÎĽ×ĽęĽóĽżÍѤμɼ鼤ĽĐ¤Ď¤Ţ¤ŔłŤČŻ¤Î˝é´ü¤Ę¤Î"
+"¤ÇĄ˘ÉŹ¤ş¤ˇ¤âŔľ¤ˇ¤ŻľĄÇ˝¤ˇ¤Ę¤¤¤Ť¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁĆä˥˘A4°Ęł°¤ÎÍŃťć¤Ç¤ĎťČ¤¨¤Ę¤¤¤Ť"
+"¤â¤ˇ¤ě¤Ţ¤ť¤óĄŁ\n"
+"\n"
+"¤â¤Č¤â¤Č¤ł¤ÎĽÉĽéĽ¤ĽĐ¤ňťČ¤ŚHP LaserJet 1000¤Ę¤É¤Ç¤ĎĄ˘Ľ×ĽęĽóĽż¤ÎĹŸť¤ňĆţ¤ě¤Ć¤Ť"
+"¤éĽŐĽĄĄźĽŕĽŚĽ§Ľ˘¤ÎĹžÁ÷¤ŹÉŹÍפˤʤę¤Ţ¤šĄŁHP LaserJet1000 ¤Îžěšç¤Ë¤ĎĽ×ĽęĽóĽż¤Î"
+"ĽŚĽŁĽóĽÉĽŚĽşĽÉĽéĽ¤ĽĐCD¤ňĂľ¤š¤ŤĄ˘ĽŚĽŁĽóĽÉĽŚĽşĽŃĄźĽĆĽŁĽˇĽçĽó¤ňĂľ¤ˇ¤Ć\"sihp1000."
+"img\" ¤Č¤¤¤ŚĽŐĽĄĽ¤Ľë¤ňĂľ¤ˇĄ˘°Ę˛ź¤ÎĽłĽŢĽóĽÉ¤Î¤¤¤ş¤ě¤Ť¤Ç¤˝¤ÎĽŐĽĄĽ¤Ľë¤ňĽ×ĽęĽóĽż"
+"¤ËÁ÷¤ę¤Ţ¤š:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"şÇ˝é¤ÎĽłĽŢĽóĽÉ¤Ď¤Ŕ¤ě¤Ç¤âźÂšÔ¤Ç¤­¤Ţ¤šĄŁĆóČÖĚܤĎroot¤Ç¤Ę¤¤¤ČźÂšÔ¤Ç¤­¤Ţ¤ť¤óĄŁ¤ł"
+"¤ě¤Ź˝Ş¤ď¤Ă¤ż¤éÉáÄ̤˰őşţ¤Ç¤­¤Ţ¤šĄŁ\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -8791,14 +8958,14 @@ msgstr ""
"¤ż¤Č¤¨¤ĐĄÖ%s <file>Ą×¤Č¤¤¤Śśńšç¤Ç¤šĄŁ "
#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
-#, fuzzy, c-format
+#, 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 ""
"¤¤¤Ţ¤ÎĽ×ĽęĽóĽż¤ÇťČ¤¨¤ëĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň¸Ť¤ë¤Ë¤ĎĄ˘˛ź¤Î°ěÍ÷¤ňĆɤऍĄ˘\n"
-"¤˘¤ë¤¤¤ĎĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ%s\n"
+"¤˘¤ë¤¤¤ĎĄÖĽŞĽ×ĽˇĽçĽó°ěÍ÷¤ň°őşţĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ%s%s\n"
"\n"
#: ../../printerdrake.pm_.c:2300
@@ -8876,9 +9043,9 @@ msgstr ""
"¤ż¤Č¤¨¤ĐĄÖ%s <file>Ą×¤Č¤¤¤Śśńšç¤Ç¤šĄŁ\n"
#: ../../printerdrake.pm_.c:2343
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
-msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽóĄ§ \"%s\""
+msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽó/ĽŐĽŠĽČĽŤĄźĽÉĄ§ \"%s\""
#: ../../printerdrake.pm_.c:2344
#, c-format
@@ -8886,9 +9053,9 @@ msgid "Printing/Scanning on \"%s\""
msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽóĄ§ \"%s\""
#: ../../printerdrake.pm_.c:2346
-#, fuzzy, c-format
+#, c-format
msgid "Printing/Photo Card Access on \"%s\""
-msgstr "°Ę˛ź¤Ç°őşţĂć/ĽšĽ­ĽăĽóĄ§ \"%s\""
+msgstr "°Ę˛ź¤Ç°őşţĂć/ĽŐĽŠĽČĽŤĄźĽÉĽ˘ĽŻĽťĽšĄ§ \"%s\""
#: ../../printerdrake.pm_.c:2347
#, c-format
@@ -8898,7 +9065,7 @@ msgstr "°Ę˛ź¤ÎĽ×ĽęĽóĽż¤Ç°őşţĂ楧 \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8909,7 +9076,7 @@ msgid "Print option list"
msgstr "Ľ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó°ěÍ÷"
#: ../../printerdrake.pm_.c:2373
-#, fuzzy, c-format
+#, 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 "
@@ -8942,6 +9109,13 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"Ľ×ĽęĽóĽż¤ĎĄ˘PC¤Ť¤éĽŐĽŠĽČĽŤĄźĽÉĽÉĽéĽ¤ĽÖ¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ë¤č¤Ś¤ËźŤĆ°ŔßÄꤾ¤ě¤Ţ¤ˇ"
+"¤żĄŁ¤ł¤ě¤ÇĽ°ĽéĽŐĽŁĽĂĽŻĽ×ĽíĽ°ĽéĽŕ\"MtoolsFM\" (Menu: \"Ľ˘Ľ×ĽęĽąĄźĽˇĽçĽó\" -> "
+"\"ĽŐĽĄĽ¤ĽëĽÄĄźĽë\" -> \"MTools ĽŐĽĄĽ¤ĽëĽŢĽÍĄźĽ¸Ľă\") ¤ŤĄ˘ĽłĽŢĽóĽÉĽéĽ¤Ľó¤ÎĽćĄź"
+"ĽĆĽŁĽęĽĆĽŁ \"mtools\" (žÜ¤ˇ¤Ż¤ĎĽłĽŢĽóĽÉĽéĽ¤Ľó¤Ç\"man mtools\" ¤ČĆţÎĎ) ¤ňŁô"
+"¤Ť¤Ă¤ĆĽŐĽŠĽČĽŤĄźĽÉ¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤šĄŁĽŤĄźĽÉ¤ÎĽŐĽĄĽ¤ĽëĽˇĽšĽĆĽŕ¤ĎĄ˘ĽÉĽéĽ¤ĽÖʸ"
+"ťú \"p:\"°Ęšß¤Č¤Ę¤ę¤Ţ¤šĄŁ\"MtoolsFM\" ¤Ç¤ĎĽŐĽĄĽ¤Ľë°ěÍ÷¤ÎąŚžĺ¤š¤ß ¤ÎĽŐĽŁĄźĽëĽÉ"
+"¤ÇĽÉĽéĽ¤ĽÖʸťú¤ňĘѤ¨¤é¤ě¤Ţ¤šĄŁ"
#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
#: ../../printerdrake.pm_.c:3170
@@ -9213,7 +9387,7 @@ msgid "Which printing system (spooler) do you want to use?"
msgstr "¤É¤Î°őşţĽˇĽšĽĆĽŕĄĘĽšĽ×ĄźĽéĄË¤ňťČ¤¤¤Ţ¤š¤ŤĄŠ"
#: ../../printerdrake.pm_.c:2895
-#, fuzzy, c-format
+#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ÎŔßÄęĂć..."
@@ -9227,7 +9401,6 @@ msgid "Printer options"
msgstr "Ľ×ĽęĽóĽżĽŞĽ×ĽˇĽçĽó"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
msgstr "PrinterDrake˝ŕČ÷Ăć..."
@@ -9339,7 +9512,7 @@ msgid "Remove printer"
msgstr "Ľ×ĽęĽóĽżşď˝ü"
#: ../../printerdrake.pm_.c:3472
-#, fuzzy, c-format
+#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "¸Ĺ¤¤Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
@@ -9392,7 +9565,7 @@ msgid "Do you really want to remove the printer \"%s\"?"
msgstr "Ľ×ĽęĽóĽż %s ¤ňËÜĹö¤Ëşď˝ü¤ˇ¤Ţ¤š¤ŤĄŠ"
#: ../../printerdrake.pm_.c:3527
-#, fuzzy, c-format
+#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Ľ×ĽęĽóĽż \"%s\" ¤ňşď˝üĂć..."
@@ -9445,11 +9618,6 @@ msgstr ""
"ftp Ľ×ĽíĽŻĽˇžđĘó¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
"ftp proxy¤ňťČ¤ď¤Ę¤¤¤Ę¤éśőÍó¤Ë¤ˇ¤Ć¤Ş¤¤¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Url ¤Ď http://... ¤Ç¤Ď¤¸¤Ţ¤ę¤Ţ¤š"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9497,6 +9665,42 @@ msgstr "mkraid ¤ËźşÇÔ (raidtools ¤ŹĆţ¤Ă¤Ć¤Ę¤¤¤Î¤Ť¤â?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID ĽěĽŮĽë %d ¤Î¤ż¤á¤Ë¤ĎĽŃĄźĽĆĽŁĽˇĽçĽó¤ŹÉÔ­¤Ç¤š\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "ĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ:"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "ĽťĽ­ĽĺĽęĽĆĽŁżĺ˝ŕ"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ´ÉÍýźÔĄĘĽíĽ°Ľ¤Ľó¤ŤĹŝҼᥟĽëĄË"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (ĽÇĽŐĽŠĽëĽČ)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ÎŔßÄęĂć"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Ľ¤ĽóĽšĽČĄźĽë¤Î˝ŕČ÷Ă楢žŻĄš¤ŞÂÔ¤Á¤ň"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA (ŔčżĘLinux ĽľĽŚĽóĽÉĽ˘ĄźĽ­ĽĆĽŻĽÁĽă) ĽľĽŚĽóĽÉĽˇĽšĽĆĽŕľŻĆ°"
@@ -9792,7 +9996,7 @@ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ"
msgid "File sharing"
msgstr "ĽŐĽĄĽ¤ĽëśŚÍ­"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "ĽˇĽšĽĆĽŕ"
@@ -9869,64 +10073,56 @@ msgstr "ĽŐĽęĄźĽ˝ĽŐĽČ¤ÎŔ¤łŚ¤Ëť˛˛Ă¤ˇ¤Ţ¤ˇ¤ç¤Ś"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "ĽŞĄźĽ×ĽóĽ˝ĄźĽšĽłĽßĽĺĽËĽĆĽŁ¤Ë¤Ä¤¤¤Ć¤â¤Ă¤ČžÜ¤ˇ¤ŻĂΤꤿ¤¤¤Ç¤š¤ŤĄŠ"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
-"ĽŞĄźĽ×ĽóĽ˝ĄźĽšĽłĽßĽĺĽËĽĆĽŁ¤Î¤ł¤Č¤ň¤â¤Ă¤ČĂΤäƥ˘¤˝¤Î°ě°÷¤Ë¤Ę¤ę¤Ţ¤ˇ¤ç¤ŚĄŁĄÖĽł"
-"ĽßĽĺĽËĽĆĽŁĄ×ĽŚĽ§ĽÖĽÚĄźĽ¸¤Ë¤˘¤ëłĆźďĽŐĽŠĄźĽéĽŕ¤Ëť˛˛Ă¤ˇ¤ĆĄ˘łŘ¤ÓĄ˘śľ¤¨Ą˘¤Ű¤Ť¤Î"
-"żÍĄš¤ň˝ő¤ą¤Ţ¤ˇ¤ç¤ŚĄŁ"
+"źŤĘŹ¤ÎĂÎźą¤ňśŚÍ­¤ˇ¤ĆLinuxĽÄĄźĽë¤Îš˝Ăۤň˝ő¤ą¤ë¤Ë¤ĎĄ˘ĄÖĽłĽßĽĺĽËĽĆĽŁĄ×ĽŚĽ§ĽÖĽÚĄź"
+"Ľ¸¤Ë¤˘¤ëĽŐĽŠĄźĽéĽŕ¤Ëť˛˛Ă¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ŘŔÜÂł"
+msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČ¤ňşÇÂç¸Â¤ËłčÍŃ"
#: ../../share/advertising/03-internet.pl_.c:10
-#, fuzzy
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"
msgstr ""
-"Mandrake Linux 9.0 ¤ĎĽ¤ĽóĽżĄźĽÍĽĂĽČ¤ÎÄ󜥤š¤ë¤â¤Î¤š¤Ů¤Ć¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤ëşÇšâ¤Î"
-"Ľ˝ĽŐĽČ¤ňźč¤ę¤˝¤í¤¨¤Ć¤¤¤Ţ¤šĄŁĽŚĽ§ĽÖ¤ňĽľĄźĽŐĽŁĽó¤ˇ¤ĆĄ˘Ć°˛č¤ň¸Ť¤ë¤Ę¤éMozilla ¤Č "
-"Konqueror ¤Ź¤˘¤ë¤ˇĄ˘ĽáĄźĽë¤ÎÁ÷źőżŽ¤Č¸ÄżÍžđĘó´ÉÍý¤ĎEvolution ¤Č Kmail, ¤˝¤Îž"
-"¤Ę¤ó¤Ç¤â¤˘¤ę¤Ţ¤šĄŁ"
+"Mandrake Linux 9.0 ¤ĎşÇšâ¤ÎĽ˝ĽŐĽČ¤ňźč¤ę¤˝¤í¤¨¤Ć¤¤¤Ţ¤šĄŁĽŚĽ§ĽÖ¤ňĽľĄźĽŐ¤ˇ¤ĆĄ˘Ć°"
+"˛č¤ň¸Ť¤ë¤Ę¤éMozilla ¤Č Konqueror ¤Ź¤˘¤ë¤ˇĄ˘ĽáĄźĽë¤ÎÁ÷źőżŽ¤Č¸ÄżÍžđĘó´ÉÍý¤Ď"
+"Evolution ¤Č Kmail¤ŹťČ¤¨¤Ţ¤šĄŁ"
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "şÇżˇ¤ÎĽ°ĽéĽŐĽŁĽĂĽŻ¤äĽŢĽëĽÁĽáĽÇĽŁĽ˘ĽÄĄźĽë¤ň¤É¤Ś¤ž"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "ĽŢĽëĽÁĽáĽÇĽŁĽ˘¤ňťČ¤¤Ĺݤˇ¤Ţ¤ˇ¤ç¤ŚĄŞ"
#: ../../share/advertising/04-multimedia.pl_.c:11
-#, fuzzy
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 ""
-"Mandrake Linux 8.2 ¤ĎĄ˘ĽŢĽëĽÁĽáĽÇĽŁĽ˘ľĄÇ˝¤ňśË¸Â¤Ţ¤ÇťČ¤¤Ĺݤˇ¤Ţ¤šĄŞşÇżˇĽ˝ĽŐĽČ¤Ç"
-"˛ťłÚ¤ä˛ťŔźĽŐĽĄĽ¤Ľë¤ÎşĆŔ¸¤ň¤ˇ¤ż¤ęĄ˘˛čÁü¤äźĚżż¤ň´ÉÍý¤ˇ¤ż¤ęĄ˘ĽĆĽěĽÓ¤ň¸Ť¤ż¤ęĄ˘¤˝"
-"¤Îž¤Ę¤ó¤Ç¤â¤Ç¤­¤Ţ¤šĄŁ"
+"Mandrake Linux 9.0 ¤Ç¤ĎĄ˘şÇżˇĽ˝ĽŐĽČ¤Ç˛ťłÚ¤ä˛ťŔźĽŐĽĄĽ¤Ľë¤ÎşĆŔ¸¤ň¤ˇ¤ż¤ęĄ˘˛čÁü¤ä"
+"źĚżż¤ň´ÉÍý¤ˇ¤ż¤ęĄ˘ĽĆĽěĽÓ¤ň¸Ť¤ż¤ę¤Ç¤­¤Ţ¤šĄŁ"
#: ../../share/advertising/05-games.pl_.c:9
msgid "Games"
msgstr "Ľ˛ĄźĽŕ"
#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
-"Mandrake Linux 8.2 ¤Ë¤ĎĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšĽ˛ĄźĽŕ¤Ź¤Ä¤¤¤Ć¤­¤Ţ¤šĄŁĽ˘ĄźĽąĄźĽÉ"
+"Mandrake Linux 9.0 ¤Ë¤ĎĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšĽ˛ĄźĽŕ¤Ź¤Ä¤¤¤Ć¤­¤Ţ¤šĄŁĽ˘ĄźĽąĄźĽÉ"
"ˇżĄ˘Ľ˘ĽŻĽˇĽçĽóˇżĄ˘ĽŤĄźĽÉĽ˛ĄźĽŕĄ˘ĽšĽÝĄźĽÄĄ˘ŔďÎŹĽ˛ĄźĽŕ..."
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
@@ -9934,12 +10130,11 @@ msgid "Mandrake Control Center"
msgstr "Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź"
#: ../../share/advertising/06-mcc.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
"your machine"
msgstr ""
-"Mandrake Linux 8.2 ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ĎĄ˘Mandrake ĽˇĽšĽĆĽŕ¤ÎĽŤĽšĽżĽŢĽ¤Ľş¤Č"
+"Mandrake Linux 9.0 ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ĎĄ˘Mandrake ĽˇĽšĽĆĽŕ¤ÎĽŤĽšĽżĽŢĽ¤Ľş¤Č"
"ŔßÄę¤Î¤ż¤á¤ÎĽďĽóĽšĽČĽĂĽ×ĽŃĽÍĽë˝¸¤Ç¤šĄŁ"
#: ../../share/advertising/07-desktop.pl_.c:9
@@ -9948,36 +10143,35 @@ msgstr "ĽćĄźĽśĽ¤ĽóĽżĄźĽŐĽ§Ľ¤Ľš"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"Mandrake Linux 9.0¤Ë¤Ď11źďÎŕ¤ÎĽćĄźĽśĽ¤ĽóĽżĄźĽŐĽ§ĄźĽš¤Ź¤Ä¤¤¤Ć¤­¤ĆĄ˘¤É¤ě¤âšĽ¤­"
+"¤Ę¤č¤Ś¤ËĘŃšš¤Ç¤­¤Ţ¤š: KDE 3, Gnome 2, WindowMaker, ..."
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "łŤČŻÍŃ"
+msgstr "łŤČŻ¤âłÚ¤Ë¤Ę¤ę¤Ţ¤ˇ¤ż"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
+msgstr "Mandrake Linux 9.0¤ĎľćśË¤ÎłŤČŻÍѼ׼éĽĂĽČĽŰĄźĽŕ¤Ç¤š"
#: ../../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 ĽłĽóĽŃĽ¤Ľé¤ň¤Ď¤¸"
-"¤áĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšłŤČŻ´Äś­¤Î°ŇÎϤňČŻ¸Ť¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
+"GNU gcc 3 ĽłĽóĽŃĽ¤Ľé¤ň¤Ď¤¸¤áĄ˘şÇšâ¤ÎĽŞĄźĽ×ĽóĽ˝ĄźĽšłŤČŻ´Äś­¤Î°ŇÎϤňťČ¤¤¤Ţ¤ˇ¤ç"
+"¤ŚĄŁ"
#: ../../share/advertising/09-server.pl_.c:9
msgid "Turn your machine into a reliable server"
-msgstr ""
+msgstr "ĽŢĽˇĽó¤ňššżˇĽéĽ¤ĽľĄźĽĐ¤Ë"
#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"ĽŢĽŚĽš¤ň¤Ű¤ó¤ÎżôĽŻĽęĽĂĽŻ¤š¤ë¤Ŕ¤ą¤ÇĄ˘¤˘¤Ę¤ż¤ÎĽŢĽˇĽó¤ĎśŻÎϤʼľĄźĽĐ¤ËÁáĘѤď¤ęĄŞ"
@@ -9986,40 +10180,42 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "ĽťĽ­ĽĺĽęĽĆĽŁ¤ÎşÇĹŹ˛˝"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
msgstr ""
+"MandrakeSecurity Ŕ˝ÉĘ¤Ë¤Ď 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 "
+"This firewall product includes network features that 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 ""
+msgstr "¤ł¤ÎŔ˝ÉʤĎMandrakeStoreĽŚĽ§ĽÖĽľĽ¤ĽČžĺ¤Ë¤˘¤ę¤Ţ¤š"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "¸řź°MandrakeSoftžŚĹš"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"ĽŐĽëĽěĽóĽ¸¤ÎLinux Ľ˝ĽęĽĺĄźĽˇĽçĽó¤äĄ˘Ŕ˝ÉʤäłĆźďĽ˘Ľ¤ĽĆĽŕ¤ÎĆòÁČÎÇ䤏Ą˘ĘŔźŇ¤ÎĽŞ"
-"ĽóĽéĽ¤ĽóžŚĹš¤Çźę¤ËĆţ¤ę¤Ţ¤šĄŁ"
+"ĽóĽéĽ¤Ľó e-žŚĹš¤Çźę¤ËĆţ¤ę¤Ţ¤šĄŁ"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "ŔďÎŹĽŃĄźĽČĽĘĄź"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -10027,20 +10223,24 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoft ¤ĎłĆźď¤Î´ëśČ¤ČÄóˇČ¤ˇ¤ĆMandrake Linux¤Č¸ß´šŔ­¤Î¤˘¤ëšâĹ٤ʼ˝ĽęĽĺĄź"
+"ĽˇĽçĽó¤ňÄ󜥤ˇ¤Ţ¤šĄŁ¤ł¤Ś¤ˇ¤żĽŃĄźĽČĽĘĄź¤Î°ěÍ÷¤âMandrakeStore¤Ë¤˘¤ę¤Ţ¤š"
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "MandrakeSoft¤Î¸Ś˝¤ĽŤĽżĽíĽ°Linux-Campus¤ň¤É¤Ś¤ž"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"łĆźď¸Ś˝¤Ľ×ĽíĽ°ĽéĽŕ¤ĎĄ˘ĽćĄźĽś¤ČŔěĚç˛ČĄĘĽÍĽĂĽČĽďĄźĽŻ¤äĽˇĽšĽĆĽŕ´ÉÍýźÔĄË¤ÎĽËĄźĽş"
+"¤Ëšç¤Ś¤č¤Ś¤Ëşî¤é¤ě¤Ć¤¤¤Ţ¤š"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "Linux¤ÎľťÇ˝Ç§Äę¤ňĆŔ¤č¤Ś"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -10048,43 +10248,47 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"ĽŞĽóĽéĽ¤Ľó¤Ë¤ť¤čĽÍĽĂĽČĽďĄźĽŻ¸Ś˝¤ĽŃĄźĽČĽĘĄź¤ňÄ̤¸¤Ć¤Ë¤ť¤čĄ˘Linux-Campus ĽŤĽżĽí"
+"Ľ°¤ĎĄ˘Ç§ĂÎĹ٤Κ⤤LPIǧÄęĽ×ĽíĽ°ĽéĽŕĄĘŔ¤łŚĹŞŔěĚçľť˝ŃťńłĘ¤ÎźčĆŔ˝ŕČ÷¤ÎźŤ˝Ź¤ËşÇĹŹ"
+"¤Ç¤š"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "MandrakeĽ¨Ľ­ĽšĽŃĄźĽČ"
+msgstr "MandrakeĽ¨Ľ­ĽšĽŃĄźĽČ¤Ë¤Ę¤í¤Ś"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
-msgstr ""
+msgstr "MandrakeSoft¤ÎĽŞĽóĽéĽ¤ĽóĽľĽÝĄźĽČĽ×ĽéĽĂĽČĽŰĄźĽŕ¤ÇĚäÂę˛ňˇč"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your 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 ""
+"MandrakeSoft ĽľĽÝĄźĽČĽÁĄźĽŕ¤ČLinux ĽłĽßĽĺĽËĽĆĽŁ¤ËĽŞĽóĽéĽ¤Ľó¤Çť˛˛Ă¤ˇĄ˘ĂÎźą¤ňśŚ"
+"Í­¤ˇ¤Ćž¤ÎżÍ¤ň˝ő¤ą¤Ţ¤ˇ¤ç¤ŚĄŁ¤˝¤ě¤Ë¤ĎĄ˘ĽŞĽóĽéĽ¤Ľóľť˝ŃĽľĽÝĄźĽČĽŚĽ§ĽÖĽľĽ¤ĽČžĺ¤Ç"
+"ǧĂΤľ¤ě¤żŔěĚç˛Č¤Ë¤Ę¤ę¤Ţ¤ˇ¤ç¤Ś:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "MandrakeĽ¨Ľ­ĽšĽŃĄźĽČ"
+msgstr "Mandrake´ëśČĽ¨Ľ­ĽšĽŃĄźĽČ"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
-msgstr ""
+msgstr "´ëśČ¸ÇÍ­¤ÎĽľĽÝĄźĽČĽËĄźĽş¤Ëąţ¤¨¤ëĽŞĽóĽéĽ¤ĽóĽ×ĽéĽĂĽČĽŰĄźĽŕ"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
-msgstr ""
+msgstr "¤š¤Ů¤Ć¤ÎťöžÝ¤Ź°ěżÍ¤ÎšâľťÇ˝MandrakeSoftľť˝ŃŔěĚç˛Č¤Ë¤č¤Ă¤ĆÄÉŔפľ¤ě¤Ţ¤šĄŁ"
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "MandrakeClub ¤Č Mandrake Corporate Club"
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -10095,174 +10299,169 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub ¤Č Mandrake Corporate Club ¤ĎĄ˘Mandrake Linux¤ÎĽÓĽ¸ĽÍĽš¤ä¸ÄżÍ"
+"ĽćĄźĽś¤Ź¤Şľ¤¤ËĆţ¤ę¤ÎLinuxĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¤ňĽľĽÝĄźĽČ¤ˇ¤Ä¤ÄĄ˘¤Á¤ç¤Ă¤Č¤ˇ¤ż"
+"ĽáĽęĽĂĽČ¤ňźę¤ËĆţ¤ě¤ë¤ż¤á¤Ëşî¤é¤ě¤Ţ¤ˇ¤żĄŁĘŔźŇŔ˝ÉʤŹ¤Şľ¤¤Ëž¤¤ˇ¤ż¤é¤˘¤ë¤¤¤Ď¸ćźŇ"
+"¤ŹĘŔźŇŔ˝ÉʤǜĽÁčÎϤňĆŔ¤Ć¤¤¤ë¤Ę¤éĄ˘¤˘¤ë¤¤¤ĎMandrake Linux¤ÎłŤČŻ¤ňĽľĽÝĄźĽČ¤ˇ¤ż"
+"¤ą¤ě¤ĐĄ˘MandrakeClub¤Ëť˛˛Ă¤ˇ¤Ţ¤ˇ¤ç¤Ś!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽëĂć..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "ĽíĽ°Ľ˘ĽŚĽČ¤ˇ¤żžĺ¤Ç Ctrl-Alt-BackSpace ¤ň˛Ą¤ˇ¤Ć˛ź¤ľ¤¤"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "ĘŃšš¤ňÍ­¸ú¤Ë¤š¤ë¤Ë¤Ď %s ¤ËĽíĽ°Ľ¤Ľó¤ˇ¤Ę¤Ş¤ˇ¤Ć˛ź¤ľ¤¤"
#: ../../standalone/drakTermServ_.c:188
-#, fuzzy
msgid "Mandrake Terminal Server Configuration"
-msgstr "Ľ×ĽęĽóĽż¤ÎŔßÄę¤ň°ÜĆ°"
+msgstr "MandrakeĽżĄźĽßĽĘĽëĽľĄźĽĐŔßÄę"
#: ../../standalone/drakTermServ_.c:203
-#, fuzzy
msgid "Enable Server"
-msgstr "ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ"
+msgstr "ĽľĄźĽĐ¤ňÍ­¸ú¤Ë"
#: ../../standalone/drakTermServ_.c:210
-#, fuzzy
msgid "Disable Server"
-msgstr "ĽÇĄźĽżĽŮĄźĽšĽľĄźĽĐ"
+msgstr "ĽľĄźĽĐ¤ňĚľ¸ú¤Ë"
#: ../../standalone/drakTermServ_.c:218
-#, fuzzy
msgid "Start Server"
-msgstr "NIS ĽľĄźĽĐ"
+msgstr "ĽľĄźĽĐľŻĆ°"
#: ../../standalone/drakTermServ_.c:225
-#, fuzzy
msgid "Stop Server"
-msgstr "NIS ĽľĄźĽĐ"
+msgstr "ĽľĄźĽĐÄäťß"
#: ../../standalone/drakTermServ_.c:233
msgid "Etherboot Floppy/ISO"
-msgstr ""
+msgstr "Etherboot Floppy/ISO"
#: ../../standalone/drakTermServ_.c:235
msgid "Net Boot Images"
-msgstr ""
+msgstr "ĽÍĽĂĽČĽÖĄźĽČĽ¤ĽáĄźĽ¸"
#: ../../standalone/drakTermServ_.c:239
-#, fuzzy
msgid "Add/Del Users"
-msgstr "ĽćĄźĽś¤ňÄɲĂ"
+msgstr "ĽćĄźĽś¤ňÄɲĂ/şď˝ü"
#: ../../standalone/drakTermServ_.c:241
-#, fuzzy
msgid "Add/Del Clients"
-msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
-
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "ĽŘĽëĽ×"
+msgstr "ĽŻĽéĽ¤Ľ˘ĽóĽČÄɲĂ/şď˝ü"
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
-msgstr ""
+msgstr "ľŻĆ°ĽŐĽíĽĂĽÔĄź"
#: ../../standalone/drakTermServ_.c:438
msgid "Boot ISO"
-msgstr ""
+msgstr "ľŻĆ° ISO"
#: ../../standalone/drakTermServ_.c:507
msgid "Build Whole Kernel -->"
-msgstr ""
+msgstr "ĽŤĄźĽÍĽëÁ´ÂΤňš˝ĂŰ -->"
#: ../../standalone/drakTermServ_.c:509 ../../standalone/drakTermServ_.c:539
msgid "This will take a few minutes."
-msgstr ""
+msgstr "¤ł¤ě¤Ë¤Ď¤ˇ¤Đ¤é¤Ż¤Ť¤Ť¤ę¤Ţ¤šĄŁ"
#: ../../standalone/drakTermServ_.c:521
msgid "No kernel selected!"
-msgstr ""
+msgstr "ĽŤĄźĽÍĽë¤Ź°ě¤Ä¤âÁŞ¤Đ¤ě¤Ć¤¤¤Ţ¤ť¤óĄŞ"
#: ../../standalone/drakTermServ_.c:524
msgid "Build Single NIC -->"
-msgstr ""
+msgstr "Ăą°ěNIC¤ňš˝ĂŰ -->"
#: ../../standalone/drakTermServ_.c:535
-#, fuzzy
msgid "No nic selected!"
-msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
+msgstr "nic ¤ŹÁŞ¤Đ¤ě¤Ć¤¤¤Ţ¤ť¤ó!"
#: ../../standalone/drakTermServ_.c:538
msgid "Build All Kernels -->"
-msgstr ""
+msgstr "Á´ĽŤĄźĽÍĽëš˝ĂŰ -->"
#: ../../standalone/drakTermServ_.c:552
-#, fuzzy
msgid "<-- Delete"
-msgstr "şď˝ü"
+msgstr "<-- şď˝ü"
#: ../../standalone/drakTermServ_.c:559
-#, fuzzy
msgid "Delete All NBIs"
-msgstr "¤š¤Ů¤Ć¤ňÁŞÂň"
+msgstr "NBI ¤š¤Ů¤Ćşď˝ü"
#: ../../standalone/drakTermServ_.c:621
-#, fuzzy
msgid "Add User -->"
-msgstr "ĽćĄźĽś¤ňÄɲĂ"
+msgstr "ĽćĄźĽśÄɲà -->"
#: ../../standalone/drakTermServ_.c:629
msgid "<-- Del User"
-msgstr ""
+msgstr "<-- ĽćĄźĽśşď˝ü"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+#, fuzzy
+msgid "No net boot images created!"
+msgstr "ĽÍĽĂĽČĽÖĄźĽČĽ¤ĽáĄźĽ¸"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
-msgstr ""
+msgstr "ĽŻĽéĽ¤Ľ˘ĽóĽČÄɲà -->"
-#: ../../standalone/drakTermServ_.c:735
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
-msgstr "DHCP ĽŻĽéĽ¤Ľ˘ĽóĽČ"
+msgstr "<-- ĽŻĽéĽ¤Ľ˘ĽóĽČşď˝ü"
-#: ../../standalone/drakTermServ_.c:741
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
-msgstr "ŔßÄęĂć..."
+msgstr "dhcpd ŔßÄęĂć..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "žĺľéŔßÄę"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
-msgstr "şĆŔßÄę"
+msgstr "ŔßÄę˝ń¤­šţ¤ß"
-#: ../../standalone/drakTermServ_.c:960
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
-msgstr "ťČ¤Ă¤żľŻĆ°ĽŐĽíĽĂĽÔĄź¤ňĽÉĽéĽ¤ĽÖ %s ¤ËÁŢĆţ"
+msgstr "ĽŐĽíĽĂĽÔĄź¤ňÁŢĆţ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
-msgstr ""
+msgstr "ĽŐĽíĽĂĽÔĄź¤ËĽ˘ĽŻĽťĽš¤Ç¤­¤Ţ¤ť¤ó!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
-msgstr ""
+msgstr "ĽŐĽíĽĂĽÔĄź¤ňźč¤ę˝ü¤¤¤Ć¤âÂçžćÉפǤš"
-#: ../../standalone/drakTermServ_.c:969
-#, fuzzy
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Í­¸ú¤ĘĽŐĽíĽĂĽÔĄźĽÉĽéĽ¤ĽÖ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
-msgstr ""
+msgstr "Etherboot ISO Ľ¤ĽáĄźĽ¸¤Ď %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
-msgstr ""
+msgstr "˛ż¤ŤźşÇÔ¤ˇ¤Ţ¤ˇ¤żĄŞ -ĄĄmkisofs ¤ĎĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
-msgstr ""
+msgstr "şÇ˝é¤Ë /etc/dhcpd.conf ¤ňşî¤Ă¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŞ"
#: ../../standalone/drakautoinst_.c:43
msgid "Error!"
@@ -10314,9 +10513,8 @@ msgstr ""
"łĆĽšĽĆĽĂĽ×¤ÇĄ˘¤˘¤Ę¤ż¤ÎĽ¤ĽóĽšĽČĄźĽë¤ČĆą¤¸¤Ë¤š¤ë¤ŤĄ˘źęĆ°ŔßÄꤚ¤ë¤Ť¤ňÁŞ¤Ó¤Ţ¤šĄŁ"
#: ../../standalone/drakautoinst_.c:81 ../../standalone/drakautoinst_.c:82
-#, fuzzy
msgid "Creating auto install floppy"
-msgstr "Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎźŤĆ°şîŔŽ"
+msgstr "źŤĆ°Ľ¤ĽóĽšĽČĄźĽëĽŐĽíĽĂĽÔĄź¤ÎşîŔŽ"
#: ../../standalone/drakautoinst_.c:144
msgid ""
@@ -10357,20 +10555,19 @@ msgstr "şÇ¸ĺ¤ÎĽ˘Ľ¤ĽĆĽŕ¤ňşď˝ü"
#: ../../standalone/drakbackup_.c:617
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron ¤Ď¤Ţ¤Ŕroot°Ęł°¤Ç¤ĎťČ¤¨¤Ţ¤ť¤ó"
#: ../../standalone/drakbackup_.c:723
msgid "WARNING"
-msgstr ""
+msgstr "*** ˇŮšđ ***"
#: ../../standalone/drakbackup_.c:724
-#, fuzzy
msgid "FATAL"
-msgstr "FAT"
+msgstr "*** Ă×̿Ū ***"
#: ../../standalone/drakbackup_.c:725
msgid "INFO"
-msgstr ""
+msgstr "žđĘó"
#: ../../standalone/drakbackup_.c:737
msgid ""
@@ -10406,13 +10603,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
-#, fuzzy
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "żĘšÔžőśˇ"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10420,42 +10616,46 @@ 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 ¤Ď¤š¤Ç¤Ë¸şß¤ˇ¤Ţ¤šĄŁşď˝ü¤ˇ¤Ţ¤š¤Ť?\n"
+"\n"
+"ˇŮšđĄ§¤ł¤ÎĽ×ĽíĽťĽš¤ňÁ°¤Ë¤ä¤Ă¤ż¤ł¤Č¤Ź¤˘¤ě¤ĐĄ˘¤ż¤Ö¤óĽľĄźĽĐžĺ¤Î\n"
+"authorized_keys ¤Ť¤éĽ¨ĽóĽČĽę¤ňşď˝ü¤ˇ¤ż¤Ű¤Ś¤Ź¤¤¤¤¤Ç¤š¤čĄŁ"
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
-msgstr ""
+msgstr "¸°¤ÎŔ¸ŔŽ¤Ë¤ˇ¤Đ¤é¤Ż¤Ť¤Ť¤ę¤Ţ¤šĄŁ"
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
-msgstr ""
+msgstr "Ľ¨ĽéĄźĄ§%s ¤ňŸłŤ¤Ç¤­¤Ţ¤ť¤óĄŁ"
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "%s ¤ŹĽÝĄźĽČ %s¤ÇĽŃĽšĽďĄźĽÉĽ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤Ţ¤ť¤ó"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "ĽŃĽšĽďĄźĽÉ¤Ę¤ˇ"
+msgstr "%s ¤ÎĽŃĽšĽďĄźĽÉÉÔÎÉ"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "%s ¤ň %s ¤ËĹžÁ÷¤š¤ë¤Î¤ŹÇ§¤á¤é¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤ż"
-#: ../../standalone/drakbackup_.c:851
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:854
+#, c-format
msgid "Can't find %s on %s"
-msgstr "%s ¤ŹłŤ¤ą¤Ţ¤ť¤ó: %s\n"
+msgstr "%s ¤Ź %sžĺ¤Ç¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "%s ¤ŹąţĹú¤ˇ¤Ţ¤ť¤ó"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10465,84 +10665,91 @@ msgid ""
"\n"
"without being prompted for a password."
msgstr ""
+"ĹžÁ÷¤ËŔŽ¸ů¤ˇ¤Ţ¤ˇ¤żĄŁ\n"
+"°Ę˛ź¤ÎĽłĽŢĽóĽÉ¤ÇĄ˘ĽľĄźĽĐ¤ËĽíĽ°Ľ¤Ľó¤Ç¤­¤ë¤ŤłÎǧ¤ˇ¤Ć¤ß¤Ć¤Ż¤Ŕ¤ľ¤¤:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"ĽŃĽšĽďĄźĽÉ¤ÎĽ×ĽíĽóĽ×ĽČ¤Ź˝Đ¤Ę¤ą¤ě¤ĐŔŽ¸ů¤Ç¤šĄŁ"
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "WebDAVĽęĽâĄźĽČĽľĽ¤ĽČ¤Č¤š¤Ç¤ËĆą´üşŃ¤ß!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "WebDAVĹžÁ÷źşÇÔ!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "CDR/DVDR ¤ŹĽÉĽéĽ¤ĽÖ¤Ë¤˘¤ę¤Ţ¤ť¤ó!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "ľ­Ďż˛ÄÇ˝ĽáĽÇĽŁĽ˘¤Ç¤Ď¤Ę¤¤¤č¤Ś¤Ç¤š!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
-msgstr ""
+msgstr "žĂľî˛ÄÇ˝ĽáĽÇĽŁĽ˘¤Ç¤Ď¤Ę¤¤¤č¤Ś¤Ç¤š!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
-msgstr ""
+msgstr "ĽáĽÇĽŁĽ˘¤ÎžĂľî¤Ë¤Ď¤ˇ¤Đ¤é¤Ż¤Ť¤Ť¤ę¤Ţ¤šĄŁ"
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "CDĽ˘ĽŻĽťĽš¸˘¸Â¤ÎĚäÂꤏȯŔ¸¤ˇ¤Ţ¤ˇ¤żĄŁ"
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "%s ¤ËĽĆĄźĽ×¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "ĽćĄźĽśĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎżĘšÔ..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "ž¤ÎĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "ĽĆĄźĽ×¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
+msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ëĘŃšš¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
"Drakbackup activities via %s:\n"
"\n"
msgstr ""
+"\n"
+"%s ˇĐÍł¤ÎDrakbackup:\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1342
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:1346
+#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-"FTP ¤ÇÁ÷¤ëĽŐĽĄĽ¤Ľë¤ÎĽęĽšĽČ: %s\n"
+"FTP ¤ÇÁ÷¤Ă¤żĽŐĽĄĽ¤Ľë°ěÍ÷: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10551,39 +10758,46 @@ msgstr ""
"\n"
"(!) FTP ŔÜÂł¤ÎĽČĽéĽÖĽë: FTP¤ÇĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ňÁ÷¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
+"\n"
+"CD ˇĐÍł¤ÎDrakbackup:\n"
+":\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
+"\n"
+"ĽĆĄźĽ× ˇĐÍł¤ÎDrakbackup:\n"
+":\n"
+"\n"
-#: ../../standalone/drakbackup_.c:1377
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
-msgstr "(!) ĽáĄźĽëÁ÷żŽĂć¤ËĽ¨ĽéĄźĄŁ\n"
+msgstr "ĽáĄźĽëÁ÷żŽĂć¤ËĽ¨ĽéĄźĄŁ\n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
-msgstr ""
+msgstr "ĽŤĽżĽíĽ°¤Źşî¤ě¤Ţ¤ť¤ó!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "ĽŐĽĄĽ¤Ľë¤äĽÇĽŁĽěĽŻĽČĽę¤ňÁޤó¤ÇĄÖÄɲåפňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10591,27 +10805,26 @@ msgstr ""
"\n"
"ÉŹÍ×¤ĘĽŞĽ×ĽˇĽçĽó¤ËĽÁĽ§ĽĂĽŻ¤ň¤Ä¤ą¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤Ď /etc ĽÇĽŁĽěĽŻĽČĽę¤ÎĽŐĽĄĽ¤Ľë¤ň¤š¤Ů¤ĆĽĐĽĂĽŻĽ˘ĽĂĽ×ĄŚÉü¸ľ¤Ç¤­¤Ţ"
"¤šĄŁ\n"
-#: ../../standalone/drakbackup_.c:1600
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ/etcĽÇĽŁĽěĽŻĽČĽę)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ĎťÄ¤š)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "˝ĹÍ׼ռĄĽ¤Ľë (passwd, group, fstab) ¤Ď´Ţ¤á¤Ę¤¤"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10619,135 +10832,136 @@ msgstr ""
"¤ł¤ÎĽŞĽ×ĽˇĽçĽó¤Ç¤ĎĄ˘šĽ¤­¤ĘĽĐĄźĽ¸ĽçĽó¤Î /etc ĽÇĽŁĽěĽŻĽČĽę¤ň\n"
"Éü¸ľ¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ë´Ţ¤á¤ż¤¤ĽćĄźĽś¤ňÁ´°÷Áޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "ĽÖĽéĽŚĽś¤ÎĽ­ĽăĽĂĽˇĽĺ¤Ď´Ţ¤á¤Ę¤¤"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Ľ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘ¸Ĺ¤¤ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ĎťÄ¤š)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Áޤó¤Ŕ¤â¤Î¤ňşď˝ü"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "ĽćĄźĽśĚž"
-#: ../../standalone/drakbackup_.c:1773
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ë FTP ŔÜÂł¤ňťČÍŃ"
+msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ËĽÍĽĂĽČĽďĄźĽŻŔÜÂł¤ňťČÍŃ"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "ĽÍĽĂĽČĘýź°: "
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
-msgstr ""
+msgstr "Use Expect for SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
+"SSHĽĐĽĂĽŻĽ˘ĽĂĽ×¸°¤Î\n"
+"şîŔŽ/ĹžÁ÷"
-#: ../../standalone/drakbackup_.c:1781
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
-msgstr "°ÜĆ°"
-
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
msgstr ""
+" şŁ¤š¤° \n"
+"ĹžÁ÷"
#: ../../standalone/drakbackup_.c:1786
+#, fuzzy
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr "¤š¤Ç¤Ë¸°¤ŹĽťĽĂĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤š"
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "ĽŰĽšĽČĚž¤Ť IP ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:1791
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-"¤ł¤ÎĽŰĽšĽČžĺ¤Ç¤˝¤ÎĽÇĽŁĽěĽŻĽČĽę¤Ë\n"
-"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňĘݸ¤ˇ¤Ţ¤š¤ŤĄŠ"
+"¤ł¤ÎĽŰĽšĽČžĺ¤ÇĽĐĽĂĽŻĽ˘ĽĂĽ×¤ňĘݸ¤š¤ë\n"
+"ĽÇĽŁĽěĽŻĽČĽę¤ŤĽâĽ¸ĽĺĄźĽë¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "ĽíĽ°Ľ¤ĽóĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "ĽŃĽšĽďĄźĽÉ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "¤ł¤ÎĽŃĽšĽďĄźĽÉ¤ňľ­˛ą¤š¤ë"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
-msgstr ""
+msgstr "ĽŰĽšĽČĚžĄ˘ĽćĄźĽśĚžĄ˘ĽŃĽšĽďĄźĽÉ¤ŹÉŹżÜ¤Ç¤š!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "CD/DVDROM ¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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 ""
+"CD/DVD ĽÇĽĐĽ¤Ľš¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤\n"
+"(ž¤ÎĽŐĽŁĄźĽëĽÉźŤĆ°ĆţÎĎ¤Ë¤Ď Enter ¤ň˛Ą¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+"¤ł¤ÎĽŐĽŁĄźĽëĽÉ¤ĎÉŹżÜ¤Ç¤Ď¤Ę¤ŻĄ˘ĽŐĽŠĄźĽŕĆţÎϤμĥźĽë¤Ç¤ˇ¤Ť¤˘¤ę¤Ţ¤ť¤ó)"
-#: ../../standalone/drakbackup_.c:1921
-#, fuzzy
-msgid "Please choose your CD/DVD media size"
-msgstr "CD ĽšĽÚĄźĽš¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "CD/DVD ĽáĽÇĽŁĽ˘¤ÎĽľĽ¤Ľş¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1927
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
-msgstr "CDRW¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+msgstr "ĽŢĽëĽÁĽťĽĂĽˇĽçĽóCD¤Ť¤É¤Ś¤ŤĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "CDRW¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "¤Ţ¤ş CDRW ¤ňžĂľî¤š¤ëžěšç¤Ë¤Ď¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
+msgstr "RW ĽáĽÇĽŁĽ˘ĄĘşÇ˝é¤ÎĽťĽĂĽˇĽçĽó) ¤ňžĂľî¤š¤ë¤Ë¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1940
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
-msgstr "°ÜĆ°"
+msgstr "şŁ¤š¤°žĂľî"
-#: ../../standalone/drakbackup_.c:1946
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
-msgstr "CDRW¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+msgstr "DVDR¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1952
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
-msgstr "CDRW¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+msgstr "DVDRAM¤ňťČ¤Ă¤Ć¤¤¤ëžěšç¤ĎĽÁĽ§ĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10755,36 +10969,32 @@ msgstr ""
"CD ĽéĽ¤ĽżĄź¤ÎĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
"Îă: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
+msgstr "CDĽÇĽĐĽ¤Ľš¤ŹÄęľÁ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "ĽĆĄźĽ×¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ÍŃĽÇĽĐĽ¤ĽšĚž¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2055
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
-msgstr "¤Ţ¤ş CDRW ¤ňžĂľî¤š¤ëžěšç¤Ë¤Ď¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
+msgstr "´Ź¤­Ěᤡ¤Ę¤ˇ¤ÎĽÇĽĐĽ¤Ľš¤ňťČ¤Ś¤Ë¤Ď¤ł¤ł¤ňĽÁĽ§ĽĂĽŻ"
-#: ../../standalone/drakbackup_.c:2061
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
-msgstr "¤Ţ¤ş CDRW ¤ňžĂľî¤š¤ëžěšç¤Ë¤Ď¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
+msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×Á°¤ËĽĆĄźĽ×¤ňžĂľî¤š¤ë¤Ë¤Ď¤ł¤ł¤ňĽÁĽ§ĽĂĽŻ"
-#: ../../standalone/drakbackup_.c:2067
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
-msgstr "¤Ţ¤ş CDRW ¤ňžĂľî¤š¤ëžěšç¤Ë¤Ď¤ł¤ł¤ňĽŻĽęĽĂĽŻ"
+msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¸ĺ¤ËĽĆĄźĽ×¤ňĽ¤Ľ¸Ľ§ĽŻĽČ¤š¤ë¤Ë¤Ď¤ł¤ł¤ňĽÁĽ§ĽĂĽŻ"
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10792,63 +11002,61 @@ msgstr ""
"Drakbackup¤Ëľö¤ľ¤ě¤ëşÇÂ缾Ľ¤Ľş¤ň\n"
"ĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2138
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
-msgstr "Ęݸ¤š¤ëĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
+msgstr "ĘݸŔč¤ÎĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤ÎĽŻĽŠĄźĽż¤ňťČ¤Ś"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻ"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
-msgstr ""
+msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ / NFS"
-#: ../../standalone/drakbackup_.c:2234
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
-msgstr "ĽżĽ¤Ľ×"
+msgstr "ĽĆĄźĽ×"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "Ëčťţ´Ö"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "ËčĆü"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "Ë轾"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "Ëčˇî"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "ĽÇĄźĽâĽó¤ňťČ¤Ś"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤Î´ÖłÖ¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10856,79 +11064,81 @@ msgstr ""
"ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎĽáĽÇĽŁĽ˘¤ň\n"
"Áޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../standalone/drakbackup_.c:2287
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2291
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 "ĽľĄźĽÓĽš¤Ë cron ĽÇĄźĽâĽó¤Ź´Ţ¤Ţ¤ě¤Ć¤¤¤ë¤ł¤Č¤ňłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+msgstr ""
+"ĽľĄźĽÓĽš¤Ë cron ĽÇĄźĽâĽó¤Ź´Ţ¤Ţ¤ě¤Ć¤¤¤ë¤ł¤Č¤ňłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤.\n"
+"\n"
+"¸˝şß¤š¤Ů¤Ć¤ÎĽÍĽĂĽČĽáĽÇĽŁĽ˘¤ĎĄ˘ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤âťČ¤¤¤Ţ¤šĄŁ"
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×Ëč¤ÎĘóšđĽáĄźĽëÁ÷¤ęŔč: "
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
-msgstr ""
+msgstr "ž¤ÎĽáĽÇĽŁĽ˘¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×¤ˇ¤ż¤éĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ÎtarĽŐĽĄĽ¤Ľë¤ňşď˝ü"
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "˛ż¤ň"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "¤˝¤ł¤Ë"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "¤¤¤Ä"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "¤˝¤ÎžĽŞĽ×ĽˇĽçĽó"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup ŔßÄę"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×Ŕč¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤Ř"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "ĽÍĽĂĽČĽďĄźĽŻˇĐÍł¤Ç"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
-msgstr ""
+msgstr "CDROMžĺ¤Ë"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
-msgstr ""
+msgstr "ĽĆĄźĽ×ĽÇĽĐĽ¤Ľš¤Ë"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ˇ¤ż¤¤¤â¤Î¤ňÁޤó¤Ç˛ź¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "ĽˇĽšĽĆĽŕ¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "ĽćĄźĽś¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "ĽćĄźĽś¤ňźęĆ°¤ÇÁޤÖ"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10936,7 +11146,7 @@ msgstr ""
"\n"
"ĽĐĽĂĽŻĽ˘ĽĂĽ×¸ľ: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10944,7 +11154,7 @@ msgstr ""
"\n"
"- ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10952,7 +11162,7 @@ msgstr ""
"\n"
"- ĽćĄźĽśĽŐĽĄĽ¤Ľë:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10960,7 +11170,7 @@ msgstr ""
"\n"
"- ¤˝¤ÎžĽŐĽĄĽ¤Ľë:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10969,55 +11179,59 @@ msgstr ""
"\n"
"- ĽĎĄźĽÉĽÉĽéĽ¤ĽÖžĺ¤ÎĘݸĽŃĽš: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- ĽĐĽĂĽŻĽ˘ĽĂĽ×¸ĺ¤ËĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤ÎtarĽŐĽĄĽ¤Ľëşď˝ü\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
+"\n"
+"- CD¤ËžĆ¤Ż"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
-msgstr ""
+msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2604
+#, c-format
msgid " on device: %s"
-msgstr "ĽŢĽŚĽšĽÇĽĐĽ¤Ľš: %s\n"
+msgstr "°Ę˛ź¤ÎĽÇĽĐĽ¤Ľšžĺ: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
-msgstr ""
+msgstr " (ĽŢĽëĽÁĽťĽĂĽˇĽçĽó)"
-#: ../../standalone/drakbackup_.c:2602
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2606
+#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
"\n"
-"- FTP ¤Ç¤ÎĘݸŔčĽŰĽšĽČ: %s\n"
+"- °Ę˛ź¤ÎĽÇĽĐĽ¤Ľš¤ÎĽĆĄźĽ×¤ËĘݸ: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
-msgstr ""
+msgstr "\t\tErase=%s"
-#: ../../standalone/drakbackup_.c:2606
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:2610
+#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
"\n"
-"- FTP ¤Ç¤ÎĘݸŔčĽŰĽšĽČ: %s\n"
+"- °Ę˛ź¤ÎĽŰĽšĽČžĺ¤Î%s¤ËĘݸ: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11026,7 +11240,7 @@ msgstr ""
"\t\t ĽćĄźĽśĚž: %s\n"
"\t\t ĽŃĽš: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11034,19 +11248,19 @@ msgstr ""
"\n"
"- ĽŞĽ×ĽˇĽçĽó:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤Ď´Ţ¤á¤Ę¤¤\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç tar ¤Č bzip2¤ňťČÍŃ\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tĽĐĽĂĽŻĽ˘ĽĂĽ×¤Ç tar ¤Č gzip¤ňťČÍŃ\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11055,41 +11269,39 @@ msgstr ""
"\n"
"- ĽÇĄźĽâĽó (%s) ¤Ź´Ţ¤ŕ¤â¤Î :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-ĽĎĄźĽÉĽÉĽéĽ¤ĽÖĄŁ\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
-msgstr ""
+msgstr "\t-ĽĆĄźĽ× \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
-msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç FTP.\n"
+msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
-msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç FTP.\n"
+msgstr "\t-ĽÍĽĂĽČĽďĄźĽŻ¤Ç webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "ŔßÄꤏ¤˘¤ę¤Ţ¤ť¤óĄŁĽŚĽŁĽśĄźĽÉ¤Ťžĺľé¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11097,7 +11309,7 @@ msgstr ""
"Éü¸ľ¤š¤ëĽÇĄźĽż¤Î°ěÍ÷:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11105,256 +11317,251 @@ msgstr ""
"˛ő¤ě¤Ć¤¤¤ëĽÇĄźĽż°ěÍ÷:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "źĄ˛ó¤ËĽÁĽ§ĽĂĽŻ¤ň¤Ď¤ş¤š¤Ťşď˝ü¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:2832
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " ÁŞÂň¤ˇ¤żĽÇĄźĽż¤Ď¤š¤Ů¤Ć "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " %s žĺ¤ËÉü¸ľ¤ľ¤ě¤Ţ¤ˇ¤ż "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " ŔßÄęÉü¸ľ "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "ž¤ÎĽŐĽĄĽ¤ĽëÉü¸ľ¤Ë¤ĎOK¤ň"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr "Éü¸ľ¤š¤ëĽćĄźĽś¤Î°ěÍ÷ĄĘłĆĽćĄźĽś¤ÎşÇżˇ¤ÎĆüÉŐ¤Ŕ¤ą¤Ź˝ĹÍפǤšĄË"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ÎĽĐĽĂĽŻĽ˘ĽĂĽ×´ü¸Â:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Éü¸ľ¤š¤ëĆüÉŐ¤ňÁŞÂň¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ËĽĎĄźĽÉĽÇĽŁĽšĽŻ¤ňťČÍŃ"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Ęݸ¤š¤ëĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP ŔÜÂł"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "ĽťĽ­ĽĺĽ˘ŔÜÂł"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éÉü¸ľ¤š¤ë"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎĘݸĽÇĽŁĽěĽŻĽČĽę¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Éü¸ľ¸ľ¤ÎĽáĽÇĽŁĽ˘¤ňÁŞ¤Ó¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "¤˝¤ÎžĽáĽÇĽŁĽ˘"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "ĽˇĽšĽĆĽŕÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "ĽćĄźĽśÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3263
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "Éü¸ľĽŃĽš¤ňÁŞ¤ÖĄĘ/°Ęł°)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr "Éü¸ľÁ°¤ËżˇľŹĽĐĽĂĽŻĽ˘ĽĂĽ×ĄĘĽ¤ĽóĽŻĽęĽáĽóĽżĽëĽĐĽĂĽŻĽ˘ĽĂĽ×¤Î¤ßĄË"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Éü¸ľÁ°¤ËĽćĄźĽśĽÇĽŁĽěĽŻĽČĽę¤ňşď˝ü"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
+"ÁŞÂň¤ˇ¤żĽŤĽżĽíĽ°Ľ¨ĽóĽČĽę¤ň\n"
+"Éüłč"
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "Áޤó¤Ŕ¤â¤Î¤ňşď˝ü"
+msgstr ""
+"Áޤó¤ŔĽŐĽĄĽ¤Ľë\n"
+"¤ňşď˝ü"
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňÉü¸ľ"
+msgstr ""
+"Éü¸ľĽŃĽš¤ň\n"
+"ĘŃšš"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź˛ő¤ě¤Ć¤¤¤Ţ¤š"
+msgstr "%s¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×ĽŐĽĄĽ¤Ľë¤Ź¤˘¤ę¤Ţ¤ť¤ó"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
+"ĽÜĽęĽĺĄźĽŕĽéĽŮĽë%s¤ÎCD¤ň\n"
+"/mnt/cdrom˛ź¤ÎCDĽÉĽéĽ¤ĽÖ¤ËĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "ĽĎĄźĽÉĽÇĽŁĽšĽŻ¤Ť¤éÉü¸ľ¤š¤ë"
+msgstr "CD¤Ť¤éÉü¸ľ¤š¤ë"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgstr "CDĽéĽŮĽë¤Ź¤Ţ¤Á¤Ź¤Ă¤Ć¤¤¤Ţ¤šĄŁ¤ł¤ÎĽÇĽŁĽšĽŻ¤Ď%s¤Ç¤šĄŁ"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"ĽÜĽęĽĺĄźĽŕĽéĽŮĽë%s¤ÎĽĆĄźĽ×¤ň\n"
+"%s¤ÎĽĆĄźĽ×ĽÉĽéĽ¤ĽÖ¤ËĆţ¤ě¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňşĆŔ¸"
+msgstr "ĽĆĄźĽ×¤Ť¤éÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgstr "ĽĆĄźĽ×¤ÎĽéĽŮĽë¤Ź¤Ţ¤Á¤Ź¤Ă¤Ć¤¤¤Ţ¤šĄŁ¤ł¤ÎĽĆĄźĽ×¤Ď%s¤Ç¤šĄŁ"
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "ĽćĄźĽśÉü¸ľ"
+msgstr "ĽÍĽĂĽČĽďĄźĽŻ¤Ť¤éÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgstr "°Ę˛ź¤ÎĽÍĽĂĽČĽďĄźĽŻĽ×ĽíĽČĽłĽë¤ÇÉü¸ľ: %s"
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
-msgstr "ĽŰĽšĽČĚž:"
+msgstr "ĽŰĽšĽČĚž"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
-msgstr ""
+msgstr "ĽŰĽšĽČ¤ÎĽŃĽš¤ŤĽâĽ¸ĽĺĄźĽë"
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "ĽŃĽšĽďĄźĽÉ"
+msgstr "ĽŃĽšĽďĄźĽÉ¤ŹÍפę¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "ĽćĄźĽśĚž"
+msgstr "ĽćĄźĽśĚž¤ŹÍפę¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "ĽŰĽšĽČĚž:"
+msgstr "ĽŰĽšĽČĚž¤ŹÍפę¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
-msgstr ""
+msgstr "ĽŃĽš¤ŤĽâĽ¸ĽĺĄźĽë¤ŹÍפę¤Ţ¤š"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
-msgstr ""
+msgstr "Éü¸ľ¤ľ¤ě¤żĽŐĽĄĽ¤Ľë..."
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňÉü¸ľ"
+msgstr "Éü¸ľźşÇÔ..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Á´ĽĐĽĂĽŻĽ˘ĽĂĽ×¤ÎÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "ĽŤĽšĽżĽŕÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
-msgstr ""
+msgstr "CD¤ŹĽťĽĂĽČ- Âł¤ą¤ë"
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
-msgstr ""
+msgstr "żˇ¤ˇ¤¤Éü¸ľrepository¤ň¸Ť¤ë"
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽóĽĆĄźĽÖĽë¤ňşĆŔ¸"
+msgstr "ĽŤĽżĽíĽ°¤Ť¤éÉü¸ľ"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "ĽćĄźĽśÉü¸ľ"
+msgstr "Éü¸ľżĘšÔĂć"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "¤â¤É¤ë"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Ęݸ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×š˝ĂŰ"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Éü¸ľ"
-#: ../../standalone/drakbackup_.c:4229
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11364,15 +11571,15 @@ msgstr ""
" ĘóšđĽáĄźĽë¤ĎÁ÷żŽ¤Ç¤­¤Ţ¤ť¤ó\n"
" sendmail¤ňŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤"
-#: ../../standalone/drakbackup_.c:4253
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ţ¤š"
+msgstr ""
+"°Ę˛ź¤ÎĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ŹÉŹÍפǤš:\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11380,19 +11587,19 @@ msgstr ""
"FTP¤Ç¤ÎĽŐĽĄĽ¤ĽëĹžÁ÷Ăć¤ËĽ¨ĽéĄź.\n"
"FTP ŔßÄę¤ň¤Ę¤Ş¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Éü¸ľĽÇĄźĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ÍŃĽáĽÇĽŁĽ˘¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤¤ÍĄŁ"
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×¤š¤ëĽÇĄźĽż¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11400,60 +11607,59 @@ msgstr ""
"ŔßÄęĽŐĽĄĽ¤Ľë¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó\n"
"ĽŚĽŁĽśĄźĽÉ¤Ťžĺľé¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "¤Ţ¤ŔłŤČŻĂć...ÂԤäƤƤŻ¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "ĽˇĽšĽĆĽŕĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "ĽćĄźĽśĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "¤˝¤ÎžĽŐĽĄĽ¤Ľë¤ňĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Á´ÂΤοʚԞőśˇ"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "FTP¤ÇĽŐĽĄĽ¤ĽëÁ÷żŽĂć"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "ĽŐĽĄĽ¤ĽëÁ÷żŽĂć..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "ŔßÄęĽŐĽĄĽ¤Ľë¤Ť¤éşŁ¤š¤°ĽĐĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "ĽĐĽĂĽŻĽ˘ĽĂĽ×ŔßÄę¤ň¸Ť¤ë"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "ĽŚĽŁĽśĄźĽÉŔßÄę"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "žĺľéŔßÄę"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "şŁ¤š¤°ĽŃĽĂĽŻĽ˘ĽĂĽ×"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11513,7 +11719,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11527,7 +11733,7 @@ msgstr ""
" /etc/postfix/main.cf¤Î myhostname ¤Ť mydomain ¤ňŔßÄꤡ¤Ţ¤šĄŁ\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11603,8 +11809,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11655,18 +11860,19 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
+" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11696,7 +11902,7 @@ msgstr ""
" Free Software Foundation, Inc., 59 Temple Place - Suite 330, \n"
" Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11773,7 +11979,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11790,7 +11996,7 @@ msgstr ""
"Á°¤ËĄ˘¤Ţ¤şĽĎĄźĽÉĽÉĽéĽ¤ĽÖžĺ¤ËĽĐĽĂĽŻĽ˘ĽĂĽ×š˝ĂۤŹÉŹÍפˤʤę¤Ţ¤šĄŁ\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11811,7 +12017,7 @@ msgstr ""
"¤š¤ë¤Î¤ÇĄ˘¤¤¤Ţ¤ÎĽÇĄźĽż¤ĎÁ´ÉôžĂ¤¨¤Ţ¤šĄŁ¤Ç¤š¤Ť¤éĄ˘ĽĐĽĂĽŻ\n"
"Ľ˘ĽĂĽ×ĽÇĄźĽż¤ÎĽŐĽĄĽ¤Ľë¤Ďźę¤Ç˛ţĘѤˇ¤Ę¤¤¤Ű¤Ś¤Ź¸­ĚŔ¤Ç¤šĄŁ\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11901,135 +12107,134 @@ msgid ""
"\n"
"OPTIONS:\n"
msgstr ""
+"drakbug version %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"ËÜĽ˝ĽŐĽČ¤ĎĽŐĽęĄźĽ˝ĽŐĽČĽŚĽ§Ľ˘¤ÇĄ˘GNU GPL¤Îžňˇď˛ź¤ÇşĆÇŰÉ۲ÄÇ˝¤Ç¤˘¤ëĄŁ\n"
+"\n"
+"ÍŃËĄ: drakbug [OPTIONS] [PROGRAM_NAME]\n"
+"\n"
+"OPTIONS:\n"
#: ../../standalone/drakbug_.c:47
msgid " --help - print this help message.\n"
-msgstr ""
+msgstr " --help - print this help message.\n"
#: ../../standalone/drakbug_.c:48
msgid " --report - program should be one of mandrake tools\n"
-msgstr ""
+msgstr " --report - program should be one of mandrake tools\n"
#: ../../standalone/drakbug_.c:49
msgid " --incident - program should be one of mandrake tools\n"
-msgstr ""
+msgstr " --incident - program should be one of mandrake tools\n"
#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
-msgstr ""
+msgstr "Mandrake ĽĐĽ°ĘóšđĽÄĄźĽë"
#: ../../standalone/drakbug_.c:70
msgid "First Time Wizard"
-msgstr ""
+msgstr "First Time Wizard"
#: ../../standalone/drakbug_.c:71
msgid "Synchronization tool"
-msgstr ""
+msgstr "Ćą´üĽÄĄźĽë"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
-#, fuzzy
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
-msgstr "ĽłĽóĽ˝ĄźĽëĽÄĄźĽë"
+msgstr "ĆČΊĽÄĄźĽë"
#: ../../standalone/drakbug_.c:73
-#, fuzzy
msgid "HardDrake"
-msgstr "ĽĎĄźĽÉĽÉĽéĽ¤ĽÖ¤Ř"
+msgstr "HardDrake"
#: ../../standalone/drakbug_.c:74
-#, fuzzy
msgid "Mandrake Online"
-msgstr "Mandrake ĽłĽóĽľĽëĽĆĽŁĽóĽ°"
+msgstr "Mandrake ĽŞĽóĽéĽ¤Ľó"
#: ../../standalone/drakbug_.c:75
-#, fuzzy
msgid "Menudrake"
-msgstr "MandrakeStore"
+msgstr "Menudrake"
#: ../../standalone/drakbug_.c:76
-#, fuzzy
msgid "Msec"
-msgstr "ĽŢĽŚĽš"
+msgstr "Msec"
#: ../../standalone/drakbug_.c:77
-#, fuzzy
msgid "Remote Control"
-msgstr "ĽęĽâĄźĽČĽ×ĽęĽóĽż"
+msgstr "ĽęĽâĄźĽČĽłĽóĽČĽíĄźĽë"
#: ../../standalone/drakbug_.c:78
-#, fuzzy
msgid "Software Manager"
-msgstr "ĽˇĽ§Ľ˘Ěž"
+msgstr "Ľ˝ĽŐĽČĽŚĽ§Ľ˘ĽŢĽÍĄźĽ¸Ľă"
#: ../../standalone/drakbug_.c:79
msgid "Urpmi"
-msgstr ""
+msgstr "Urpmi"
#: ../../standalone/drakbug_.c:80
msgid "Windows Migration tool"
-msgstr ""
+msgstr "ĽŚĽŁĽóĽÉĽŚĽş°ÜšÔĽÄĄźĽë"
#: ../../standalone/drakbug_.c:81
-#, fuzzy
msgid "Userdrake"
-msgstr "Printerdrake"
+msgstr "Userdrake"
#: ../../standalone/drakbug_.c:82
-#, fuzzy
msgid "Configuration Wizards"
-msgstr "ĽÍĽĂĽČĽďĄźĽŻŔßÄ꼌ĽŁĽśĄźĽÉ"
+msgstr "ŔßÄ꼌ĽŁĽśĄźĽÉ"
#: ../../standalone/drakbug_.c:97
-#, fuzzy
msgid "Application:"
-msgstr "ǧžÚ"
+msgstr "Ľ˘Ľ×ĽęĽąĄźĽˇĽçĽó: "
#: ../../standalone/drakbug_.c:98
-#, fuzzy
msgid "Package: "
-msgstr "ĽŃĽĂĽąĄźĽ¸¤ňÁŞÂň"
+msgstr "ĽŃĽĂĽąĄźĽ¸: "
#: ../../standalone/drakbug_.c:99
msgid "Kernel:"
-msgstr ""
+msgstr "ĽŤĄźĽÍĽë: "
#: ../../standalone/drakbug_.c:100
-#, fuzzy
msgid "Release: "
-msgstr "¤ŞÂÔ¤Á˛ź¤ľ¤¤"
+msgstr "ĽęĽęĄźĽš: "
#: ../../standalone/drakbug_.c:115
msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
+"\n"
+"\n"
+"ĽĐĽ°Ęóšđ¤ÎÄó˝Đ¤Ë¤ĎĄ˘ĄÖĘóšđĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+"¤š¤ë¤ČwebĽÖĽéĽŚĽś¤ŹłŤ¤¤¤Ć https://drakbug.mandrakesoft.com ¤Ź˝Đ¤Ţ¤šĄŁ\n"
+"¤˝¤ł¤ËĘóšđ˝ń¤Ź¤˘¤ë¤Î¤ÇĄ˘ľ­Ćţ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁžĺľ­¤ÎžđĘó¤Ď¤˝¤ÎĽľĄźĽĐ\n"
+"¤ËĹžÁ÷¤ľ¤ě¤Ţ¤š\n"
+"\n"
-#: ../../standalone/drakbug_.c:136
-#, fuzzy
+#: ../../standalone/drakbug_.c:134
msgid "Report"
-msgstr "ĽÝĄźĽČ"
+msgstr "Ęóšđ"
-#: ../../standalone/drakbug_.c:166
-#, fuzzy
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
-msgstr "Ľ˘ĽóĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ÎşîśČ"
+msgstr "Ľ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
-msgstr ""
+msgstr "BugzillaĽŚĽŁĽśĄźĽÉ¤ËŔÜÂłĂć..."
-#: ../../standalone/drakbug_.c:190
-#, fuzzy
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
-msgstr "%s ¤ÎĽ¤ĽóĽšĽČĄźĽë¸ĺ¤ËĽšĽŻĽęĄźĽóĽˇĽçĽĂĽČ¤Ź˛ÄÇ˝¤Ç¤š"
+msgstr "ĽÖĽéĽŚĽś¤Ź¤˘¤ę¤Ţ¤ť¤óĄŞĄĄ˛ż¤ŤĽ¤ĽóĽšĽČĄźĽë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#: ../../standalone/drakconnect_.c:79
#, c-format
@@ -12126,10 +12331,6 @@ msgstr "ĽŚĽŁĽśĄźĽÉ..."
msgid "Apply"
msgstr "ĹŹÍŃ"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄÄĄÄŔßÄę¤ňĹŹÍѤˇ¤Ć¤¤¤Ţ¤š"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "ŔÜÂł´°Îť"
@@ -12253,7 +12454,7 @@ msgstr "ĽâĽ¸ĽĺĄźĽëĚž"
msgid "Size"
msgstr "ĽľĽ¤Ľş"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12318,26 +12519,27 @@ msgstr "˝ĐÎĎ"
msgid "Build the disk"
msgstr "ĽÇĽŁĽšĽŻ¤ňşîŔŽ"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "ĽÇĽĐĽ¤Ľš %s ¤ËĽáĽÇĽŁĽ˘¤ĎĆţ¤Ă¤Ć¤¤¤Ţ¤š¤ŤĄŠ"
-#: ../../standalone/drakfloppy_.c:426
-#, fuzzy, c-format
+# ../../standalone/drakfloppy_.c:426, c-format
+#: ../../standalone/drakfloppy_.c:381
+#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-"ĽÇĽĐĽ¤Ľš %s¤ÎĽáĽÇĽŁĽ˘¤Ź¤˘¤ę¤Ţ¤ť¤óĄŁ\n"
+"ĽÇĽĐĽ¤Ľš %s¤ÎĽáĽÇĽŁĽ˘¤Ź¤Ę¤¤¤Ť˝ń¤­šţ¤ßśŘťß¤Ç¤šĄŁ\n"
"ĽťĽĂĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "%s ¤ňĽŐĽŠĄźĽŻ¤Ç¤­¤Ţ¤ť¤ó"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12552,7 +12754,7 @@ msgstr "Ľ¤ĽóĽżĄźĽÍĽĂĽČŔÜÂł¤ÎśŚÍ­"
#: ../../standalone/drakgw_.c:119
msgid "Sorry, we support only 2.4 kernels."
-msgstr ""
+msgstr "¤š¤ß¤Ţ¤ť¤ó¤ŹĄ˘2.4ĽŤĄźĽÍĽë¤ˇ¤ŤĽľĽÝĄźĽČ¤ˇ¤Ţ¤ť¤óĄŁ"
#: ../../standalone/drakgw_.c:130
msgid "Internet Connection Sharing currently enabled"
@@ -12819,158 +13021,145 @@ msgstr ""
"\n"
"ŔßÄ꼌ĽŁĽśĄźĽÉ¤ňľŻĆ°¤š¤ë¤Ë¤ĎĄÖŔßÄęĄ×¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ţ¤ˇ¤ç¤ŚĄŁ"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "ĽďĄźĽŻĽ°ĽëĄźĽ×"
+msgstr "Ľ°ĽëĄźĽ×"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "ĽŃĽš"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "ĽŃĄźĽĆĽŁĽˇĽçĽó %s"
+msgstr "ĽŃĄźĽßĽĂĽˇĽçĽó"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
-msgstr "ĽćĄźĽśĚž"
+msgstr "ĽćĄźĽś"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "žĺ"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr "şď˝ü"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr "ĘÔ˝¸"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "˝ŞÎť"
+msgstr "˛ź"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "ĽâĽ¸ĽĺĄźĽëÄɲĂ"
+msgstr "ĽëĄźĽëÄɲĂ"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "ąÜÍ÷/ĘÔ˝¸¤š¤ëpermĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm ¤ĎĄ˘ĽŃĄźĽßĽĂĽˇĽçĽó¤ä˝ęÍ­źÔĄ˘Ľ°ĽëĄźĽ×¤ň msec¤Ç¤¤¤¸¤ë¤ż¤á¤Î¤â¤Î¤Ç"
+"¤šĄŁ\n"
+"¤Ţ¤żĽÇĽŐĽŠĽëĽČ¤ňžĂ¤ˇ¤ĆźŤĘŹ¤ÎĽëĄźĽë¤ňĘÔ˝¸¤š¤ë¤ł¤Č¤â¤Ç¤­¤Ţ¤šĄŁ"
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "Ľ×ĽęĽóĽżÄɲĂ"
+msgstr "żˇ¤ˇ¤¤ĽëĄźĽë¤ňÄɲĂ"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "¸˝şß¤ÎĽëĄźĽë¤ňĘÔ˝¸"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "¤š¤Ů¤Ć¤ňČóÁŞÂň¤Ë"
+msgstr "Áޤó¤ŔĽëĄźĽë¤ň°ěĂʞ夲¤ë"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "Áޤó¤ŔĽëĄźĽë¤ň°ěĂʲź¤˛¤ë"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "Áޤó¤Ŕ¤â¤Î¤ňşď˝ü"
+msgstr "Áޤó¤ŔĽëĄźĽë¤ňşď˝ü"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "ĽÖĽéĽŚĽş"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "źő¤ąÉŐ¤ą¤ëĽćĄźĽś"
+msgstr "¸˝şß¤ÎĽćĄźĽś"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "ĽĐĄźĽ¸ĽçĽó: %s\n"
+msgstr "ĽŃĄźĽßĽĂĽˇĽçĽó"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "ĽŃĽš"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "ĽÝĄźĽČ"
+msgstr "Ľ×ĽíĽŃĽĆĽŁ"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "sticky-bit"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "UIDŔßÄę"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "GIDŔßÄę"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"ĽÇĽŁĽěĽŻĽČĽęÍŃ:\n"
+" ĽÇĽŁĽěĽŻĽČĽę¤äĄ˘¤˝¤ÎĂć¤ÎĽŐĽĄĽ¤Ľë¤Î˝ęÍ­źÔ¤Ŕ¤ą¤Źşď˝ü¤Ç¤­¤Ţ¤š"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "źŤĆ°¸Ą˝Đ¤ňťČ¤Ś"
+msgstr "źÂšÔ¤Ë˝ęÍ­źÔid¤ňťČ¤Ś"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "źŤĆ°¸Ą˝Đ¤ňťČ¤Ś"
+msgstr "źÂšÔ¤ËĽ°ĽëĄźĽ×id¤ňťČ¤Ś"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "ĽÁĽ§ĽĂĽŻ¤š¤ë¤ČĄ˘˝ęÍ­źÔ¤äĽ°ĽëĄźĽ×¤ĎĘŃšš¤ľ¤ě¤Ţ¤ť¤ó"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "ĽŃĽĂĽąĄźĽ¸ÁŞÂň¤ÎĘݸ"
+msgstr "ĽŃĽšÁŞÂň"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "ĽćĄźĽśĚž"
+msgstr "ĽćĄźĽś: "
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "ĽďĄźĽŻĽ°ĽëĄźĽ×"
+msgstr "Ľ°ĽëĄźĽ×: "
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "ŔÜÂł¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
+msgstr "ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤ż!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12981,137 +13170,145 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"ĽľĽŚĽóĽÉĽŤĄźĽÉ¤Ź¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁLinux¤ÇĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤ë¤­¤Á¤ó¤Čşš¤ˇšţ"
+"¤Ţ¤ě¤Ć¤¤¤ë¤ŤłÎǧ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\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"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "Ŕľ¤ˇ¤ŻľĄÇ˝¤š¤ë¤Ë¤Ď ImageMagickĽŃĽĂĽąĄźĽ¸¤ŹÉŹÍפǤš"
+
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "ĽÖĄźĽČĽÇĽŁĽšĽŻşîŔŽ"
+msgstr "first stepşîŔŽ"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "˛ňÁüĹŮ"
+msgstr "şÇ˝Ş˛ňÁüĹŮ"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "ĽŐĽĄĽ¤Ľë¤ňÁŞÂň"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "ĽˇĽ§Ľ˘Ěž"
+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 "˝ŞÎť"
+msgid "Theme name"
+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
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "ĽľĄźĽÓĽš¤ÎŔßÄę"
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "ľŻĆ°ĽšĽ×ĽéĽĂĽˇĽĺ˛čÁü¤ÎŔßÄę"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
-msgstr ""
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr "ĽĆĽ­ĽšĽČĽÜĽĂĽŻĽš¤ÎxşÂɸ¤ňʸťúżô¤Ç"
#: ../../standalone/draksplash_.c:101
-msgid "text width"
-msgstr ""
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr "ĽĆĽ­ĽšĽČĽÜĽĂĽŻĽš¤ÎyşÂɸ¤ňʸťúżô¤Ç"
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
-msgstr ""
+msgid "text width"
+msgstr "ĽĆĽ­ĽšĽČ¤ÎÉý"
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
+msgid "text box height"
+msgstr "ĽĆĽ­ĽšĽČĽÜĽĂĽŻĽš¤Îšâ¤ľ"
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr ""
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr "Ľ×ĽíĽ°ĽěĽšĽĐĄźş¸žĺłŃ¤ÎxşÂɸ"
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
-msgstr ""
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr "Ľ×ĽíĽ°ĽěĽšĽĐĄźş¸žĺłŃ¤ÎyşÂɸ"
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
-msgstr ""
+msgid "the width 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 "ĽëĄźĽ×ĽĐĽĂĽŻ"
+msgid "the heigth of the progress bar"
+msgstr "Ľ×ĽíĽ°ĽěĽšĽĐĄź¤Îšâ¤ľ"
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "ĽÇĽĐĽ¤Ľš"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr "Ľ×ĽíĽ°ĽěĽšĽĐĄź¤Îż§"
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "ĽâĽËĽż¤ňÁޤó¤Ç˛ź¤ľ¤¤"
+msgid "Preview"
+msgstr "Ľ×ĽěĽÓĽĺĄź"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "ĽĆĄźĽŢĘݸ"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "ż§¤ňÁޤó¤Ç˛ź¤ľ¤¤"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr ""
+msgstr "ĽłĽóĽ˝ĄźĽë¤ËĽíĽ´É˝ź¨"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
-msgstr ""
+msgstr "ĽŤĄźĽÍĽëĽáĽĂĽťĄźĽ¸¤ňĽÇĽŐĽŠĽëĽČ¤Ç¤Ďšľ¤¨¤á¤Ë"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
-msgstr ""
+msgstr "¤ł¤ÎĽĆĄźĽŢ¤Ď¤Ţ¤ŔľŻĆ°ĽšĽ×ĽéĽĂĽˇĽĺ¤Ź%s¤Ë¤˘¤ę¤Ţ¤ť¤ó!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
-msgstr ""
+msgstr "ľŻĆ°ĽšĽ×ĽéĽĂĽˇĽĺĽĆĄźĽŢ¤ňĘݸĂć..."
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "Ľ×ĽęĽóĽż¤ÎľĄźď¤ňÁޤÖ"
+msgstr "Ľ×ĽíĽ°ĽěĽšĽĐĄź¤Îż§¤ňÁޤÖ"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "Ľ×ĽęĽóĽż¤ŤĽÇĽĐĽ¤Ľš¤ňĆţÎĎĄŚÁŞÂň"
+msgstr "¤Ţ¤ş˛čÁüĽŐĽĄĽ¤Ľë¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "ĽÇĽĐĽ¤Ľš¤Î¸Ą˝ĐĂć¤Ç¤šĄÄĄÄ"
+msgstr "Ľ×ĽěĽÓĽĺĄźŔ¸ŔŽĂć..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
#: ../../standalone/drakxtv_.c:49
msgid ""
@@ -13127,15 +13324,24 @@ msgid ""
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV ¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó!\n"
+"\n"
+"\n"
+"TV ĽŤĄźĽÉ¤Ź¤˘¤ë¤Î¤Ë DrakX ¤Ź¸Ą˝Đ¤ť¤ş (\"/etc/modules\"¤Ëbttv ¤â saa7134\n"
+"ĽâĽ¸ĽĺĄźĽë¤â¤Ę¤¤) xawtv¤âĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ę¤ą¤ě¤ĐĄ˘\n"
+"\"lspcidrake -v -f\" ¤Îˇë˛Ě¤ň \"install\\@mandrakesoft.com\"\n"
+"¤Ësubject \"undetected TV card\"¤ÇĽáĄźĽë¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+"\n"
+"\n"
+"Ľ¤ĽóĽšĽČĄźĽë¤Ë¤Ďroot¤Ë¤Ę¤Ă¤ĆĽłĽóĽ˝ĄźĽë¤Ç \"urpmi xawtv\" ¤ČĽżĽ¤Ľ×¤ˇ¤Ţ¤šĄŁ"
#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
msgstr "ĽŤĽĘĽŔĄĘĽąĄźĽÖĽëĄË"
#: ../../standalone/drakxtv_.c:66
-#, fuzzy
msgid "USA (broadcast)"
-msgstr "USA (bcast)"
+msgstr "USA (ĘüÁ÷)"
#: ../../standalone/drakxtv_.c:66
msgid "USA (cable)"
@@ -13146,14 +13352,12 @@ msgid "USA (cable-hrc)"
msgstr "USA (ĽąĄźĽÖĽë-hrc)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "China (broadcast)"
-msgstr "Ăćšń (bcast)"
+msgstr "Ăćšń (ĘüÁ÷)"
#: ../../standalone/drakxtv_.c:67
-#, fuzzy
msgid "Japan (broadcast)"
-msgstr "ĆüËÜ (bcast)"
+msgstr "ĆüËÜ (ĘüÁ÷)"
#: ../../standalone/drakxtv_.c:67
msgid "Japan (cable)"
@@ -13164,9 +13368,8 @@ msgid "East Europe"
msgstr "ĹěĽčĄźĽíĽĂĽŃ"
#: ../../standalone/drakxtv_.c:68
-#, fuzzy
msgid "France [SECAM]"
-msgstr "ĽŐĽéĽóĽš"
+msgstr "ĽŐĽéĽóĽš [SECAM]"
#: ../../standalone/drakxtv_.c:68
msgid "Ireland"
@@ -13194,7 +13397,7 @@ msgstr "Ľ˘ĽëĽźĽóĽÁĽó"
#: ../../standalone/drakxtv_.c:72
msgid "Australian Optus cable TV"
-msgstr ""
+msgstr "ĽŞĄźĽšĽČĽéĽęĽ˘OptusĽąĄźĽÖĽëĽĆĽěĽÓ"
#: ../../standalone/drakxtv_.c:107
msgid ""
@@ -13221,25 +13424,24 @@ msgid "Scanning for TV channels"
msgstr "ĽĆĽěĽÓĽÁĽăĽóĽÍĽë¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤š"
#: ../../standalone/drakxtv_.c:125
-#, fuzzy
msgid "There was an error while scanning for TV channels"
-msgstr "ĽŃĽĂĽąĄźĽ¸¤ÎĽ¤ĽóĽšĽČĄźĽë¤ÇĽ¨ĽéĄź¤ŹČŻŔ¸:"
+msgstr "ĽĆĽěĽÓĽÁĽăĽóĽÍĽë¤ÎÁöşşĂć¤ËĽ¨ĽéĄź¤ŹČŻŔ¸"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
-msgstr ""
+msgstr "XawTV¤ŹĽ¤ĽóĽšĽČĄźĽë¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
#: ../../standalone/drakxtv_.c:129
msgid "Have a nice day!"
-msgstr ""
+msgstr "¤Ş¸ľľ¤¤ÇĄŞ"
#: ../../standalone/drakxtv_.c:130
msgid "Now, you can run xawtv (under X Window!) !\n"
-msgstr ""
+msgstr "¤ł¤ě¤Çxawtv¤ňXĽŚĽŁĽóĽÉĽŚžĺ¤ÇťČ¤¨¤Ţ¤šĄŞ\n"
#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr ""
+msgstr "ĽĆĽěĽÓĽŤĄźĽÉ¤Ź¸Ť¤Ä¤Ť¤ę¤Ţ¤ť¤ó"
#: ../../standalone/drakxtv_.c:154
msgid ""
@@ -13252,6 +13454,22 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"TV ĽŤĄźĽÉ¤Ź¸Ą˝Đ¤ľ¤ě¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁLinux¤ÇĽľĽÝĄźĽČ¤ľ¤ě¤żĽÓĽÇĽŞTVĽŤĄźĽÉ¤Ź¤­¤Á¤ó"
+"¤ČÁŢĆţ¤ľ¤ě¤Ć¤¤¤ë¤ŤłÎ¤Ť¤á¤Ţ¤ˇ¤ç¤ŚĄŁ\n"
+"\n"
+"\n"
+"ĘŔźŇ¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘ĽÇĄźĽżĽŮĄźĽš¤âť˛žČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤:\n"
+"\n"
+"\n"
+"http://www.linux-mandrake.com/en/hardware.php3"
+
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"ťČ¤¤Ęý: harddrake [-h|--help] [--test]\n"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -13281,11 +13499,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "ĽéĽ¤ĽÖĽ˘ĽĂĽ×Ľ°ĽěĄźĽÉ¤ňłŤťĎ¤Ç¤­¤Ţ¤ť¤ó!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "ĘŃšš¤Ź´°Îť¤ˇ¤Ţ¤ˇ¤ż¤ŹĄ˘Í­¸ú¤Ë¤š¤ë¤Ë¤Ď¤¤¤Ă¤ż¤óĽíĽ°Ľ˘ĽŚĽČ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13398,9 +13616,8 @@ msgid "Content of the file"
msgstr "ĽŐĽĄĽ¤Ľë¤ÎĆâÍĆ"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
-#, fuzzy
msgid "Mail alert"
-msgstr "Mail/SMS ˇŮšđ"
+msgstr "Mail ˇŮšđ"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -13408,69 +13625,59 @@ msgid "please wait, parsing file: %s"
msgstr "žŻĄš¤ŞÂÔ¤Á¤ňĄ˘ĽŐĽĄĽ¤Ľë %s ¤ňĂľ¤ˇ¤Ć¤¤¤Ţ¤šĄŁ"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "Mail/SMS ˇŮšđ¤ÎŔßÄę"
+msgstr "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 ""
-"Mail/SMS ŔßÄęĽćĄźĽĆĽŁĽęĽĆĽŁ¤Ř¤¤¤é¤Ă¤ˇ¤ă¤¤¤Ţ¤ťĄÁĄŁ\n"
+"Mail ŔßÄęĽćĄźĽĆĽŁĽęĽĆĽŁ¤Ř¤¤¤é¤Ă¤ˇ¤ă¤¤¤Ţ¤ťĄÁĄŁ\n"
"\n"
"¤ł¤ł¤Ç¤ĎˇŮšđĽˇĽšĽĆĽŕ¤ňŔßÄꤡ¤Ţ¤šĄŁ\n"
#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
-msgstr ""
+msgstr "Apache World Wide WebĽľĄźĽĐ"
#: ../../standalone/logdrake_.c:417
-#, fuzzy
msgid "Domain Name Resolver"
-msgstr "ĽÉĽáĽ¤ĽóĚž"
+msgstr "ĽÉĽáĽ¤ĽóĚž˛ňˇč"
#: ../../standalone/logdrake_.c:418
-#, fuzzy
msgid "Ftp Server"
-msgstr "NIS ĽľĄźĽĐ"
+msgstr "ftp ĽľĄźĽĐ"
#: ../../standalone/logdrake_.c:419
-#, fuzzy
msgid "Postfix Mail Server"
-msgstr "Postfix ĽáĄźĽëĽľĄźĽĐ, Inn ĽËĽĺĄźĽšĽľĄźĽĐ"
+msgstr "Postfix ĽáĄźĽëĽľĄźĽĐ"
#: ../../standalone/logdrake_.c:420
-#, fuzzy
msgid "Samba Server"
-msgstr "NIS ĽľĄźĽĐ"
+msgstr "samba ĽľĄźĽĐ"
#: ../../standalone/logdrake_.c:421
-#, fuzzy
msgid "SSH Server"
-msgstr "NIS ĽľĄźĽĐ"
+msgstr "SSH ĽľĄźĽĐ"
#: ../../standalone/logdrake_.c:422
-#, fuzzy
msgid "Webmin Service"
-msgstr "ĽľĄźĽÓĽš"
+msgstr "Webmin ĽľĄźĽÓĽš"
#: ../../standalone/logdrake_.c:423
-#, fuzzy
msgid "Xinetd Service"
-msgstr "Ľ×ĽęĽóĽżĽľĄźĽĐ"
+msgstr "XinetdĽľĄźĽÓĽš"
#: ../../standalone/logdrake_.c:430
msgid "service setting"
msgstr "ĽľĄźĽÓĽšŔßÄę"
#: ../../standalone/logdrake_.c:431
-#, fuzzy
msgid ""
"You will receive an alert if one of the selected services is no more running"
-msgstr "°Ę˛ź¤ÇÁޤó¤ŔĽľĄźĽÓĽš¤Źťß¤Ţ¤Ă¤ż¤éˇŮĘ󤏽ФޤšĄŁ"
+msgstr "°Ę˛ź¤ÇÁޤó¤ŔĽľĄźĽÓĽš¤Î¤É¤ě¤Ť¤Źťß¤Ţ¤Ă¤ż¤éˇŮĘ󤏽ФޤšĄŁ"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13485,9 +13692,8 @@ msgid "alert configuration"
msgstr "ˇŮšđ¤ÎŔßÄę"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "ĽŃĽšĽďĄźĽÉ¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
+msgstr "ĽáĄźĽëĽ˘ĽÉĽěĽš¤ňĆţÎϤˇ¤Ć¤Ż¤Ŕ¤ľ¤¤"
#: ../../standalone/logdrake_.c:497
msgid "Save as.."
@@ -13502,7 +13708,6 @@ msgid "Emulate third button?"
msgstr "żżĂćĽÜĽżĽó¤ňĽ¨ĽßĽĺĽěĄźĽČ¤ˇ¤Ţ¤š¤ŤĄŠ"
#: ../../standalone/printerdrake_.c:57
-#, fuzzy
msgid "Reading printer data ..."
msgstr "Ľ×ĽęĽóĽż¤ÎžđĘó¤ňĆɤó¤Ç¤¤¤Ţ¤š..."
@@ -13518,17 +13723,17 @@ msgstr "ĽÝĄźĽČ¤ÎĽĆĽšĽČ"
#: ../../standalone/scannerdrake_.c:81
#, c-format
msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr ""
+msgstr "%s ¤ĎËÜĽĐĄźĽ¸ĽçĽó¤ÎMandrake Linux¤Ç¤ĎĽľĽÝĄźĽČ¤ľ¤ě¤Ć¤¤¤Ţ¤ť¤ó"
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, 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 ""
+msgstr "%s¤ĎĽšĽ­ĽăĽĘĽÇĄźĽżĽŮĄźĽš¤Ë¤˘¤ę¤Ţ¤ť¤óĄŁźęĆ°¤ÇŔßÄꤡ¤Ţ¤š¤Ť?"
#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
@@ -13545,19 +13750,21 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
+"Scannerdrake ¤Ď %s ĽšĽ­ĽăĽĘ¤ň¸Ą˝Đ¤Ç¤­¤Ţ¤ť¤ó¤Ç¤ˇ¤żĄŁ\n"
+"ĽšĽ­ĽăĽĘ¤ŹŔÜÂł¤ľ¤ě¤Ć¤¤¤ëĽÇĽĐĽ¤Ľš¤ňÁޤó¤Ç¤Ż¤Ŕ¤ľ¤¤"
#: ../../standalone/scannerdrake_.c:109
-#, fuzzy
msgid "choose device"
-msgstr "ĽÖĄźĽČĽÇĽĐĽ¤Ľš"
+msgstr "ĽÇĽĐĽ¤ĽšÁŞÂň"
#: ../../standalone/scannerdrake_.c:115
-#, fuzzy, c-format
+#, c-format
msgid ""
"This %s scanner must be configured by printerdrake.\n"
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
+"%s ĽšĽ­ĽăĽĘ¤Ďprinterdrake¤ÇŔßÄꤡ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
"printerdrake ¤ÎľŻĆ°¤ĎĄ˘Mandrake ĽłĽóĽČĽíĄźĽëĽťĽóĽżĄź¤ÎĽĎĄźĽÉĽŚĽ§Ľ˘¤Îšŕ¤ÇšÔ¤Ă"
"¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ"
@@ -13568,18 +13775,21 @@ msgid ""
"You may now scan documents using ``XSane'' from Multimedia/Graphics in the "
"applications menu."
msgstr ""
+"%s ĽšĽ­ĽăĽĘ¤ŹŔßÄꤾ¤ě¤Ţ¤ˇ¤żĄŁ\n"
+"Ľ˘Ľ×ĽęĽąĄźĽˇĽçĽóĽáĽËĽĺĄź¤ÎĽŢĽëĽÁĽáĽÇĽŁĽ˘ĄżĽ°ĽéĽŐĽŁĽĂĽŻ¤Ť¤éĄ˘ĄÖXsaneĄ×¤ňÁޤ֤Č"
+"ĽšĽ­ĽăĽĘ¤ŹťČ¤¨¤Ţ¤šĄŁ"
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
-msgstr ""
+msgstr "%s ĽĎĄźĽÉĽŚĽ§Ľ˘ĽŻĽéĽš¤ÎĽÇĽĐĽ¤Ľš¤Î°ěÉô¤Źşď˝ü¤ľ¤ě¤Ţ¤ˇ¤ż:\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+#, fuzzy
+msgid "Some devices were added:\n"
msgstr ""
+"\n"
+"%s ĽŻĽéĽš¤ÎĽÇĽĐĽ¤Ľš¤ŹÄɲ侤ě¤Ţ¤ˇ¤ż:\n"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -13653,7 +13863,7 @@ msgstr "ĽˇĽšĽĆĽŕššżˇ¤ňĽ¤ĽóĽšĽČĄźĽë"
msgid "Exit install"
msgstr "ĆłĆţşîśČ¤ň˝ŞÎť"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
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-"
@@ -13709,7 +13919,7 @@ msgstr "ĽŞĄźĽÇĽŁĽŞ´ŘϢĽÄĄźĽëĄ§mp3, midi, ĽßĽ­ĽľĄź¤Ę¤É"
#: ../../share/compssUsers:999
msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgstr "Linux Standard Base. Third party applications support"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -13864,7 +14074,7 @@ msgstr "ssh ¤Ę¤ÉłĆźďĽ×ĽíĽČĽłĽëÍŃĽŻĽéĽ¤Ľ˘ĽóĽČ"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -13899,6 +14109,276 @@ msgid "Scientific Workstation"
msgstr "˛ĘłŘĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "ĽĐĽ°Ęóšđ¤ÎÄó˝Đ¤Ë¤ĎĄ˘ĄÖĘóšđĄ×ĽÜĽżĽó¤ňĽŻĽęĽĂĽŻ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁ\n"
+#~ "¤š¤ë¤ČwebĽÖĽéĽŚĽś¤ŹłŤ¤¤¤Ć https://www.bugzilla.com ¤Ź˝Đ¤Ţ¤šĄŁ\n"
+#~ "¤˝¤ł¤ËĘóšđ˝ń¤Ź¤˘¤ë¤Î¤ÇĄ˘ľ­Ćţ¤ˇ¤Ć¤Ż¤Ŕ¤ľ¤¤ĄŁžĺľ­¤ÎžđĘó¤Ď¤˝¤ÎĽľĄźĽĐ\n"
+#~ "¤ËĹžÁ÷¤ľ¤ě¤Ţ¤š\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "ľŻĆ°ĽšĽ×ĽéĽĂĽˇĽĺşîŔŽ ĽšĽĆĽĂĽ×2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "lilosplashŔßÄę¤ËšÔ¤Ż"
+
+#~ msgid "Go back"
+#~ msgstr "Ěá¤ë"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr "¤ł¤ÎĽľĽŚĽóĽÉĽŤĄźĽÉ (%s) ÍѤδűĂΤÎOSS/ALSAÂĺÂؼɼ鼤ĽĐ¤Ź¤˘¤ę¤Ţ¤ť¤ó"
+
+#~ msgid ""
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Mandrake Linux distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Mandrake Linux distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+#~ msgstr ""
+#~ "¤Ď¤¸¤á¤Ë\n"
+#~ "\n"
+#~ "ËÜĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤Ş¤č¤ÓMandrake LinuxĽÇĽŁĽšĽČĽęĽÓĽĺĄźĽˇĽçĽó¤Ç\n"
+#~ "Ä󜥤ľ¤ě¤ëłĆźď¤ÎĽłĽóĽÝĄźĽÍĽóĽČ¤ňĄ˘°Ę˛ź¤Ç¤ĎĄÖĽ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʥפȸƤ֥Ł\n"
+#~ "Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝Éʤϥ˘ĽŞĽÚĽěĄźĽĆĽŁĽóĽ°ĽˇĽšĽĆĽŕ¤Ş¤č¤ÓMandrake LinuxĽÇĽŁĽš\n"
+#~ "ĽČĽęĽÓĽĺĄźĽˇĽçĽó¤ÇÄ󜥤ľ¤ě¤ëłĆźď¤ÎĽłĽóĽÝĄźĽÍĽóĽČ¤Ë´ŘϢ¤š¤ëĽ×ĽíĽ°ĽéĽŕˇ˛\n"
+#~ "¤äĽáĽ˝ĽĂĽÉĄ˘¤­¤˝¤Ż¤äĽÉĽ­ĽĺĽáĽóĽĆĄźĽˇĽçĽó¤ň´Ţ¤ŕ¤ŹĄ˘¤˝¤ě¤Ë¸Â¤é¤ě¤ë¤â¤Î¤Ç\n"
+#~ "¤Ď¤Ę¤¤ĄŁ\n"
+#~ "\n"
+#~ "\n"
+#~ "1. ĽéĽ¤ĽťĽóĽšĆą°Őťöšŕ\n"
+#~ "\n"
+#~ "¤ł¤Îʸ˝ń¤ňżľ˝Ĺ¤ËĆɤó¤Ç¤Ż¤Ŕ¤ľ¤¤ĄŁËÜʸ˝ń¤Ď¤˘¤Ę¤ż¤ČMandrake S.A.¤Č¤Î´Ö¤Ç\n"
+#~ "Äůˇë¤ľ¤ě¤ëĄ˘Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʤËĹŹÍѤľ¤ě¤ëĽéĽ¤ĽťĽóĽšĆą°Őťöšŕ¤Ç¤šĄŁ\n"
+#~ "Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝Éʤň¤¤¤Ť¤Ę¤ëˇÁ¤Ç¤˘¤ěĽ¤ĽóĽšĽČĄźĽëĄ˘ĘŁŔ˝Ą˘ťČÍѤš¤ë¤ł¤Č¤Ç\n"
+#~ "¤˘¤Ę¤ż¤ĎĚŔź¨ĹŞ¤ËĄ˘Ëܼ鼤ĽťĽóĽš¤ÎÁ´žňˇď¤äžňšŕ¤Ë˝ž¤Ś¤ł¤Č¤ňźő¤ąĆţ¤ě\n"
+#~ "´°Á´¤ËĆą°Ő¤ˇ¤ż¤â¤Î¤Č¤ľ¤ě¤Ţ¤šĄŁ\n"
+#~ "Ëܼ鼤ĽťĽóĽš¤Î¤¤¤Ť¤Ę¤ëÉôĘŹ¤Ç¤˘¤ěĆą°Ő¤Ç¤­¤Ę¤ą¤ě¤ĐĄ˘Ľ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʤÎ\n"
+#~ "Ľ¤ĽóĽšĽČĄźĽëĄ˘ĘŁŔ˝Ą˘ťČÍѤĎǧ¤á¤é¤ě¤Ţ¤ť¤óĄŁ\n"
+#~ "Ëܼ鼤ĽťĽóĽš¤Îžňšŕ¤äžňˇď¤ËĹŹšç¤ˇ¤Ę¤¤ˇÁ¤ÇĽ˝ĽŐĽČĽŚĽ§Ľ˘Ŕ˝ÉʤňĽ¤ĽóĽšĽČĄźĽë\n"
+#~ "ĘŁŔ˝Ą˘ÍřÍѤˇ¤č¤Ś¤Č¤š¤ëťî¤ß¤ĎĚľ¸ú¤Ç¤˘¤ęĄ˘Ëܼ鼤ĽťĽóĽš˛ź¤Ç¤Î¤˘¤Ę¤ż¤Î¸˘Íř\n"
+#~ "¤ňÇíĂĽ¤š¤ë¤ł¤Č¤Č¤Ę¤ę¤Ţ¤šĄŁĽéĽ¤ĽťĽóĽš¤ÎÇË´ţ¤ËČź¤¤Ą˘¤˘¤Ę¤ż¤ĎĽ˝ĽŐĽČĽŚĽ§Ľ˘\n"
+#~ "Ŕ˝ÉʤÎĘŁŔ˝¤š¤Ů¤Ć¤ň¨şÂ¤ËÇ˲ő¤ˇ¤Ę¤ą¤ě¤Đ¤Ę¤ę¤Ţ¤ť¤óĄŁ\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI ĽĎĽ¤ĽŐĽŠĄźĽŤĽš"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy ¤Ď ftp://... ¤Ç¤š"
+
+#~ msgid "quit"
+#~ msgstr "˝ŞÎť"
+
+#~ 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"
@@ -14437,9 +14917,6 @@ msgstr "˛ĘłŘĽďĄźĽŻĽšĽĆĄźĽˇĽçĽó"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "ĽťĽ­ĽĺĽęĽĆĽŁĽěĽŮĽë¤ÎŔßÄęĂć"
-
#~ msgid "Select a graphics card"
#~ msgstr "Ľ°ĽéĽŐĽŁĽĂĽŻĽŤĄźĽÉ¤ňÁŞÂň¤ˇ¤Ć˛ź¤ľ¤¤"
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 5966e86c0..8330bed40 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-08-16 13:50+0900\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-09 09:08+0900\n"
"Last-Translator: Jaegeum Cze <baedaron@hanafos.com>\n"
"Language-Team: Korean <beadaron@hanafos.com>\n"
"MIME-Version: 1.0\n"
@@ -89,24 +89,24 @@ msgstr "¸đľç Çěľĺ¸Ś ľś¸łŔűŔ¸ˇÎ źłÁ¤"
msgid "Use Xinerama extension"
msgstr "Xinerama ČŽŔĺ ťçżë"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Ą¸%sĄš%s ÄŤľĺ¸¸ źłÁ¤"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s¸Ś ťçżëÇŃ 3D ÇĎľĺżţžî °ĄźÓ"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔť ÁöżřÇŐ´Ď´Ů."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s¸Ś ťçżëÇŃ ˝ÇÇčŔű 3D ÇĎľĺżţžî °ĄźÓ"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,12 +145,12 @@ msgstr ""
"´ÔŔÇ ÄŤľĺ´Â XFree %sˇÎ¸¸ °Ą´ÉÇŃ 3D ÇĎľĺżţžî °ĄźÓąâ´ÉŔĚ ÁöżřľË´Ď´Ů.\n"
"ÁÖŔÇ: ŔĚ°ÍŔş ˝ÇÇčŔűŔÎ ÁöżřŔĚ¸ç ´ÔŔÇ ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (źłÄĄ ÇĽ˝Ă ľĺśóŔĚšö)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "ťçżëŔÚ Á¤ŔÇ"
@@ -170,32 +170,32 @@ msgstr "ÇŘťóľľ"
msgid "Test"
msgstr "Ĺ×˝şĆŽ"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "ČŽŔÎ"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Ážˇá"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -291,25 +291,25 @@ msgstr "ÇŘťóľľżÍ ťöťóŔť źąĹĂÇĎźźżä"
msgid "Graphics card: %s"
msgstr "ą×ˇĄÇČ ÄŤľĺ: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "ĂëźŇ"
@@ -385,11 +385,11 @@ msgstr "XFree86 ź­šö: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ľĺśóŔĚšö: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "˝ĂŔ۽à šŮˇÎ X ˝ÇÇŕ"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -398,7 +398,7 @@ msgstr ""
"şÎĆýÿĄ ŔÚľżŔ¸ˇÎ XŔŠľľżě°Ą ˝ĂŔ۾ǾľˇĎ ÇŇźö ŔÖ˝Ŕ´Ď´Ů.\n"
"´Ů˝Ă şÎĆĂÇßŔťś§ ŔÚľżŔ¸ˇÎ XŔŠľľ°Ą ˝ĂŔŰľÇąć żřÇĎźźżä?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -410,7 +410,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "TV ÄŤľĺ°Ą žîś˛ łđŔť ťçżëÇŐ´Ďąî?"
@@ -482,7 +482,7 @@ msgstr "ÄŢĆŃľĺ ¸đľĺ"
msgid "compact"
msgstr "ÄŢĆŃĆŽ ¸đľĺ"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "şńľđżŔ ¸đľĺ"
@@ -490,17 +490,17 @@ msgstr "şńľđżŔ ¸đľĺ"
msgid "Delay before booting default image"
msgstr "ąâşť ŔĚšĚÁöˇÎ şÎĆĂľÉ ś§ąîÁö ÁöżŹ˝Ă°Ł"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "žĎČŁ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "žĎČŁ (ČŽŔÎ)"
@@ -534,14 +534,14 @@ msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "żÉźÇ: Ą¸¸íˇÉÇŕ żÉźÇÁŚÇŃĄšŔş žĎČŁžřŔĚ ťçżëľÉźö žř˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "´Ů˝Ă ˝ĂľľÇĎźźżä."
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "žĎČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů."
@@ -578,7 +578,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -586,155 +586,155 @@ msgstr ""
"¸î °ĄÁö Ç׸ńŔĚ żŠąâżĄ ÇĽ˝ĂľÇ°í ŔÖ˝Ŕ´Ď´Ů.\n"
"´ő Ăß°ĄÇĎ°ĹłŞ, ąâÁ¸ŔÇ °ÍľéŔť źöÁ¤ÇŇźö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Ăß°Ą"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "żĎˇá"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "şŻ°ć"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "žîś˛ ÁžˇůŔÇ Ç׸ńŔť Ăß°ĄÇϽðڽŔ´Ďąî?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "¸Ž´Ş˝ş"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "ąâŸ OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "ąâŸ OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "ąâŸ OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "ŔĚšĚÁö"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "ˇçĆŽ"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Ăß°Ą"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "ĂĘąâČ­ ˇĽľđ˝şĹŠ"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "ŔĐąâ-ž˛ąâ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Ĺ×ŔĚşí"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Ŕ§Çč"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Ç׸ń¸í"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "ąâşť°Ş"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "ˇĽľđ˝şĹŠ żëˇŽ"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "şńľđżŔ žřŔ˝"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Ç׸ń ÁŚ°Ĺ"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "şó Ç׸ń¸íŔş ÇăżëľÇÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "ÄżłÎ ŔĚšĚÁö¸Ś ÁöÁ¤ÇŘ ÁÖźźżä."
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "ˇçĆŽ ĆÄĆźźÇŔş šÝľĺ˝Ă ÁöÁ¤ľÇžîžß ÇŐ´Ď´Ů."
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "ŔĚ Ç׸ń¸íŔş ŔĚšĚ ťçżëľÇ°í ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s ŔÎĹÍĆäŔĚ˝ş°Ą °¨ÁöľÇžú˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "śÇ ´Ů¸Ľ°ÍŔĚ źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "śÇ ´Ů¸Ľ %s ŔÎĹÍĆäŔĚ˝ş°Ą źłÄĄľÇžî ŔÖ˝Ŕ´Ďąî?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "žĆ´ĎżŔ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "żš"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "ÇĎľĺżţžî Á¤ş¸ ş¸ąâ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%sÄŤľĺ ľĺśóŔĚšö %s źłÄĄÁß"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(%s ¸đľâ ťçżë)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -745,17 +745,17 @@ msgstr ""
"żÉźÇŔş ``Ŕ̸§=°Ş Ŕ̸§2=°Ş2 ...''Çü˝ÄŔ¸ˇÎ ÁöÁ¤ÇŐ´Ď´Ů..\n"
"°ĄˇÉ, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "¸đľâ żÉźÇľé:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "žîś˛ %s ľĺśóŔĚšö¸Ś ˝ĂľľÇŘ şž´Ďąî?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -772,15 +772,15 @@ msgstr ""
"ŔÚľż°ËťöŔş žîÂź´Ů°Ą ÄÄÇťĹ͸Ś ¸ŘĂß°Ô ÇŇ źöľľ ŔÖ˝Ŕ´Ď´Ů.ÇĎÁö¸¸,\n"
"ŔĺÄĄ¸Ś ČŃźŐÇĎÁö´Â žĘ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "ŔÚľż°Ëťö"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "żÉźÇ ÁöÁ¤"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -789,63 +789,61 @@ msgstr ""
"%s ¸đľâŔť ŔĐžîľéŔĚ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů.\n"
"´Ů¸Ľ °ŞŔ¸ˇÎ ´Ů˝Ă ˝ĂľľÇŘ ş¸˝Ă°Ú˝Ŕ´Ďąî?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "X ÇÁˇÎą×ˇĽ ž×źź˝ş"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "RPM ľľą¸ ž×źź˝ş"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "Ą¸suĄšÇăżë"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "˝Ă˝şĹŰ °ü¸ŽĆÄŔĎ ž×źź˝ş"
-#: ../../any.pm_.c:754
-#, fuzzy
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr "RPM ľľą¸ ž×źź˝ş"
+msgstr "ł×ĆŽż÷ ľľą¸ ž×źź˝ş"
-#: ../../any.pm_.c:755
-#, fuzzy
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr "RPM ľľą¸ ž×źź˝ş"
+msgstr "ÄÄĆÄŔĎ ľľą¸ ž×źź˝ş"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ŔĚšĚ %s´Â(Ŕş) Ăß°ĄľÇžú˝Ŕ´Ď´Ů.)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů."
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "ťçżëŔÚ¸íŔť ŔÔˇÂÇŘ ÁÖźźżä"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "ťçżëŔÚ¸íŔş żľšŽ źŇšŽŔÚłŞ źýŔÚ, '-' ą×¸Ž°í '_' ¸¸ Ć÷ÇԾɟö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "ťçżëŔÚ ¸íŔĚ łĘšŤ ąé´Ď´Ů."
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "ŔĚ ťçżëŔÚ¸íŔş ŔĚšĚ Ăß°ĄľÇžî ŔÖ˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "ťçżëŔÚ Ăß°Ą"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -854,32 +852,32 @@ msgstr ""
"ťçżëŔÚ ŔÔˇÂ\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "ťçżëŔÚ Çă°Ą"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "˝ÇÁŚ Ŕ̸§"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "ťçżëŔÚ¸í"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "¸íˇÉ ÇŘźŽąâ"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "žĆŔĚÄÜ"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "ŔÚľżˇÎą×ŔÎ"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -887,54 +885,54 @@ msgstr ""
"ŔÚľżŔ¸ˇÎ ĆŻÁ¤ ťçżëŔڡΟ­ ˇÎą×ŔξǾľˇĎ ÇŇ źö ŔÖ˝Ŕ´Ď´Ů.\n"
"Ŕ̡ą ĆŻźşŔť żřÇĎźźżä?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "ąâşť ťçżëŔÚ¸Ś źąĹĂÇĎźźżä:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "ťçżëÇŇ ŔŠľľżě ¸Ĺ´ĎŔú¸Ś źąĹĂÇĎźźżä:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "ťçżëÇŇ žđžî¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "¸đľÎ"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "¸đľç ťçżëŔÚ Çăżë"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "şń°řŔŻ"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr "NFSżÍ ťďšŮ Áß, žî´Ŕ °ÍŔť ŔĚżëÇϽðڽŔ´Ďąî?"
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ÇĘźö ĆŃĹ°Áö %s°Ą žř˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,41 +941,41 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "ťçżëŔھ塚ŔĚĹŠ ˝ÇÇŕ"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "ş¸žČżĄ ˝Ĺ°ćžČž¸"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "ĂÖŔú"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "ÇĽÁŘ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "łôŔ˝"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "´ő łôŔ˝"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "ĂÖ°í"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -987,7 +985,7 @@ msgstr ""
"żëŔĚÇĎ°ÚÁö¸¸ ¸Ĺżě šÎ°¨ÇĎ°Ô ŔŰľżÇŐ´Ď´Ů: ŔÎĹÍłÝŔĚłŞ ł×ĆŽż÷żĄ żŹ°áľČ ˝Ă˝şĹŰżë\n"
"Ŕ¸ˇÎ´Â ťçżëÇĎÁö ¸śźźżä. žĎČŁąâ´ÉŔĚ žř˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -995,23 +993,20 @@ msgstr ""
"žĎČŁąâ´ÉŔĚ ŔűżëľÇÁö¸¸, ł×ĆŽż÷żĄ żŹ°áľČ ÄÄÇťĹ͡ΠťçżëÇϹ⿥´Â žĆÁ÷ ŔűŔýÇĎÁö žĘ"
"˝Ŕ´Ď´Ů."
-#: ../../any.pm_.c:1083
-#, fuzzy
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
-"ŔĚ ľîąŢŔş ĹŹśóŔĚžđĆŽˇÎź­ ŔÎĹͳݿĄ Á˘źÓÇĎ´ÂľĽ Ŕű´çÇŃ ÇĽÁŘ ş¸žČľîąŢŔÔ´Ď´Ů.\n"
-"ŔĚ ľîąŢşÎĹÍ ŔűÁ¤ÇŃ ˝Ă˝şĹŰ ş¸žČ ÁĄ°Ëąâ´ÉŔĚ ŔÖ˝Ŕ´Ď´Ů. "
+"ŔĚ ľîąŢŔş ĹŹśóŔĚžđĆŽˇÎź­ ŔÎĹͳݿĄ Á˘źÓÇĎ´ÂľĽ Ŕű´çÇŃ ÇĽÁŘ ş¸žČľîąŢŔÔ´Ď´Ů."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
-#, fuzzy
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1022,43 +1017,43 @@ msgid ""
msgstr ""
"ŔĚ ş¸žČľîąŢŔ¸ˇÎ ŔĚ ˝Ă˝şĹŰŔť ź­šöˇÎ żîżëÇŇ źö ŔÖ°Ô ľË´Ď´Ů.\n"
"ŔĚ ş¸žČľîąŢŔş żÜşÎŔÇ ĹŹśóŔĚžđĆŽľéŔÇ Á˘źÓŔť šŢžĆľéŔĚ´ÂľĽ ŔÖžîź­ \n"
-"ĂćşĐČ÷ łôŔş ş¸žČľîąŢŔÔ´Ď´Ů. "
+"ĂćşĐČ÷ łôŔş ş¸žČľîąŢŔÔ´Ď´Ů. ÁÖŔÇ: ŔÎĹÍłÝ ĹŹśóŔĚžđĆŽˇÎ ÄÄÇťĹ͸Ś ťçżëÇѴٸé, "
+"´ő łˇŔş ľîąŢŔť źąĹĂÇĎźźżä."
-#: ../../any.pm_.c:1088
-#, fuzzy
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
-"ş¸žČ 4 ľîąŢŔĚ ŔűżëľË´Ď´Ů. ˝Ă˝şĹŰŔĚ żĎŔüČ÷ żÜşÎÁ˘ąŮżĄź­ °Ý¸ŽľË´Ď´Ů.\n"
-"ĂÖ°í ş¸žČ źöÁŘŔÔ´Ď´Ů."
+"ŔĚŔü ľîąŢ°ú şń˝ÁÇĎÁö¸¸, ˝Ă˝şĹŰŔĚ żĎŔüČ÷ żÜşÎÁ˘ąŮżĄź­ °Ý¸ŽľË´Ď´Ů. ĂÖ°í ş¸žČ źö"
+"ÁŘŔÔ´Ď´Ů."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec ąâşť żÉźÇ"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Čń¸ÁÇĎ´Â ş¸žČ ´Ü°č¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "ş¸žČ źöÁŘ"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "ź­šöżĄ ´ëÇŘ libsafe ťçżë"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "šöĆŰ łŃħŔĚłŞ Çü˝ÄČ­ šŽŔÚż­ °ř°ÝŔť ¸ˇ´Â śóŔ̺ꡯ¸Ž."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "ş¸žČ °ü¸ŽŔÚ (ˇÎą×ŔÎ śÇ´Â Ŕ̸ŢŔĎ)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1066,7 +1061,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1086,58 +1081,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr ""
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "ľĽ˝şĹŠĹž"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "˝ĂŔŰ ¸Ţ´ş"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Ą¸%sĄšĆÄĆźźÇżĄ şÎĆŽˇÎ´ő¸Ś źłÄĄÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "žĆÁ÷ ľľżň¸ťŔĚ ÁŘşńľÇÁö žĘžŇ˝Ŕ´Ď´Ů.\n"
@@ -1189,103 +1184,102 @@ msgstr "LILO/Grub ¸đľĺ"
msgid "Yaboot mode"
msgstr "Yaboot ¸đľĺ"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Ĺ׸ś źłÄĄ"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "ÄÜźÖÇĎżĄź­ Ĺ׸ś ş¸ŔĚąâ"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "ťő ĆÄĆźźÇ ¸¸ľéąâ"
+msgstr "ťő Ĺ׸ś ¸¸ľéąâ"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "%s¸Ś %s.oldˇÎ šéž÷"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "żŔˇů"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "¸ąˇÎ ¸Ţ˝ĂÁö¸Ś šéž÷ÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "%s¸Ś %sˇÎ şšťç"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "¸ąˇÎ ¸Ţ˝ĂÁö¸Ś şŻ°ćÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "¸ąˇÎ ¸Ţ˝ĂÁö¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "%s ąâˇĎ"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "¸ąˇÎ Ŕç˝ÇÇŕ"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "ÁÖŔÇ"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Ĺ׸ś źłÄĄ ˝ÇĆĐ!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1294,21 +1288,21 @@ msgstr ""
"ÇöŔç şÎĆŽ °ü¸ŽŔڡΠ%s¸Ś ťçżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů.\n"
"źłÁ¤ ¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é Ą¸źłÁ¤ĄšŔť ´Š¸Łźźżä."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "źłÁ¤"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "˝şÇ᥽Ź źąĹĂ"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Ĺ׸ś"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1317,44 +1311,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "¸ąˇÎ ˝şĹŠ¸°"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "şÎĆŽ˝şÇáš˝Ź"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "˝Ă˝şĹŰ ¸đľĺ"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "˝ĂŔŰÇŇ ś§ X-Window ˝ÇÇŕ"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "žĆ´ĎżŔ, ŔÚľżˇÎą×ŔÎŔť ťçżëÇĎÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "żš, ŔÚľżˇÎą×ŔÎŔť ťçżëÇŐ´Ď´Ů."
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "ČŽŔÎ"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "Ą¸/etc/inittabĄšĆÄŔĎŔť ŔĐŔť źö žř˝Ŕ´Ď´Ů: %s"
@@ -1390,14 +1384,13 @@ msgid "%d seconds"
msgstr "%d ĂĘ"
#: ../../common.pm_.c:159
-#, fuzzy
msgid "Can't make screenshots before partitioning"
-msgstr "´őŔĚťó ĆÄĆźźÇŔť Ăß°ĄÇŇ źö žř˝Ŕ´Ď´Ů."
+msgstr "ĆÄĆźźÇŔť łŞ´Šąâ ŔüżĄ´Â ˝şĹŠ¸°źŚŔť ¸¸ľé źö žř˝Ŕ´Ď´Ů."
#: ../../common.pm_.c:166
-#, fuzzy, c-format
+#, c-format
msgid "Screenshots will be available after install in %s"
-msgstr "źłÄĄČÄ ´Ů¸Ľ ´Ů¸Ľ žđžî¸Ś źąĹĂÇŇźö ŔÖ˝Ŕ´Ď´Ů."
+msgstr "˝şĹŠ¸°źŚŔş źłÄĄČÄżĄ %sżĄ ŔÖ˝Ŕ´Ď´Ů."
#: ../../crypto.pm_.c:14 ../../crypto.pm_.c:28 ../../network/tools.pm_.c:104
#: ../../network/tools.pm_.c:113
@@ -1452,53 +1445,58 @@ msgstr "żŔ˝şĆŽ¸ŽžĆ"
msgid "United States"
msgstr "šĚąš"
-#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "ťőˇÎ ¸¸ľéąâ"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "¸śżîĆŽ"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "ź­šö"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
-msgstr "CD ˇšÄÚ´ő źÓľľ¸Ś ŔÔˇÂÇĎźźżä."
+msgstr "WebDAV ź­šö URLŔť ŔÔˇÂÇĎźźżä."
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
-msgstr "ź­šö"
+msgstr "ź­šö:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "¸śżîĆŽ Ŕ§ÄĄ: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "żÉźÇľé: %s"
@@ -1553,9 +1551,8 @@ msgid "Details"
msgstr "ťóźźźł¸í"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr "ÇÁ¸°Ĺ͸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
+msgstr "ÇĎľĺ ľđ˝şĹŠ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů."
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1587,7 +1584,7 @@ msgstr "şó°ř°Ł"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "ąâŸ"
@@ -1729,7 +1726,7 @@ msgstr ""
"šéž÷ ĆÄĆźźÇ Ĺ×ŔĚşí ĹŠąâ°Ą °°Áö žĘ˝Ŕ´Ď´Ů.\n"
"°čźÓ ÇϽðڽŔ´Ďąî?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "°ć°í"
@@ -1848,9 +1845,9 @@ msgstr ""
"loopbackŔť ¸ŐŔú ÁŚ°ĹÇĎźźżä."
#: ../../diskdrake/interactive.pm_.c:594
-#, fuzzy, c-format
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "ŔĺÄĄ %s¸Ś žîľđżĄ ¸śżîĆŽ ÇϽðڽŔ´Ďąî?"
+msgstr "%s¸Ś žîľđżĄ ¸śżîĆŽ ÇϽðڽŔ´Ďąî?"
#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
@@ -2108,9 +2105,9 @@ msgid ", %s sectors"
msgstr ", %s ź˝ĹÍ"
#: ../../diskdrake/interactive.pm_.c:1112
-#, fuzzy, c-format
+#, c-format
msgid "Cylinder %d to %d\n"
-msgstr "%d ˝Ç¸°´őşÎĹÍ %d ˝Ç¸°´őąîÁö\n"
+msgstr "˝Ç¸°´ő %dżĄź­ %dąîÁö\n"
#: ../../diskdrake/interactive.pm_.c:1113
msgid "Formatted\n"
@@ -2223,23 +2220,21 @@ msgid "on channel %d id %d\n"
msgstr "%d šö˝şťóżĄź­ ID %d\n"
#: ../../diskdrake/interactive.pm_.c:1186
-#, fuzzy
msgid "Filesystem encryption key"
-msgstr "ĆÄŔϽýşĹŰ ŔŻÇü: "
+msgstr "ĆÄŔϽýşĹŰ žĎČŁČ­ Ĺ°"
#: ../../diskdrake/interactive.pm_.c:1187
msgid "Choose your filesystem encryption key"
msgstr "ĆÄŔĎ ˝Ă˝şĹŰ žĎČŁČ­ Ĺ° źąĹĂ"
#: ../../diskdrake/interactive.pm_.c:1190
-#, fuzzy, c-format
+#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
-msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů.( Ŕűžîľľ %d ąŰŔÚ´Â łŃžîžß ÇŐ´Ď´Ů)"
+msgstr "ŔĚ žĎČŁČ­ Ĺ°´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů.( Ŕűžîľľ %d ąŰŔÚ´Â łŃžîžß ÇŐ´Ď´Ů)"
#: ../../diskdrake/interactive.pm_.c:1191
-#, fuzzy
msgid "The encryption keys do not match"
-msgstr "žĎČŁ°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů."
+msgstr "žĎČŁČ­ Ĺ°°Ą ŔĎÄĄÇĎÁö žĘ˝Ŕ´Ď´Ů."
#: ../../diskdrake/interactive.pm_.c:1194
msgid "Encryption key"
@@ -2263,14 +2258,12 @@ 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 "ťçżëŔÚ ŔÎÁő"
+msgstr "ľľ¸ŢŔÎ ŔÎÁőŔĚ ÇĘżäÇŐ´Ď´Ů."
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
-#, fuzzy
msgid "Another one"
-msgstr "ŔÎĹÍłÝ"
+msgstr "śÇ ´Ů¸Ľ °Í"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
msgid "Which username"
@@ -2281,7 +2274,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:3529
msgid "Username"
msgstr "ťçżëŔÚ¸í"
@@ -2293,23 +2286,23 @@ msgstr "ľľ¸ŢŔÎ"
msgid "Search servers"
msgstr "ź­šö °Ëťö"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Ć÷¸Ë ˝ÇĆĐ(ľĺśóŔĚşę %s)"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s´Â %s ŔŻÇüŔ̚ǡΠĆ÷¸ËÇŇźö žř˝Ŕ´Ď´Ů."
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s¸Ś žđ¸śżîĆŽÁß żŔˇůšßťý: %s"
@@ -2371,17 +2364,16 @@ msgid "This directory should remain within the root filesystem"
msgstr "ŔĚ ľđˇşĹ与´Â ˇçĆŽ ĆÄŔϽýşĹŰ žČżĄ ŔÖžîžß ÇŐ´Ď´Ů."
#: ../../fsedit.pm_.c:530
-#, fuzzy
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
-"ŔĚ ¸śżîĆŽ Ŕ§ÄĄżĄ´Â ĆŽˇç ĆÄŔϽýşĹŰ (ext2, reiserfs)ŔĚ ¸śżîĆŽ ľÇžîžß ÇŐ´Ď´Ů.\n"
+"ŔĚ ¸śżîĆŽ Ŕ§ÄĄżĄ´Â ĆŽˇç ĆÄŔϽýşĹŰ (ext2, reiserfs, xfs, jfs)ŔĚ ÇĘżäÇŐ´Ď´Ů.\n"
#: ../../fsedit.pm_.c:532
-#, fuzzy, c-format
+#, c-format
msgid "You can't use an encrypted file system for mount point %s"
-msgstr " %s ¸śżîĆŽ Ć÷ŔÎĆŽˇÎ LVM łí¸ŽşźˇýŔť ťçżëÇŇ źö´Â žř˝Ŕ´Ď´Ů. "
+msgstr " %s ¸śżîĆŽ Ŕ§ÄĄżĄ´Â žĎČŁČ­ ĆÄŔϽýşĹŰŔť ťçżëÇŇ źö žř˝Ŕ´Ď´Ů. "
#: ../../fsedit.pm_.c:599
msgid "Not enough free space for auto-allocating"
@@ -2396,47 +2388,107 @@ msgstr "ÇŇ ŔĎ žřŔ˝."
msgid "Error opening %s for writing: %s"
msgstr "%s¸Ś ž˛ąâŔ§ÇŘ żŠ´ÂÁß żŔˇůšßťý: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "CUPS źłÁ¤"
+msgstr "ťçżîľĺ źłÁ¤"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
-msgstr "ľĺśóŔĚšö"
+msgstr "ľĺśóŔĚšö:"
+
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "ľľżň¸ť"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "ąâ´ŮˇÁ ÁÖźźżä... źłÁ¤Ŕť ŔűżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů."
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "ąâ´ŮˇÁ ÁÖźźżä"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr "žË źöžř´Â ¸đľ¨"
+msgstr "žË źö žř´Â ľĺśóŔĚšö"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2541,9 +2593,8 @@ msgid "the vendor name of the device"
msgstr ""
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "˝ĂÇč ĆäŔĚÁö Č°źşČ­ (A4)"
+msgstr "´ëĂź ľĺśóŔĚšöľé"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
@@ -2554,7 +2605,8 @@ msgid "/_Quit"
msgstr "/Ážˇá(_Q)"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/ľľżň¸ť(_H)"
@@ -2573,69 +2625,70 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/šöą× ş¸°í(_R)"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/Á¤ş¸(_A)..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "ÇĎľĺ ľĺˇšŔĚĹŠ Á¤ş¸"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "ÁŚŔŰŔÚ:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "ÇĎľĺ ľĺˇšŔĚĹŠ 2 šöŔü"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "°ËťöľČ ÇĎľĺżţžî"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Á¤ş¸"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "¸đľâ źłÁ¤"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "źłÁ¤ ľľą¸ ˝ÇÇŕ"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "°Ëťö ÁřÇŕ Áß"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "ąâ´ŮˇÁ ÁÖźźżä"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Ą¸%sĄš ˝ÇÇŕ Áß..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "ÁÖ"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "ľÎšř°"
@@ -4188,7 +4241,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4213,7 +4266,7 @@ msgstr ""
"\n"
"Á¤¸ťˇÎ ŔĚ ź­šöľéŔť źłÄĄÇŐ´Ďąî?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4222,20 +4275,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "NIS ľľ¸ŢŔÎ žřŔĚ´Â şęˇÎľĺÄÉ˝şĆŽ¸Ś ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "ÇáÎÇÇ ľđ˝şĹŠ¸Ś %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "ŔĚ ÇáÎÇÇ ľđ˝şĹŠ´Â FAT Ć÷¸ËŔĚ žĆ´Ő´Ď´Ů."
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4243,12 +4296,12 @@ msgstr ""
"ŔĚ ŔúŔĺľČ ĆŃĹ°Áö źąĹøńˇĎŔť ťçżëÇҡÁ¸é, ``linux defcfg=floppy''śó°í ŔÔˇÂÇĎżŠ "
"źłÄĄŔť ˝ĂŔŰÇĎźźżä."
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "%s ĆÄŔĎŔť ŔĐ´ÂÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů."
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4490,7 +4543,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "%sżĄ żŔ˝Ĺ°ÍŔť ČŻżľÇŐ´Ď´Ů."
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "ÇáÎÇÇ ľĺśóŔ̺긌 ťçżëÇŇ źö žř˝Ŕ´Ď´Ů."
@@ -4522,11 +4575,11 @@ msgstr "źłÄĄ ŔŻÇü"
msgid "Please choose one of the following classes of installation:"
msgstr "´ŮŔ˝ źłÄĄ ŔŻÇüÁß ÇĎłŞ¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "ĆŃĹ°Áö ą×ˇě źąĹĂ"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "°łş° ĆŃĹ°Áö źąĹĂ"
@@ -4602,7 +4655,7 @@ msgstr "ŔÚľżŔ¸ˇÎ źąĹĂľČ ĆŃĹ°Áöľé ş¸ŔĚąâ"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "źłÄĄ"
@@ -4622,7 +4675,7 @@ msgstr "ĂÖźŇ źłÄĄ"
msgid "Choose the packages you want to install"
msgstr "źłÄĄÇĎ°íŔÚ ÇĎ´Â ĆŃĹ°Áö¸Ś źąĹĂÇĎźźżä."
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "źłÄĄÁß"
@@ -4649,17 +4702,17 @@ msgid "Installing package %s"
msgstr "%s ĆŃĹ°Áö źłÄĄÁß"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "ľżŔÇ"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "°ĹşÎ"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4674,16 +4727,16 @@ msgstr ""
"¸¸žŕ CDROMŔť °ĄÁö°í ŔÖÁö žĘ´Ů¸é, Ą¸ĂëźŇĄš¸Ś ´­ˇŻ Ăß°Ą źłÄĄ¸Ś ĂëźŇÇĎźźżä."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "°čźÓ ÁřÇŕÇŐ´Ďąî?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "ĆŃĹ°Áö¸Ś Á¤ˇÄÇĎ´Â Áß żŔˇůšßťý:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "´ŮŔ˝ ĆŃĹ°Áö¸Ś źłÄĄÁß żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů: "
@@ -4779,7 +4832,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4857,7 +4910,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Ĺ°ş¸ľĺ"
@@ -5060,29 +5113,29 @@ msgstr "ĆŃĹ°Áö źąĹøńˇĎ ÇáÎÇÇ ľđ˝şĹŠ¸Ś łÖŔ¸źźżä."
msgid "Selected size is larger than available space"
msgstr "źąĹĂľČ żëˇŽŔĚ ťçżëÇŇ źö ŔÖ´Â °ř°Łş¸´Ů ĹŽ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5092,16 +5145,16 @@ msgstr ""
"ŔüÇô °ĄÁö°í ŔÖÁö žĘ´Ů¸é, Ą¸ĂëźŇĄš¸Ś, \n"
"ŔϺθ¸ °ĄÁö°í Ŕִٸé, žř´Â CD¸Ś źąĹĂÇŘÁŚÇŃ ČÄżĄ Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Ą¸%sĄšśó°í ÇĽ˝ĂľČ CDROM"
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5110,21 +5163,21 @@ msgstr ""
" %s ĆŃĹ°Áö źłÄĄ Áß... \n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "źłÄĄŔü ČŻ°ćźłÁ¤"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "şÎĆĂ ÇáÎÇǸŚ %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "ž÷ľĽŔĚĆŽ ¸đľâ ÇáÎÇǸŚ %s ľĺśóŔ̺꿥 łÖŔ¸źźżä"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5163,7 +5216,7 @@ msgid ""
"USA"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5175,154 +5228,154 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr "ŔŻČżÇŃ šĚˇŻ ¸ńˇĎŔť šŢąâ Ŕ§ÇŘ ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş ŔĽťçŔĚĆŽżĄ Á˘źÓ Áß..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "ĆŃĹ°Áö¸Ś šŢŔť šĚˇŻ ťçŔĚĆŽ¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "ťçżë°Ą´ÉÇŃ ĆŃĹ°ÁöŔÇ ¸Ž˝şĆŽ¸Ś šĚˇŻ ťçŔĚĆŽżĄ Á˘źÓÇŘź­ šŢ˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "´ÔŔÇ ˝Ă°Ł´ë´Â žîľđŔÔ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "ÇĎľĺżţžî ˝Ă°č GMT źłÁ¤"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "ŔÚľż ˝Ă°Ł ľżąâČ­ (NTP ťçżë)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP ź­šö"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "żř°Ý CUPS ź­šö"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "ÇÁ¸°ĹÍ žřŔ˝"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ISA ťçżîľĺ ÄŤľĺ°Ą ŔÖ˝Ŕ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "żäžŕźł¸í"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "¸śżě˝ş"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "˝Ă°Ł´ë"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "ÇÁ¸°ĹÍ"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN ÄŤľĺ"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "ťçżîľĺ ÄŤľĺ"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV ÄŤľĺ"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "ŔŠľľżěÁî ľľ¸ŢŔÎ"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "ÁöżŞ ĆÄŔĎľé"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root žĎČŁ źłÁ¤"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "žĎČŁ žřŔ˝"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "ŔĚ žĎČŁ´Â łĘšŤ ´ÜźřÇŐ´Ď´Ů.( Ŕűžîľľ %d ąŰŔÚ´Â łŃžîžß ÇŐ´Ď´Ů)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "ťçżëŔÚ ŔÎÁő"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "ŔÎÁő LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP ąâšÝ DN"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP ź­šö"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "ŔÎÁő NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS ľľ¸ŢŔÎ"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS ź­šö"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5338,19 +5391,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "ŔÎÁő ŔŠľľżěÁî ľľ¸ŢŔÎ"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "ľľ¸ŢŔÎ °ü¸ŽŔÚ ťçżëŔÚ¸í"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5368,19 +5421,19 @@ msgid ""
"drive and press \"Ok\"."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Ăššř° ÇáÎÇÇ ľĺśóŔĚşę"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "ľÎšř° ÇáÎÇÇ ľĺśóŔĚşę"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "°ÇłĘśŮąâ"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5403,7 +5456,7 @@ msgstr ""
"¸¸ľĺ˝Ă°Ú˝Ŕ´Ďąî?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5412,28 +5465,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "ÁËźŰÇŐ´Ď´Ů. ťçżë°Ą´ÉÇŃ ÇáÎÇÇ ľĺśóŔĚşę°Ą žř˝Ŕ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "şÎĆŽ ľđ˝şĹŠ¸Ś ¸¸ľéś§ ťçżëÇŇ ÇáÎÇÇ ľĺśóŔ̺긌 źąĹĂÇŘ ÁÖźźżä"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "%sżĄ ÇÁˇÎÇǸŚ łÖŔ¸źźżä."
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "şÎĆŽ ľđ˝şĹŠ ťýźşÁß"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "şÎĆŽ ˇÎ´ő ÁŘşńÁß"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5441,11 +5494,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "aboot¸Ś ťçżëÇϽðڽŔ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5453,15 +5506,15 @@ msgstr ""
"aboot źłÄĄ ˝ÇĆĐ. \n"
"Ăššř° ĆÄĆźźÇŔť ČŃźŐÇŇÁöśóľľ °­ÁŚ źłÄĄÇŇąîżä?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "şÎĆŽˇÎ´ő źłÄĄ Áß"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "şÎĆŽˇÎ´ő źłÄĄ°Ą ˝ÇĆĐÇß˝Ŕ´Ď´Ů. ´ŮŔ˝°ú °°Ŕş żŔˇů°Ą šßťýÇß˝Ŕ´Ď´Ů:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5478,17 +5531,17 @@ msgstr ""
"shut-down\n"
"ą×ˇŻ°íłŞ¸é ´ŮŔ˝şÎĹÍ´Â şÎĆŽˇÎ´ő ÇÁˇŇÇÁĆŽ¸Ś şź źö ŔÖŔť °ÍŔÔ´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s ľĺśóŔ̺꿥 şó ÇáÎÇÇ ľđ˝şĹŠ¸Ś łÖŔ¸źźżä"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ ťýźş Áß"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5498,8 +5551,8 @@ msgstr ""
"\n"
"Á¤¸ť ÁöąÝ Ážˇá ÇϽðڽŔ´Ďąî?"
-#: ../../install_steps_interactive.pm_.c:1316
-#, fuzzy, c-format
+#: ../../install_steps_interactive.pm_.c:1317
+#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -5520,23 +5573,23 @@ msgstr ""
"şÎĆŽ šĚľđžî¸Ś ÁŚ°ĹÇĎ°í ¸ŽĹĎŔť ´­ˇŻź­ ¸ŽşÎĆĂ ÇĎźźżä.\n"
"\n"
"\n"
-"ŔĚ šöŔüŔÇ ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝şŔÇ šöą×źöÁ¤ Á¤ş¸´Â http://www.linux-mandrake.com/"
-"en/82errata.php3\n"
+"ŔĚ šöŔüŔÇ ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝şŔÇ šöą×źöÁ¤ Á¤ş¸´Â\n"
+"%s\n"
"żĄź­ žňŔ¸˝Ç źö ŔÖ˝Ŕ´Ď´Ů.\n"
"\n"
"\n"
"źłÄĄČÄ ˝Ă˝şĹŰ źłÁ¤żĄ ´ëÇŃ Á¤ş¸´Â °ř˝Ä ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş ŔŻŔú °ĄŔ̾希\n"
"Âü°íÇϽù⠚ٜř´Ď´Ů."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr ""
+msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "ŔÚľż źłÄĄ ÇáÎÇÇ ľđ˝şĹŠ ťýźş"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5550,15 +5603,15 @@ msgstr ""
"\n"
"ŔĎšÝŔűŔ¸ˇÎ Á÷Á˘ źłÄĄÇĎ´Â °ÍŔĚ ÁÁ˝Ŕ´Ď´Ů.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "ŔÚľż"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Ŕç˝Ăľľ"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "źąĹĂľČ ĆŃĹ°Áö ¸ńˇĎ ŔúŔĺ"
@@ -5594,14 +5647,14 @@ msgstr "°íąŢ"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "´ŮŔ˝"
@@ -6044,7 +6097,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "źřČŻ ¸śżîĆŽ %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "łí¸Ž şźˇýŔť ¸ŐŔú ÁŚ°ĹÇŘ ÁÖźźżä.\n"
@@ -6104,9 +6157,8 @@ msgid "Genius NetScroll"
msgstr "Áö´Ďžî˝ş łÝ˝şĹŠˇŃ"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "¸śŔĚĹŠˇÎźŇÇÁĆŽ ŔÎĹÚ¸Ž¸śżě˝ş"
+msgstr "¸śŔĚĹŠˇÎźŇÇÁĆŽ ŔÍ˝şÇáΡŻ"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
@@ -6180,24 +6232,23 @@ msgstr "žřŔ˝"
msgid "No mouse"
msgstr "¸śżě˝ş žřŔ˝"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "¸śżě˝ş¸Ś Ĺ×˝şĆŽÇĎźźżä."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "¸śżě˝ş¸Ś Č°źşČ­ÇϡÁ¸é"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "¸śżě˝şČŮŔť żňÁ÷żŠ ş¸źźżä."
#: ../../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-*"
+"-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-1,-*-gulim-bold-r-normal--"
+"25-*-*-*-c-*-ksc5601.1987-0,*-r-*"
#: ../../my_gtk.pm_.c:159
msgid "Finish"
@@ -6227,11 +6278,11 @@ msgstr "ĆŽ¸Ž Á˘ąâ"
msgid "Toggle between flat and group sorted"
msgstr "ą×ˇěş°/ĆŃĹ°Áöş° Á¤ˇÄ ŔüČŻ"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "ŔÎĹͳݿĄ żŹ°á"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6241,53 +6292,43 @@ msgstr ""
"ÇĎÁö¸¸, žîś˛ °ćżěżĄ´Â PPTPłŞ, ąŘČ÷ ľĺš°°Ô´Â DHCPľľ ťçżëľË´Ď´Ů.\n"
"Ŕß ¸đ¸Ł°Ú´Ů¸é, Ą¸PPPOE ťçżëĄšŔť źąĹĂÇĎźźżä."
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "žËÄŤĹÚ ˝şÇÇľĺĹÍÄĄ USB"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "DHCP ťçżë"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "PPPOE ťçżë"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "PPTP ťçżë"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr "ź­šö"
+msgstr "ŔĽ ź­šö"
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "ľľ¸ŢŔÎ ł×ŔÓ ÇŘ°áťç"
+msgstr "ľľ¸ŢŔÎ ł×ŔÓ ź­šö"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "ź­šö ťçżë"
+msgstr "¸ŢŔĎ ź­šö"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "LDAP ź­šö"
+msgstr "POP and IMAP ź­šö"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
-msgstr "ł×ĆŽż÷ ÄŤľĺ¸Ś ĂŁŔťźö žř˝Ŕ´Ď´Ů"
+msgstr "ł×ĆŽż÷ ÄŤľĺ žřŔ˝"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6295,9 +6336,9 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"TinyFirewall źłÁ¤\n"
+"ľĺˇšŔĚĹŠ šćČ­şŽ °ü¸ŽŔÚ\n"
"\n"
-"ŔĚ°ÍŔş ¸Ž´Ş˝ş ¸ÇľĺˇšŔĚĹŠ ˝Ă˝şĹŰŔÇ °łŔÎ šćČ­şŽŔť źłÁ¤ÇŐ´Ď´Ů.\n"
+"ŔĚ°ÍŔş ¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş ˝Ă˝şĹŰŔÇ °łŔÎ šćČ­şŽŔť źłÁ¤ÇŐ´Ď´Ů.\n"
"°­ˇÂÇŃ ŔüšŽ šćČ­şŽŔť ťçżëÇĎ°í ˝Í´Ů¸é, ¸ÇľĺˇšŔĚĹŠ ş¸žČ šćČ­şŽ\n"
"ščĆ÷ĆÇŔť ą¸ÇϽù⠚ٜř´Ď´Ů."
@@ -6325,9 +6366,8 @@ msgid "Everything (no firewall)"
msgstr ""
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "Ć÷ĆŽ °Ëťç"
+msgstr "ąâŸ Ć÷ĆŽ"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -6358,7 +6398,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:362
msgid "Configuring network"
msgstr "ł×ĆŽż÷ źłÁ¤"
@@ -6374,15 +6414,15 @@ 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:367
msgid "Host name"
msgstr "ČŁ˝şĆŽ¸í:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "ł×ĆŽż÷ źłÁ¤ ¸śšýťç"
@@ -6430,8 +6470,8 @@ msgid "Old configuration (isdn4net)"
msgstr "ąâÁ¸ŔÇ źłÁ¤ (ISDN4NET)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN źłÁ¤"
@@ -6467,23 +6507,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "žîś˛ ÇÁˇÎĹäÄÝŔť ťçżëÇϽðڽŔ´Ďąî?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "žîś˛ ÁžŔŻŔÇ ÄŤľĺ¸Ś °ĄÁö°í ŔÖ˝Ŕ´Ďąî?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "¸đ¸Ł°ÚŔ˝"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6496,19 +6541,19 @@ msgstr ""
"\n"
"¸¸žŕ PCMCIA ÄŤľĺ¸Ś °ĄÁö°í Ŕִٸé, IRQżÍ IO °ŞŔť žË°í ŔÖžîžß ÇŐ´Ď´Ů.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "ÁßÁö"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "°čźÓ"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "žî´Ŕ °ÍŔĚ ´ÔŔÇ ISDN ÄŤľĺŔÔ´Ďąî?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6516,7 +6561,7 @@ msgstr ""
"ISDN PCI ÄŤľĺ°Ą °¨ÁöľÇžúÁö¸¸, ą× ŔŻÇüŔť žË źö žř˝Ŕ´Ď´Ů. ´ŮŔ˝ Č­¸éżĄź­ PCI ÄŤ"
"ľĺ¸Ś źąĹĂÇŘ ÁÖźźżä."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "ISDN PCI ÄŤľĺ °Ëťö ˝ÇĆĐ. ´ŮŔ˝ Č­¸éżĄź­ Á÷Á˘ źąĹĂÇŘ ÁÖźźżä."
@@ -6568,7 +6613,7 @@ msgstr "Ăššř° DNS ź­šö (żÉźÇ)"
msgid "Second DNS Server (optional)"
msgstr "ľÎšř° DNS ź­šö (żÉźÇ)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6576,7 +6621,7 @@ msgstr ""
"\n"
"żŹ°áŔť ÇŘÁŚÇĎ°ĹłŞ ´Ů˝Ă źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6584,11 +6629,11 @@ msgstr ""
"\n"
"żŹ°áŔť ´Ů˝Ă źłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "ÇöŔç ŔÎĹͳݿĄ żŹ°áľÇžî ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6596,32 +6641,32 @@ msgstr ""
"\n"
"ŔÎĹͳݿĄ żŹ°áÇĎ°ĹłŞ żŹ°áŔť ŔçźłÁ¤ÇŇ źö ŔÖ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "ÇöŔç ŔÎĹͳݿĄ żŹ°áľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "żŹ°á"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "żŹ°á ˛÷ąâ"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "żŹ°á źłÁ¤"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "ŔÎĹÍłÝ żŹ°á & źłÁ¤"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "ŔĚÁŚ Ą¸%sĄšżŹ°áŔť źłÁ¤ÇŇ °ÍŔÔ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6640,12 +6685,12 @@ msgstr ""
"\n"
"˝ĂŔŰÇϡÁ¸é Ą¸ČŽŔÎĄšŔť ´Š¸Łźźżä."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "ł×ĆŽż÷ ČŻ°ć źłÁ¤"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6657,7 +6702,7 @@ msgstr ""
"Ą¸ČŽŔÎĄšŔť ´­ˇŻ ÇöŔç źłÁ¤Ŕť ŔŻÁöÇĎ°ĹłŞ, Ą¸ĂëźŇĄš¸Ś ´­ˇŻ ŔÎĹÍłÝ/ł×ĆŽż÷ żŹ°áŔť "
"´Ů˝Ă źłÁ¤ÇĎźźżä.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6669,72 +6714,72 @@ msgstr ""
"ÁöąÝ ŔÎĹÍłÝ/ł×ĆŽż÷ żŹ°áŔť źłÁ¤ÇϡÁ ÇŐ´Ď´Ů.\n"
"ŔÚľż °ËťöŔť ťçżëÇĎ°í ˝ÍÁö žĘ´Ů¸é, ßŊšÚ˝ş¸Ś ÇŘÁŚÇĎźźżä.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "źłÁ¤ÇŇ ÇÁˇÎĆÄŔĎŔť źąĹĂÇĎźźżä."
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "ŔÚľż°Ëťö ťçżë"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "ŔĺÄĄ¸Ś °ËťöÇĎ°í ŔÖ˝Ŕ´Ď´Ů..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "ŔĎšÝ ¸đľŠ żŹ°á"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "%s Ć÷ĆŽżĄź­ šß°ß"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN żŹ°á"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s šß°ß"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL żŹ°á"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "ŔÎĹÍĆäŔĚ˝ş %sťóżĄź­ šß°ß"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "ÄłŔĚşí żŹ°á"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "ÄłŔĚşí żŹ°á šß°ß"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN żŹ°á"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ŔĚ´őłÝ ÄŤľĺ šß°ß"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "źłÁ¤ÇŇ żŹ°áŔť źąĹĂÇĎźźżä."
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6744,23 +6789,23 @@ msgstr ""
"żŹ°áżĄ ťçżëÇŇ šć˝ÄŔť źąĹĂÇĎźźżä.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "ŔÎĹÍłÝ żŹ°á"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "şÎĆýÿĄ żŹ°áÇĎľľˇĎ ÇĎ°Ú˝Ŕ´Ďąî?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "ł×ĆŽż÷ źłÁ¤"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "ł×ĆŽż÷Ŕť ´Ů˝Ă ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6771,7 +6816,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6781,7 +6826,7 @@ msgstr ""
"\n"
"ŔĚÁŚ źłÁ¤ŔĚ ˝Ă˝şĹŰżĄ ŔűżëľÉ °ÍŔÔ´Ď´Ů.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6789,14 +6834,14 @@ msgstr ""
"żĎˇáľČ ČÄżĄ, X¸Ś ´Ů˝Ă ˝ĂŔŰÇĎżŠ ČŁ˝şĆŽ¸í şŻ°ćżĄ ľű¸Ľ\n"
"šŽÁŚ šßťýŔť ÇÇÇϽù⠚ٜř´Ď´Ů."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6807,7 +6852,7 @@ msgstr ""
"ą×łÉ ÇöŔç źłÁ¤Ŕť ŔŻÁöÇĎźźżä.\n"
"žĆˇĄ ŔԡœőŔť şŻ°ćÇϸé ÇöŔç źłÁ¤Ŕť ľ¤žîž˛°Ô ľË´Ď´Ů."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6817,42 +6862,42 @@ msgstr ""
"°˘°˘ŔÇ Ç׸ńŔşĄ¸.ĄšŔ¸ˇÎ ą¸şĐľČ ˝ĘÁřźö IP Á֟ҡΠŔÔˇÂÇŘžß ÇŐ´Ď´Ů.\n"
"(żš, 1.2.3.4)"
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "%s ł×ĆŽż÷ ÄŤľĺ źłÁ¤Áß"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (%s ľĺśóŔĚšö)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP ÁÖźŇ"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "łÝ¸ś˝şĹŠ"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(BOOTP/DHCP)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP ŔÚľżÇŇ´ç"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "şÎĆýà ˝ĂŔŰ"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6864,42 +6909,53 @@ msgstr ""
"Ŕ̸§ŔĚžîžß ÇŐ´Ď´Ů. \n"
"°ÔŔĚĆŽ żţŔĚ°Ą ŔÖ´Ů¸é ą× IP Á֟Ҿľ ŔÔˇÂÇŘžß ÇŐ´Ď´Ů."
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "DNS ź­šö"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "rpdlxmdnpdl (żš. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "°ÔŔĚĆŽżţŔĚ ŔĺÄĄ"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "IP Á֟Ҵ 1.2.3.4°ú °°Ŕş Çü˝ÄŔĚžîžß ÇŐ´Ď´Ů."
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "IP Á֟Ҵ 1.2.3.4°ú °°Ŕş Çü˝ÄŔĚžîžß ÇŐ´Ď´Ů."
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "ÇÁśô˝Ă źłÁ¤"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "ŔĽ ÇÁśô˝Ă"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP ÇÁśô˝Ă"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "ł×ĆŽż÷ÄŤľĺ ID ĂßŔű (ˇŚĹžżĄ ŔŻżëÇÔ)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "ÇÁśô˝Ă Ŕ̸§Ŕş httP://... ŔĚžîžß ÇŐ´Ď´Ů."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "ÇÁśô˝Ă Ŕ̸§Ŕş ftp://... ŔĚžîžß ÇŐ´Ď´Ů."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Á֟Ҵ Ą¸http:ĄšˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7357,9 +7413,8 @@ msgid "Printerdrake"
msgstr "ÇÁ¸°Ĺ;塚ŔĚĹŠ"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "ŔΟ⠽ýşĹŰ Ŕç˝ÇÇŕ Áß ..."
+msgstr "˝Ă˝şĹŰ °Ëťç Áß..."
#: ../../printerdrake.pm_.c:186
msgid ""
@@ -8301,7 +8356,7 @@ msgstr "ÇÁ¸°ĹÍĄ¸%sĄšťóżĄź­ ŔÎźâ Áß"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8349,7 +8404,7 @@ msgid "Transfer printer configuration"
msgstr "ÇÁ¸°ĹÍ źłÁ¤ ŔüźŰ"
#: ../../printerdrake.pm_.c:2437
-#, fuzzy, c-format
+#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
"s to %s, your current spooler. All the configuration data (printer name, "
@@ -8357,53 +8412,48 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-"˝şÇŽˇŻ %s¸Ś Ŕ§ÇŘ ťçżëÇŃ ÇÁ¸°ĹÍ źłÁ¤Ŕť ÇöŔç ˝şÇŽˇŻŔÎ %sˇÎ\n"
-"şšťçÇŇ źö ŔÖ˝Ŕ´Ď´Ů. ¸đľç źłÁ¤ ľĽŔĚĹÍ(ÇÁ¸°Ĺ͸í, źł¸í, Ŕ§ÄĄ,\n"
-"żŹ°á ŔŻÇü, ą×¸Ž°í ąâşť żÉźÇ°Şľé)°Ą łŃ°ÜÁú °ÍŔÔ´Ď´Ů.\n"
-"ą×ˇŻłŞ ŔŰž÷ľéŔş ŔüźŰľÇÁö žĘ˝Ŕ´Ď´Ů.\n"
+"˝şÇŽˇŻ %s¸Ś Ŕ§ÇŘ ťçżëÇŃ ÇÁ¸°ĹÍ źłÁ¤Ŕť ÇöŔç ˝şÇŽˇŻŔÎ %sˇÎ şšťçÇŇ źö ŔÖ˝Ŕ´Ď´Ů. "
+"¸đľç źłÁ¤ ľĽŔĚĹÍ(ÇÁ¸°Ĺ͸í, źł¸í, Ŕ§ÄĄ, żŹ°á ŔŻÇü, ą×¸Ž°í ąâşť żÉźÇ°Şľé)°Ą łŃ"
+"°ÜÁú °ÍŔÔ´Ď´Ů. ą×ˇŻłŞ ŔŰž÷ľéŔş ŔüźŰľÇÁö žĘ˝Ŕ´Ď´Ů.\n"
"´ŮŔ˝°ú °°Ŕş ŔĚŔŻˇÎŔÎÇĎżŠ ¸đľç ĹĽ°Ą ŔüźŰľÉ źö´Â žř˝Ŕ´Ď´Ů:\n"
#: ../../printerdrake.pm_.c:2440
-#, fuzzy
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
-"CUPS´Â łëş§ ź­šöťóŔÇ ÇÁ¸°ĹÍłŞ ŔÚŔŻÇü˝Ä ¸íˇÉžîˇÎ ľĽŔĚĹ͸Ś ş¸łť´Â\n"
-"ÇÁ¸°ĹÍ´Â ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
+"CUPS´Â łëş§ ź­šöťóŔÇ ÇÁ¸°ĹÍłŞ ŔÚŔŻÇü˝Ä ¸íˇÉžîˇÎ ľĽŔĚĹ͸Ś ş¸łť´Â ÇÁ¸°ĹÍ´Â Áöżř"
+"ÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
#: ../../printerdrake.pm_.c:2442
-#, fuzzy
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
-"LPQ´Â ´ÜÁö ÁöżŞ ÇÁ¸°ĹÍ, żř°Ý LPD ÇÁ¸°ĹÍ ą×¸Ž°í źŇÄĎ/TCP\n"
-"ÇÁ¸°Ĺ͸¸Ŕť ÁöżřÇŐ´Ď´Ů.\n"
+"LPQ´Â ´ÜÁö ÁöżŞ ÇÁ¸°ĹÍ, żř°Ý LPD ÇÁ¸°ĹÍ ą×¸Ž°í źŇÄĎ/TCP ÇÁ¸°Ĺ͸¸Ŕť ÁöżřÇŐ´Ď"
+"´Ů.\n"
#: ../../printerdrake.pm_.c:2444
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPDżÍ LPRng´Â IPP ÇÁ¸°Ĺ͸Ś ÁöżřÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
#: ../../printerdrake.pm_.c:2446
-#, fuzzy
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
-"ą×¸Ž°í śÇÇŃ, ŔĚ ÇÁˇÎą×ˇĽŔĚłŞ Ą¸Foomatic źłÁ¤ĄšŔ¸ˇÎ\n"
-"ťýźşľÇÁö žĘŔş ĹĽ´Â ŔüźŰľÉ źö žř˝Ŕ´Ď´Ů."
+"ą×¸Ž°í śÇÇŃ, ŔĚ ÇÁˇÎą×ˇĽŔĚłŞ Ą¸Foomatic źłÁ¤ĄšŔ¸ˇÎ ťýźşľÇÁö žĘŔş ĹĽ´Â ŔüźŰľÉ "
+"źö žř˝Ŕ´Ď´Ů."
#: ../../printerdrake.pm_.c:2447
-#, fuzzy
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
-"śÇÇŃ ÁŚÁśž÷Ăź°Ą ÁŚ°řÇŃ PPD ĆÄŔĎŔĚłŞ CUPS Ć÷ÇÔ ľĺśóŔĚšöˇÎ\n"
-"źłÁ¤ľČ ÇÁ¸°ĹÍľľ ŔüźŰľÉ źö žř˝Ŕ´Ď´Ů."
+"śÇÇŃ ÁŚÁśž÷Ăź°Ą ÁŚ°řÇŃ PPD ĆÄŔĎŔĚłŞ CUPS Ć÷ÇÔ ľĺśóŔĚšöˇÎ źłÁ¤ľČ ÇÁ¸°ĹÍľľ ŔüźŰ"
+"ľÉ źö žř˝Ŕ´Ď´Ů."
#: ../../printerdrake.pm_.c:2448
msgid ""
@@ -8456,14 +8506,13 @@ msgid "Transferring %s..."
msgstr "%s ŔüźŰ Áß ..."
#: ../../printerdrake.pm_.c:2500
-#, fuzzy, c-format
+#, 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 ""
-"ŔĚŔü ąâşť ÇÁ¸°ĹÍ(Ą¸%sĄš)¸Ś ŔüźŰÇĎż´˝Ŕ´Ď´Ů.\n"
-"ťő ÇÁ¸°ĆĂ ˝Ă˝şĹŰ %sÇĎżĄź­ ą×°ÍŔĚ śÇÇŃ ąâşť ÇÁ¸°ĹÍ°Ą\n"
-"ľÇľľˇĎ ÇϽðڽŔ´Ďąî?"
+"ŔĚŔü ąâşť ÇÁ¸°ĹÍ(Ą¸%sĄš)¸Ś ŔüźŰÇĎż´˝Ŕ´Ď´Ů. ťő ÇÁ¸°ĆĂ ˝Ă˝şĹŰ %sÇĎżĄź­ ą×°ÍŔĚ "
+"śÇÇŃ ąâşť ÇÁ¸°ĹÍ°Ą ľÇľľˇĎ ÇϽðڽŔ´Ďąî?"
#: ../../printerdrake.pm_.c:2510
msgid "Refreshing printer data..."
@@ -8488,25 +8537,21 @@ msgid "Network functionality not configured"
msgstr "ł×ĆŽż÷ ąâ´ÉŔĚ źłÁ¤ľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
#: ../../printerdrake.pm_.c:2556
-#, fuzzy
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 "
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
-"żř°Ý ÇÁ¸°Ĺ͸Ś źłÁ¤ÇϡÁ ÇŐ´Ď´Ů. ą×ˇŻąâ Ŕ§ÇŘź­´Â ł×ĆŽż÷ŔĚ\n"
-"ľżŔŰÇĎ°í ŔÖžîžß ÇĎ´ÂľĽ, žĆÁ÷ ł×ĆŽż÷ źłÁ¤ŔĚ ľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů.\n"
-"ł×ĆŽż÷ źłÁ¤žřŔĚ °čźÓ ÁřÇŕÇϸé, ÁöąÝ źłÁ¤ÇĎ°í ŔÖ´Â ÇÁ¸°Ĺ͸Ś\n"
-"ťçżëÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-"žîśť°Ô ÇϽðڽŔ´Ďąî?"
+"żř°Ý ÇÁ¸°Ĺ͸Ś źłÁ¤ÇϡÁ ÇŐ´Ď´Ů. ą×ˇŻąâ Ŕ§ÇŘź­´Â ł×ĆŽż÷ŔĚ ľżŔŰÇĎ°í ŔÖžîžß ÇĎ´Â"
+"ľĽ, žĆÁ÷ ł×ĆŽż÷ źłÁ¤ŔĚ ľÇžî ŔÖÁö žĘ˝Ŕ´Ď´Ů. ł×ĆŽż÷ źłÁ¤žřŔĚ °čźÓ ÁřÇŕÇϸé, Áö"
+"ąÝ źłÁ¤ÇĎ°í ŔÖ´Â ÇÁ¸°Ĺ͸Ś ťçżëÇŇ źö žř˝Ŕ´Ď´Ů. žîśť°Ô ÇϽðڽŔ´Ďąî?"
#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
msgstr "ł×ĆŽż÷ źłÁ¤ žřŔĚ °čźÓ"
#: ../../printerdrake.pm_.c:2592
-#, fuzzy
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network gets accessable after booting your "
@@ -8515,25 +8560,19 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
-"źłÄĄ°úÁ¤żĄź­ źłÁ¤ÇŃ ł×ĆŽż÷Ŕť ˝ĂŔŰÇŇ źö žř˝Ŕ´Ď´Ů.\n"
-"˝Ă˝şĹŰŔĚ şÎĆĂľÉ ś§, ł×ĆŽż÷ŔĚ ŔÚľż ˝ÇÇŕľÇľľˇĎ ľÇžî ŔÖ´ÂÁö\n"
-"ČŽŔÎÇĎ°í, ¸ÇľĺˇšŔĚĹŠ ÁŚžî źžĹÍ(Ą¸ł×ĆŽż÷°ú ŔÎĹͳݥš->Ą¸żŹ°áĄš)\n"
-"¸Ś ŔĚżëÇĎżŠ żĂšŮ¸Ł°Ô źłÁ¤ÇĎźźżä.ą×¸Ž°íłŞź­ ´Ů˝Ă ¸ÇľĺˇšŔĚĹŠ ÁŚžî źžĹÍ(Ą¸ÇĎľĺżţ"
-"žîĄš->Ą¸ÇÁ¸°ĹÍĄš)\n"
-"¸Ś ŔĚżëÇĎżŠ, ÇÁ¸°ĹÍ źłÁ¤Ŕť\n"
-"´Ů˝Ă ÇŘ ş¸źźżä."
+"źłÄĄ°úÁ¤żĄź­ źłÁ¤ÇŃ ł×ĆŽż÷Ŕť ˝ĂŔŰÇŇ źö žř˝Ŕ´Ď´Ů. ˝Ă˝şĹŰŔĚ şÎĆĂľÉ ś§, ł×ĆŽż÷"
+"ŔĚ ŔÚľż ˝ÇÇŕľÇľľˇĎ ľÇžî ŔÖ´ÂÁö ČŽŔÎÇĎ°í, ¸ÇľĺˇšŔĚĹŠ ÁŚžî źžĹÍ(Ą¸ł×ĆŽż÷°ú ŔÎĹÍ"
+"łÝĄš/Ą¸żŹ°áĄš)¸Ś ŔĚżëÇĎżŠ żĂšŮ¸Ł°Ô źłÁ¤ÇĎźźżä.ą×¸Ž°íłŞź­ ´Ů˝Ă ¸ÇľĺˇšŔĚĹŠ ÁŚ"
+"žî źžĹÍ(Ą¸ÇĎľĺżţžîĄš/Ą¸ÇÁ¸°ĹÍĄš)¸Ś ŔĚżëÇĎżŠ, ÇÁ¸°ĹÍ źłÁ¤Ŕť ´Ů˝Ă ÇŘ ş¸źźżä."
#: ../../printerdrake.pm_.c:2593
-#, fuzzy
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 ""
-"ł×ĆŽż÷ Á˘ąŮŔĚ şŇ°Ą´ÉÇßŔ¸¸ç, ˝ĂŔŰÇŇ źöľľ žřžú˝Ŕ´Ď´Ů.\n"
-"ł×ĆŽż÷ źłÁ¤°ú ÇĎľĺżţžî¸Ś ÁĄ°ËÇŘ ÁÖźźżä.\n"
-"ą×¸Ž°íłŞź­ żř°Ý ÇÁ¸°ĹÍ źłÁ¤Ŕť ´Ů˝Ă ˝ĂľľÇŘ\n"
-"ş¸źźżä."
+"ł×ĆŽż÷ Á˘ąŮŔĚ şŇ°Ą´ÉÇßŔ¸¸ç, ˝ĂŔŰÇŇ źöľľ žřžú˝Ŕ´Ď´Ů. ł×ĆŽż÷ źłÁ¤°ú ÇĎľĺżţžî¸Ś "
+"ÁĄ°ËÇŘ ÁÖźźżä. ą×¸Ž°íłŞź­ żř°Ý ÇÁ¸°ĹÍ źłÁ¤Ŕť ´Ů˝Ă ˝ĂľľÇŘ ş¸źźżä."
#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
@@ -8643,9 +8682,8 @@ msgid "Printer options"
msgstr "ÇÁ¸°ĹÍ żÉźÇ"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
-msgstr "ÇÁ¸°Ĺ;塚ŔĚĹŠ ÁŘşń Áß ..."
+msgstr "ÇÁ¸°ĹÍ ľĺˇšŔĚĹŠ ÁŘşń Áß ..."
#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
@@ -8863,11 +8901,6 @@ msgstr ""
"FTP ÇÁśô˝Ă Á¤ş¸¸Ś ŔÔˇÂÇĎźźżä.\n"
"FTP ÇÁśô˝Ă°Ą ÇĘżäžř´Ů¸é, °řśőŔ¸ˇÎ ľÎźźżä."
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Á֟Ҵ Ą¸http:ĄšˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8915,6 +8948,43 @@ msgstr "mkraid ˝ÇĆĐ (raidtoolŔĚ źłÄĄľÇžî ŔÖÁö žĘŔť źö ŔÖ˝Ŕ´Ď´Ů.)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "RAID ˇšş§ %d¸Ś Ŕ§ÇŃ ĆÄĆźźÇľéŔĚ ĂćşĐÇĎÁö žĘ˝Ŕ´Ď´Ů.\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "ş¸žČ źöÁŘ"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "ş¸žČ źöÁŘ"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "ş¸žČ °ü¸ŽŔÚ (ˇÎą×ŔÎ śÇ´Â Ŕ̸ŢŔĎ)"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (ąâşť°Ş)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Čń¸ÁÇĎ´Â ş¸žČ ´Ü°č¸Ś źąĹĂÇŘ ÁÖźźżä."
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "źłÄĄ ÁŘşńÁßŔÔ´Ď´Ů. Ŕá˝Ă ąâ´Ů¸Žźźżä."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "ALSA (Ářş¸ľČ ¸Ž´Ş˝ş ťçżîľĺ žĆĹ°ĹŘĂł) ťçżîľĺ ˝Ă˝şĹŰ ˝ÇÇŕ"
@@ -9045,7 +9115,6 @@ msgstr ""
"ťçżëľË´Ď´Ů."
#: ../../services.pm_.c:47
-#, fuzzy
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
@@ -9218,7 +9287,7 @@ msgstr "ŔÎĹÍłÝ"
msgid "File sharing"
msgstr "ĆÄŔĎ °řŔŻ"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "˝Ă˝şĹŰ"
@@ -9274,12 +9343,10 @@ msgid "Stop"
msgstr "ÁßÁö"
#: ../../share/advertising/01-thanks.pl_.c:9
-#, fuzzy
msgid "Thank you for choosing Mandrake Linux 9.0"
-msgstr "¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş 8.2¸Ś źąĹĂÇŘ Á֟ş­ °¨ťçÇŐ´Ď´Ů."
+msgstr "¸ÇľĺˇšŔĚĹŠ ¸Ž´Ş˝ş 9.0¸Ś źąĹĂÇŘ Á֟ş­ °¨ťçÇŐ´Ď´Ů."
#: ../../share/advertising/01-thanks.pl_.c:10
-#, fuzzy
msgid "Welcome to the Open Source world"
msgstr "°ř°ł źŇ˝ş źź°čżĄ żŔ˝Ĺ °ÍŔť ČŻżľÇŐ´Ď´Ů."
@@ -9291,9 +9358,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/02-community.pl_.c:9
-#, fuzzy
msgid "Get involved in the Free Software world"
-msgstr "ŔÚŔŻ źŇÇÁĆŽżţžî źź°čżĄ ÂüżŠ"
+msgstr "ŔÚŔŻ źŇÇÁĆŽżţžî źź°čżĄ ÂüżŠÇĎźźżä."
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
@@ -9306,13 +9372,12 @@ msgid ""
msgstr ""
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "ŔÎĹͳݿĄ żŹ°á"
+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"
msgstr ""
@@ -9357,14 +9422,13 @@ msgstr "ťçżëŔÚ ŔÎĹÍĆäŔĚ˝ş"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "°łšß"
+msgstr "°ŁĆíÇŃ °łšß"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
@@ -9382,13 +9446,13 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "ş¸žČ ĂÖŔűČ­"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
@@ -9398,7 +9462,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9413,7 +9477,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9449,9 +9513,8 @@ msgid ""
msgstr ""
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "¸ÇľĺˇšŔĚĹŠŔüšŽ°Ą"
+msgstr "¸ÇľĺˇšŔĚĹŠ ŔüšŽ°Ą°Ą ľÇźźżä."
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
@@ -9462,14 +9525,13 @@ 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 your 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
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "¸ÇľĺˇšŔĚĹŠŔüšŽ°Ą"
+msgstr "¸ÇľĺˇšŔĚĹŠ ŔüšŽ°Ą šýŔÎ"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
@@ -9499,11 +9561,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "ĆŃĹ°Áö źłÄĄ Áß..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "ˇÎą×žĆżôÇĎ°í Crtl-Alt-BackSpaceĹ°¸Ś ´Š¸Łźźżä."
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "şŻ°ćťçÇ×Ŕť ŔűżëÇϡÁ¸é %sˇÎ ŔçˇÎą×ŔÎ ÇĎźźżä."
@@ -9544,16 +9606,6 @@ msgstr "ťçżëŔÚ Ăß°Ą/ÁŚ°Ĺ"
msgid "Add/Del Clients"
msgstr "ĹŹśóŔĚžđĆŽ Ăß°Ą/ÁŚ°Ĺ"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "ľľżň¸ť"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "şÎĆŽ ÇáÎÇÇ"
@@ -9602,48 +9654,63 @@ msgstr "ťçżëŔÚ Ăß°Ą -->"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- ĹŹśóŔĚžđĆŽ ťčÁŚ"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "DHCPD źłÁ¤ Áß..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "°íąŢ źłÁ¤"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "źłÁ¤ ąâˇĎ"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "ÇáÎÇǸŚ łÖžî ÁÖźźżä:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "ŔŻČżÇŃ ÇÁˇÎÇÇ ľĺśóŔ̺긌 ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9772,13 +9839,12 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
-#, fuzzy
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "ŔüĂź ÁřÇŕ"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9787,41 +9853,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "žĎČŁ žřŔ˝"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "%s¸Ś ż­ źö žř˝Ŕ´Ď´Ů: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9832,65 +9898,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "˝Ă˝şĹŰ ĆÄŔĎ šéž÷..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "ÇĎľĺ ľđ˝şĹŠ šéž÷ ĆÄŔĎľé"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "ťçżäŔÚ ĆÄŔĎ šéž÷..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "´Ů¸Ľ ĆÄŔĎ šéž÷..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "Ĺ×ŔÔŔť ťçżëÇŃ šéž÷"
+msgstr "šéž÷ÇŇ şŻ°ćťçÇ×ŔĚ žř˝Ŕ´Ď´Ů!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9898,294 +9963,294 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr "¸ŢŔĎ ŔüźŰ Áß żŔˇů.\n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "ĆÄŔĎ źąĹĂ"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "˝Ă˝şĹŰ ĆÄŔĎ ¸ŐŔú šéž÷:"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr "šéž÷żĄ Ć÷ÇÔÇŇ ¸đľç ťçżëŔÚ¸Ś ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "źąĹĂ Ç׸ń ÁŚ°Ĺ"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "ŔŠľľżěÁî(FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "ťçżëŔÚľé"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "ł×ĆŽż÷Ŕť ťçżëÇŘ šéž÷"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
-msgstr "ŔüźŰ"
-
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
msgstr ""
+" ÁöąÝ \n"
+"ŔüźŰ"
#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "ČŁ˝şĆŽ Ŕ̸§ śÇ´Â IP¸Ś ŔÔˇÂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "žĆŔ̾𸌠ŔÔˇÂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "şńšĐšřČŁ¸Ś ŔÔˇÂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "şńšĐšřČŁ ąâžď"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
-#, fuzzy
-msgid "Please choose your CD/DVD media size"
-msgstr "CD żëˇŽŔť źąĹĂÇĎźźżä."
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "CD/DVD żëˇŽŔť źąĹĂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "CDRW ¸ĹĂź¸Ś ťçżëÇĎ°í ŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "CDRW ¸ĹĂź¸Ś ťçżëÇĎ°í ŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "CDRW ¸ĹĂź¸Ś ťçżëÇĎ°í ŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1940
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
-msgstr "ŔüźŰ"
+msgstr " ÁöąÝ ťčÁŚ"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "CDRW ¸ĹĂź¸Ś ťçżëÇĎ°í ŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "CDRW ¸ĹĂź¸Ś ťçżëÇĎ°í ŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
-msgstr "żŔˇĄľČ ŔĺÄĄ ĆÄŔĎ"
+msgstr "CD ŔĺÄĄ°Ą Á¤ŔÇľÇÁö žĘžŇ˝Ŕ´Ď´Ů!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Ĺ×ŔÔŔť ťçżëÇŃ šéž÷"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "šéž÷ÇĎąâ ŔüżĄ Ĺ×ŔÔŔť ÁöżďÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr "šéž÷ÇĎąâ ŔüżĄ Ĺ×ŔÔŔť ÁöżďÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "šéž÷ÇĎąâ ŔüżĄ Ĺ×ŔÔŔť ÁöżďÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "ŔúŔĺÇŇ ľđˇşĹ与¸Ś źąĹĂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "šéž÷ ĆÄŔĎżĄ ÄőĹÍ ťçżë"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "ł×ĆŽż÷"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "ÇĎľĺ ľđ˝şĹŠ / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Ĺ×ŔÔ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "¸Ĺ˝Ă"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "¸ĹŔĎ"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "¸ĹÁÖ"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "¸Ĺżů"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "´ë¸ó ťçżë"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10193,7 +10258,7 @@ msgstr ""
"šéž÷°Ł ˝Ă°Ł °Ł°ÝŔť\n"
"źąĹĂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10201,567 +10266,559 @@ msgstr ""
"šéž÷żë ¸ĹĂź¸Ś\n"
"źąĹĂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "šéž÷ ČÄ ş¸°í ¸ŢŔĎ ş¸łťąâ:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "´ëťó"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "ŔĺźŇ"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "˝Ă°Ł"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Ăß°Ą żÉźÇ"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "ľĺˇšŔĚĹŠ šéž÷ źłÁ¤"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "šéž÷ÇŇ °÷Ŕť źąĹĂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ÇĎľĺ ľĺśóŔĚşę"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "ł×ĆŽż÷ °ćŔŻ"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "šéž÷ÇŇ ´ëťóŔť źąĹĂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "šéž÷ ˝Ă˝şĹŰ"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "ťçżëŔÚ šéž÷"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "źöľżŔ¸ˇÎ ťçżëŔÚ źąĹĂ"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "ŔĺÄĄ: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "żÉźÇľé"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "´ŮŔ˝ šřżĄ´Â ą×°ÍŔť źąĹĂ ÇŘÁŚ śÇ´Â ÁŚ°ĹÇĎźźżä."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " źłÁ¤ şšą¸ "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "´Ů¸Ľ ĆÄŔĎľéŔť ¸ńą¸ÇϡÁ¸é, OK¸Ś ´Š¸Łźźżä."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "˝Ă˝şĹŰ ĆÄŔĎ ¸ŐŔú šéž÷:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "şšą¸ÇŇ łŻÂĽ¸Ś źąĹĂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "ÇĎľĺ ľđ˝şĹŠˇÎ šéž÷"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "ŔúŔĺÇŇ ľđˇşĹ与¸Ś źąĹĂÇĎźźżä:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP żŹ°á"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "ş¸žČ żŹ°á"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "ÇĎľĺ ľđ˝şĹŠżĄź­ şšą¸"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "šéž÷ ĆÄŔĎľéŔĚ ŔúŔĺľÉ ľđˇşĹ与¸Ś ŔÔˇÂÇĎźźżä."
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "´Ů¸Ľ şšą¸ ¸ĹĂź źąĹĂ"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "´Ů¸Ľ ¸ĹĂź"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "˝Ă˝şĹŰ şšą¸"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "ťçżëŔÚľé şšą¸"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "´Ů¸Ľ °Íľé şšą¸"
-#: ../../standalone/drakbackup_.c:3263
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
-msgstr "([/] ´ë˝ĹżĄ) şšą¸ÇŇ ľđˇşĹ与 źąĹĂ"
+msgstr "([/] ´ë˝ĹżĄ) şšą¸ °ćˇÎ źąĹĂ"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "şšą¸ÇĎąâ ŔüżĄ ťçżëŔÚ ľđˇ˘Ĺ与ľéŔť ÁŚ°Ĺ"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "źąĹĂ Ç׸ń ÁŚ°Ĺ"
+msgstr ""
+"źąĹĂľČ ĆÄŔĎ\n"
+"şšą¸"
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "´Ů¸Ľ °Íľé şšą¸"
+msgstr ""
+"şšą¸ °ćˇÎ\n"
+"źöÁ¤"
-#: ../../standalone/drakbackup_.c:3475
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:3479
+#, c-format
msgid "Backup files not found at %s."
-msgstr "%s¸Ś %s.oldˇÎ šéž÷"
+msgstr "%sżĄź­ šéž÷ ĆÄŔĎŔť ĂŁŔť źö žř˝Ŕ´Ď´Ů."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "ÇĎľĺ ľđ˝şĹŠżĄź­ şšą¸"
+msgstr "CDˇÎşÎĹÍ şšą¸"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şšą¸"
+msgstr "Ĺ×ŔÔŔ¸ˇÎşÎĹÍ şšą¸"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "ťçżëŔÚľé şšą¸"
+msgstr "ł×ĆŽż÷Ŕť ĹëÇŃ şšą¸"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
-msgstr "ČŁ˝şĆŽ¸í:"
+msgstr "ČŁ˝şĆŽ¸í"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "žĎČŁ"
+msgstr "žĎČŁ°Ą ÇĘżäÇŐ´Ď´Ů."
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "ťçżëŔÚ¸í"
+msgstr "ťçżëŔÚ¸íŔĚ ÇĘżäÇŐ´Ď´Ů."
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "ČŁ˝şĆŽ¸í:"
+msgstr "ČŁ˝şĆŽ¸íŔĚ ÇĘżäÇŐ´Ď´Ů."
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "´Ů¸Ľ °Íľé şšą¸"
+msgstr "şšą¸ ˝ÇĆĐ..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "¸đľç šéž÷ şšą¸"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "ťçżëŔÚ Á¤ŔÇ şšą¸"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "ĆÄĆźźÇ Ĺ×ŔĚşí şšą¸"
+msgstr "ÄŤĹťˇÎą×ˇÎşÎĹÍ şšą¸"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "ťçżëŔÚľé şšą¸"
+msgstr "şšą¸ ÁřÇŕ"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "ŔĚŔü"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "ŔúŔĺ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "šéž÷ şôľĺ"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "şšą¸"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
-#, fuzzy
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
-msgstr "´ŮŔ˝ ĆŃĹ°ÁöľéŔĚ źłÄĄľÉ °ÍŔÔ´Ď´Ů."
+msgstr ""
+"´ŮŔ˝ ĆŃĹ°ÁöľéŔĚ źłÄĄľÇžîžß ÇŐ´Ď´Ů.\n"
+" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "şšą¸ÇŇ ľĽŔĚĹ͸Ś źąĹĂÇĎźźżä..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "šéž÷żë ¸ĹĂź¸Ś źąĹĂÇĎźźżä..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "šéž÷ÇŇ ľĽŔĚĹ͸Ś źąĹĂÇĎźźżä..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "˝Ă˝şĹŰ ĆÄŔĎ šéž÷"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "ťçżëŔÚ ĆÄŔĎ šéž÷"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "´Ů¸Ľ ĆÄŔĎ šéž÷"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "ŔüĂź ÁřÇŕ"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "FTPˇÎ ĆÄŔĎ ŔüźŰ"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "ĆÄŔĎ ŔüźŰ Áß ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "ÁöąÝ źłÁ¤ ĆÄŔϡκÎĹÍ šéž÷"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "šéž÷ źłÁ¤ ş¸ąâ"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "¸śšýťç źłÁ¤"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "°íąŢ źłÁ¤"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "ÁöąÝ šéž÷"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "ľĺˇšŔĚĹŠ šéž÷"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10793,7 +10850,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10802,7 +10859,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10843,7 +10900,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10871,17 +10928,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10898,7 +10955,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10938,7 +10995,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10949,7 +11006,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10962,7 +11019,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11044,8 +11101,8 @@ msgid "Synchronization tool"
msgstr "ľżąâČ­ ľľą¸"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "°łş° ľľą¸"
@@ -11110,26 +11167,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "ş¸°í"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "źłÄĄľÇÁö žĘžŇ˝Ŕ´Ď´Ů."
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "šöÁúśó ¸śšýťçżĄ żŹ°á Áß ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "şęśóżěŔú¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů! źłÄĄÇŘ ÁÖźźżä."
@@ -11229,10 +11286,6 @@ msgstr "¸śšýťç..."
msgid "Apply"
msgstr "Ŕűżë"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "ąâ´ŮˇÁ ÁÖźźżä... źłÁ¤Ŕť ŔűżëÇĎ°í ŔÖ˝Ŕ´Ď´Ů."
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "żŹ°áľĘ"
@@ -11352,7 +11405,7 @@ msgstr "¸đľâ Ŕ̸§"
msgid "Size"
msgstr "ĹŠąâ"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "ľĺˇšŔĚĹŠÇáÎÇÇ"
@@ -11417,12 +11470,12 @@ msgstr "ĂâˇÂ"
msgid "Build the disk"
msgstr "ľđ˝şĹŠ ťýźş"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "%s ŔĺÄĄżĄ ¸ĹĂź°Ą ľéžîŔÖ´ÂÁö ČŽŔÎÇĎźźżä."
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11431,12 +11484,12 @@ msgstr ""
"%s ŔĺÄĄżĄ ¸ĹĂź°Ą žř°ĹłŞ, ž˛ąâąÝÁöľÇžî ŔÖ˝Ŕ´Ď´Ů.\n"
"¸ĹĂź¸Ś łÖžî ÁÖźźżä."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "şĐąâÇŇ źö žř˝Ŕ´Ď´Ů: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11893,158 +11946,140 @@ msgstr ""
"\n"
"¸śšýťç¸Ś ˝ÇÇŕÇϡÁ¸é Ą¸źłÁ¤ĄšŔť ´Š¸Łźźżä."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "ŔŰž÷ ą×ˇě"
+msgstr "ą×ˇě"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "°ćˇÎ"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "ĆÄĆźźÇ %s"
+msgstr "Çă°ĄąÇ"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr "ťçżëŔÚ"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "Ŕ§ˇÎ"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr "ťčÁŚ"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr "ĆíÁý"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "żĎˇá"
+msgstr "žĆˇĄˇÎ"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "¸đľâ Ăß°Ą"
+msgstr "ąÔĢ Ăß°Ą"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "ťő ÇÁ¸°ĹÍ Ăß°Ą"
+msgstr "ťő ąÔĢ łĄżĄ Ăß°Ą"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "ÇöŔç ąÔĢ ĆíÁý"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "¸đľç źąĹĂ ÇŘÁŚ"
+msgstr "źąĹĂľČ ąÔĢ ÇŃ ´Ü°č Ŕ§ˇÎ"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "źąĹĂľČ ąÔĢ ÇŃ ´Ü°č žĆˇĄˇÎ"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "źąĹĂ Ç׸ń ÁŚ°Ĺ"
+msgstr "źąĹĂľČ ąÔĢ ťčÁŚ"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "ĂŁžĆş¸ąâ"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "ťçżëŔÚ Çă°Ą"
+msgstr "ÇöŔç ťçżëŔÚ"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "šöÁŻ: %s\n"
+msgstr "Çă°ĄąÇ"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "°ćˇÎ"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "Ć÷ĆŽ"
+msgstr "źÓźş"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "˝şĆźĹ° şńĆŽ"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "UID źłÁ¤"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "GID źłÁ¤"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "ŔÚľż°Ëťö ťçżë"
+msgstr "˝ÇÇŕ˝Ă źŇŔŻŔÚ žĆŔĚľđ ťçżë"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "ŔÚľż°Ëťö ťçżë"
+msgstr "˝ÇÇŕ˝Ă ą×ˇě žĆŔĚľđ ťçżë"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "˝şÇ᥽Ź źąĹĂ"
+msgstr "°ćˇÎ źąĹĂ"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "ťçżëŔÚ"
+msgstr "ťçżëŔÚ:"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "ŔŰž÷ ą×ˇě"
+msgstr "ą×ˇě:"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "TV ÄŤľĺ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
+msgstr "ťçżîľĺÄŤľĺ¸Ś ĂŁŔť źö žř˝Ŕ´Ď´Ů!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12056,137 +12091,135 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
-#, fuzzy
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "şÎĆŽ ľđ˝şĹŠ ťýźş"
+msgstr "Ăš ´Ü°č ťýźş"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "ÇŘťóľľ"
+msgstr "ĂÖÁž ÇŘťóľľ"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "ĆÄŔĎ źąĹĂ"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "°řŔŻ Ŕ̸§"
+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 "Ážˇá"
+msgid "Theme name"
+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
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "şÎĆŽ˝şÇ᥽Ź šĚ¸Žş¸ąâ¸Ś ťýźşÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "şÎĆŽ˝şÇ᥽Ź ą×¸˛ źłÁ¤"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
-msgid "the color of the progress bar"
+msgid "the heigth 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:108
+msgid "the color of the progress bar"
+msgstr ""
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "¸đ´ĎĹ͸Ś źąĹĂÇĎźźżä"
+msgid "Preview"
+msgstr "šĚ¸Žş¸ąâ"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "Ĺ׸ś ŔúŔĺ"
#: ../../standalone/draksplash_.c:124
-#, fuzzy
+msgid "Choose color"
+msgstr "ťöťó źąĹĂ"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr "ÄÜźÖÇĎżĄź­ Ĺ׸ś ş¸ŔĚąâ"
+msgstr "ÄÜźÖÇĎťóżĄ ˇÎ°í ş¸ŔĚąâ"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "ÇÁ¸°ĹÍ ¸đľ¨ źąĹĂ"
+msgstr "ÁřÇม´ë ťöťó źąĹĂ"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "ÇÁ¸°ĹÍ śÇ´Â ŔĺÄĄ¸Ś Ŕԡ śÇ´Â źąĹĂÇŘžß ÇŐ´Ď´Ů!"
+msgstr "¸ŐŔú ŔĚšĚÁö ĆÄŔĎŔť źąĹĂÇŘžß ÇŐ´Ď´Ů!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "ŔĺÄĄ °Ëťö Áß ..."
+msgstr "šĚ¸Žş¸ąâ ťýźş Áß ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
#: ../../standalone/drakxtv_.c:49
msgid ""
@@ -12323,6 +12356,14 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"ťçżëšý: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "ťçżëšý: keyboarddrake [--expert] [Ĺ°ş¸ľĺ]\n"
@@ -12351,11 +12392,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "śóŔĚşę ž÷ą×ˇšŔ̾希 ˝ĂŔŰÇŇ źö žř˝Ŕ´Ď´Ů!!! \n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr "şŻ°ćŔĚ żĎˇá ľÇžúÁö¸¸, ŔűżëľÇąâ Ŕ§ÇŘź­´Â ŔçˇÎą×ŔÎÇŘžß ÇŐ´Ď´Ů."
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "ˇÎą×ľĺˇšŔĚĹŠ"
@@ -12578,9 +12619,9 @@ msgid "The %s is not supported by this version of Mandrake Linux."
msgstr ""
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it?"
-msgstr "ŔÎźâ źłÁ¤Ŕť ÇϽðڽŔ´Ďąî?"
+msgstr "%sŔĚ %sżĄź­ šß°ßľÇžú˝Ŕ´Ď´Ů. źłÁ¤ÇϽðڽŔ´Ďąî?"
#: ../../standalone/scannerdrake_.c:59
#, c-format
@@ -12623,16 +12664,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12707,7 +12745,7 @@ msgstr "˝Ă˝şĹŰ ž÷ľĽŔĚĆŽ źłÄĄ"
msgid "Exit install"
msgstr "źłÄĄ Ážˇá"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
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-"
@@ -12762,9 +12800,8 @@ msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "żŔľđżŔ °üˇĂ ľľą¸; mp3/midi ÇášŔĚžî, šÍź­, ľîľî"
#: ../../share/compssUsers:999
-#, fuzzy
msgid "Linux Standard Base. Third party applications support"
-msgstr "¸Ž´Ş˝ş ÇĽÁŘ ąâšÝ ČŁČŻ ĆŃĹ°Áö"
+msgstr "¸Ž´Ş˝ş ÇĽÁŘ ąâšÝ. żÜşÎ žÖÇøŽÄÉŔĚźÇ Áöżř"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -12952,288 +12989,17 @@ msgstr "¸ÖĆźšĚľđžî - CD ąÁąâ"
msgid "Scientific Workstation"
msgstr "°úÇĐ żöĹŠ˝şĹ×ŔĚźÇ"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "şÎĆŽ˝şÇ᥽Ź šĚ¸Žş¸ąâ¸Ś ťýźşÇŇ źö žř˝Ŕ´Ď´Ů."
-
-#~ 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 "žîś˛ ĆÄĆźźÇľľ Á¸ŔçÇĎÁö žĘ˝Ŕ´Ď´Ů."
-
-#~ msgid ""
-#~ "DiskDrake failed to read correctly the partition table.\n"
-#~ "Continue at your own risk!"
-#~ msgstr ""
-#~ "ľđ˝şĹŠľĺˇšĹŠ°Ą ĆÄĆźźÇ Ĺ×ŔĚşíŔť Á¤ČŽČ÷ ŔĐžîżŔ´ÂľĽ ˝ÇĆĐÇß˝Ŕ´Ď´Ů.\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"
-
-#~ 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"
-#~ "ś§šŽżĄ Ŕ̡ą ľľĂťŔ¸ˇÎşÎĹÍ žČŔüÇŐ´Ď´Ů."
-
-#~ 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 "ąâşť żÉźÇ"
-
-#~ msgid "Security Checks"
-#~ msgstr "ş¸žČ ÁĄ°Ë"
-
-#~ msgid "Data list to include on CDROM."
-#~ msgstr "CDROMżĄ Ć÷ÇÔÇŇ ľĽŔĚĹÍ ¸ńˇĎ"
-
-#~ msgid "Please choose your CD space"
-#~ msgstr "CD żëˇŽŔť źąĹĂÇĎźźżä."
-
-#~ msgid "Please enter the cd writer speed"
-#~ msgstr "CD ˇšÄÚ´ő źÓľľ¸Ś ŔÔˇÂÇĎźźżä."
-
-#~ msgid "Please check if you want to include install boot on your CD."
-#~ msgstr "CDżĄ źłÄĄ şÎĆŽ¸Ś Ć÷ÇÔÇŇÁö¸Ś ÁĄ°ËÇĎźźżä."
-
-#~ msgid "Url should begin with 'ftp:'"
-#~ msgstr "Á֟Ҵ Ą¸ftp:ĄšˇÎ ˝ĂŔŰÇŘžß ÇŐ´Ď´Ů."
-
-#~ msgid ""
-#~ "Please check if you want to include\n"
-#~ " install boot on your CD."
-#~ msgstr "CDżĄ źłÄĄ şÎĆŽ¸Ś Ć÷ÇÔÇŇÁö ČŽŔÎÇĎźźżä."
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "¸ąˇÎ˝şÇ᥽Ź źłÁ¤Ŕ¸ˇÎ °Ąąâ"
+
+#~ msgid "Go back"
+#~ msgstr "ľšžĆ°Ąąâ"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "ÇÁśô˝Ă Ŕ̸§Ŕş ftp://... ŔĚžîžß ÇŐ´Ď´Ů."
+
+#~ msgid "quit"
+#~ msgstr "Ážˇá"
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index d7f3137ee..3ce3eade4 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -4,7 +4,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -88,24 +88,24 @@ msgstr ""
msgid "Use Xinerama extension"
msgstr "Naudokite automatiná aptikimŕ"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Tinklo Konfigűravimo Meistras"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s su EKSPERIMENTINE 3D árenginio akseleracija"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -145,12 +145,12 @@ msgstr ""
"Jűsř korta palaiko 3D akseleracija su XFree %s.ATMINKITE, KAD TAI YRA "
"EKSPERIMENTINIS PALIKYMAS IR GALI PAKABINTI KOMPIUTERÁ."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Prisitaikyti"
@@ -171,32 +171,32 @@ msgstr "Skiriamoji geba"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Gerai"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Iđeiti"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -292,25 +292,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Nutraukti"
@@ -387,11 +387,11 @@ msgstr "XFree86 serveris: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 tvarkyklë: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X paleidţiant"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -400,7 +400,7 @@ msgstr ""
"Tu gali nustatyti, kad X startuotř automatiđkai.\n"
"Ar tu nori, kad X startuotř po kompiuterio perkrovimo?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -412,7 +412,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Kokios rűđies tavo ISDN jungtis?"
@@ -485,7 +485,7 @@ msgstr "Kompaktiđkas"
msgid "compact"
msgstr "kompaktiđkas"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Vaizdo reţimas"
@@ -493,17 +493,17 @@ msgstr "Vaizdo reţimas"
msgid "Delay before booting default image"
msgstr "Palaukti prieđ ákraunant áprastŕ atvaizdŕ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Slaptaţodis"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Slaptaţodis (vël)"
@@ -539,14 +539,14 @@ msgstr ""
"Parinktis ĽGrieţtos komandinës eilutës parinktys´ yra nenaudingŕ be "
"slaptaţodţio"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Prađom bandyti vël"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Slaptaţodţiai nesutampa"
@@ -584,7 +584,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -592,158 +592,158 @@ msgstr ""
"Čia yra skirtingi árađai.\n"
"Tu gali pakeisti esamus arba prijungti naujus."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Pridëti"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Atlikta"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
#, fuzzy
msgid "Modify"
msgstr "Taisyti RAID"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Kitos OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Kitos OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Kitos OS (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Atvaizdas"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Đakninis"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Pridurti"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Skaitymui-rađymui"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Lentelë"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nesaugus"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Ţymë"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Áprastas"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
#, fuzzy
msgid "Initrd-size"
msgstr "Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr ""
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Iđmesti árađŕ"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tuđčia ţymë neleidţiama"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Tu privalai turëti swap skirsná"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Đi ţymë jau naudojama"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Rasti %s %s interfeisai"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Ar turi dar vienŕ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Ar tu turi koká nors %s interfeisŕ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Taip"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Paţiűrëk árangos informacijŕ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Ádiegiama tvarkyklë %s plokđtei %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modulis %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -754,17 +754,17 @@ msgstr ""
"Opcijř formatas yra toks : ''vardas=reikđmë vardas2=reikđmë2 ...''.\n"
"Pvz, ''io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Modulio parinktys:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kokiŕ %s tvarkyklć turëčiau iđbandyti?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -780,15 +780,15 @@ msgstr ""
"parinktis, ar leisi pabandyti nusistatyti pačiai. Bandymas gali\n"
"pakabinti kompiuterá, bet tai neturëtř padaryti ţalos."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatinis bandymas"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Nurodyti parinktis"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -797,64 +797,64 @@ msgstr ""
"Modulio %s iđkvietimas nepavyko.\n"
"Ar nori bandyti su kitais nustatymais?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s jau pridëtas)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Đis slaptaţodis pernelyg paprastas"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Prađom suteikti vartotojo vardŕ"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Đis vartotojo vardas jau pridëtas"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Đis vartotojo vardas jau pridëtas"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Pridëti vartotojŕ"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -863,32 +863,32 @@ msgstr ""
"Ávesk vartotojŕ\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Priimti vartotojŕ"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Tikras vardas"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Vartotojo vardas"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Automatinis pasisveikinimas"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -897,57 +897,57 @@ msgstr ""
"Ađ galiu nustatyti taip, kad vienas vartotojas pasisveikintř automatiđkai.\n"
"Jei nenori to naudoti, spausk mygtukŕ Nutraukti."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Pasirink áprastŕ vartotojŕ:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Pasirink, kuriŕ langř tvarkyklć naudosi:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Visos"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Pridëti vartotojŕ"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS paleidţiamas"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -956,42 +956,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Sveiki atvykć á cracker'iř đalá"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Menkas"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standartinë"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Aukđtas"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Aukđtas"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranojiđkas"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1001,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1009,7 +1009,7 @@ msgstr ""
"Dabar slaptaţodţiai yra ájungti bet naudoti kaip tinkliná kompiuterá dar "
"nerekomenduojama."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1019,13 +1019,13 @@ msgstr ""
"naudojamas prisijungti prie interneto kaip klientas. Nëra jokiř saugumo "
"tikrinimř."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1040,7 +1040,7 @@ msgstr ""
"priima\n"
"prisijungimus iđ daugybës klientř."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1049,36 +1049,36 @@ msgstr ""
"Dabar naudojami 4 lygio privalumai,bet sistema yra visiđkai uţdaryta.\n"
"Saugumo savybës yra maksimalios."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Pasirinktys"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Pasirink saugumo lygá"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Nustatomas saugumo lygis"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Pasirink serverio nuostatas"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1086,7 +1086,7 @@ msgid ""
msgstr ""
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1102,58 +1102,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Darbastalis"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Paleidimo meniu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, fuzzy, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Kur nori ádiegti ákrovos tvarkyklć?"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "pagalba dar nesukurta.\n"
@@ -1209,129 +1209,129 @@ msgstr "Skambinimo reţimas"
msgid "Yaboot mode"
msgstr "Ákrovos reţimas"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Ádiegti sistemŕ"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Sukurti naujŕ skirsná"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Klaida"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "nuostabu"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Parink ádiegimo klasć"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, 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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
#, fuzzy
msgid "Configure"
msgstr "Nustatyti X"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Iđsaugoti paketř pasirinkimŕ"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1340,44 +1340,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistemos reţimas"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Startuojant paleisti X_Windows"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Ne, ađ nenoriu automatinio pasisveikinimo"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Taip, ađ noriu automatinio pasisveikinimo (vrtotojas, darbastalis)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Gerai"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "negaliu atidaryti /etc/inittab skaitymui: %s"
@@ -1481,54 +1481,62 @@ msgstr "nuoseklioji"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "naujas"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Primontuoti"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Prađom iđbandyti pelć"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Pasirinktys: %s"
@@ -1618,7 +1626,7 @@ msgstr "Tuđčias"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Kitas"
@@ -1769,7 +1777,7 @@ msgstr ""
"Atsarginë skirsniř lentelë nëra tokio paties dydţio\n"
"Vis tiek tćsti?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Dëmesio"
@@ -2328,7 +2336,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:3529
#, fuzzy
msgid "Username"
msgstr "Vartotojo vardas"
@@ -2343,23 +2351,23 @@ msgstr "NIS domenas"
msgid "Search servers"
msgstr "DNS serveris"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s %s suţymëjimas nepavyko"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "klaida numontuojant %s: %s"
@@ -2447,46 +2455,111 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Klaida atidarant %s árađymui: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN Konfiguravimas"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Tvarkyklë"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/Pagalba"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Nustatymř tikrinimas"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Prađom palaukti"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2613,7 +2686,8 @@ msgid "/_Quit"
msgstr "Iđeiti"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pagalba"
@@ -2633,76 +2707,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Raportuoti Klaidŕ"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Pagalba/_Apie..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Automatinis bandymas"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Kieto disko nustatymas"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Paţiűrëk árangos informacijŕ"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Rodyti informacijŕ"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Pelës nustatymas"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "aptiktas prievade %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Prađom palaukti"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Skaitoma CUPS tvarkykliř duomenř bazë"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundës"
@@ -4156,7 +4231,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4171,7 +4246,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4180,20 +4255,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Negalima naudoti transliavimo be NIS domeno"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ádëk FAT formatuotŕ diskelá á kaupiklá %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4201,12 +4276,12 @@ msgstr ""
"Kad iđsaugoti điř paketř pasirinkimŕ ákraukite sistemŕ su ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Klaida skaitant bylŕ %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4453,7 +4528,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Sveiki atvykć á %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Neprieinamas në vienas diskeliř kaupiklis"
@@ -4483,11 +4558,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Paketř grupiř pasirinkimas"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Atskirř paketř pasirinkimas"
@@ -4564,7 +4639,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Ádiegti"
@@ -4587,7 +4662,7 @@ msgstr "Iđmesti"
msgid "Choose the packages you want to install"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Ádiegiama"
@@ -4614,17 +4689,17 @@ msgid "Installing package %s"
msgstr "Ádiegiamas paketas %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Sutinku"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Atmetu"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4639,16 +4714,16 @@ msgstr ""
"Jei tu jo neturi, spausk Nutraukti, kad iđvengtum ádiegimo iđ đio CD."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Vis tiek tćsti?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Ávyko klaida, bandant sutvarkyti paketus:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Ávyko klaida, ádiegiant paketus:"
@@ -4774,7 +4849,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4852,7 +4927,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klaviatűra"
@@ -5065,31 +5140,31 @@ msgstr "Ádëk diskelá á kaupiklá %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
#, fuzzy
msgid "Type of install"
msgstr "Pasirink paketŕ ádiegimui"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
#, fuzzy
msgid "With X"
msgstr "Palauk"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5099,16 +5174,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM su uţrađu \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Ruođiamas ádiegimas"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5117,21 +5192,21 @@ msgstr ""
"Ádiegiamas paketas %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Konfigűracija po ádiegimo"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5186,7 +5261,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5198,169 +5273,169 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Pasirink atvaizdá (mirror), iđ kurio imti paketus"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Kokia tavo laiko juosta?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Ar tavo árangos laikrodis nustatytas GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Nutolćs CUPS serveris"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Spausdintuvo nëra"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Ar turi dar vienŕ?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Apibendrinimas"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Pelë"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Laiko juosta"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "ISDN card"
msgstr "Vidinë ISDN plokđtë"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy
msgid "Sound card"
msgstr "Standartinë"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Naudoti NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Vietinis spausdintuvas"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Nurodyti root slaptaţodá"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Jokio slaptaţodţio"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "serveris"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentikacijos NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domenas"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5376,21 +5451,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentikacija"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domeno vardas"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5420,19 +5495,19 @@ msgstr ""
"Jei nori sukurti ákrovos diskelá savo sistemai, ákiđk diskelá á pirmŕjá\n"
"árenginá ir spausk \"Gerai\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Pirmasis diskeliř árenginys"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Antrasis diskeliř árenginys"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Praleisti"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5461,7 +5536,7 @@ msgstr ""
"Ar tu nori sukurti ákrovos diskelá?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5470,28 +5545,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Atleisk, bet neradau jokio diskeliř kaupiklio"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Kuriamas ákrovos diskelis"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Ruođiama ákrovos tvarkyklë"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5499,11 +5574,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Ar nori naudoti aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5511,16 +5586,16 @@ msgstr ""
"Klaida ádiegiant aboot,\n"
"bandyti ádiegti priverstinai, net jei tai sunaikintř pirmŕjá skirsná?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Ádiegti ákrovos tvarkyklć"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Nepavyko ádiegti ákrovos tvarkyklës. Ávyko tokia klaida:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5531,17 +5606,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Kuriamas automatinio ádiegimo diskelis"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5551,7 +5626,7 @@ msgstr ""
"\n"
"Ar tu nori iđeiti dabar?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5583,15 +5658,15 @@ msgstr ""
"Informacija apie tavo sistemos konfigűravimŕ yra oficialioje\n"
"Mandrake Linux User's Guide knygoje."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Sukurti automatinio ádiegimo diskelá"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5605,15 +5680,15 @@ msgstr ""
"\n"
"Jűs galbűt norësite pakartoti ádiegimŕ.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatinis"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Parodyti vël"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Iđsaugoti paketř pasirinkimŕ"
@@ -5651,14 +5726,14 @@ msgstr "Iđplëstinis"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Tekstas"
@@ -6114,7 +6189,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Loopback montavimai %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Pirmiausia iđmeskite loginius tomus\n"
@@ -6253,15 +6328,15 @@ msgstr "jokios"
msgid "No mouse"
msgstr "Pelës nëra"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Prađom iđbandyti pelć"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Kad suţadintum pelć,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "PASUK RATUKŔ!"
@@ -6297,11 +6372,11 @@ msgstr "Suskleisti medá"
msgid "Toggle between flat and group sorted"
msgstr "Perjungti tarp rikiavimo pagal grupes ar abëcëlć"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Prisijungti prie interneto"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6311,23 +6386,19 @@ msgstr ""
"Vis dëlto, kai kurios jungtys gali naudoti PPTP arba DHCP.\n"
"Jei neţinai, pasirink 'naudoti pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "naudoti dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "naudoti pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "naudoti pptp"
@@ -6424,7 +6495,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:362
msgid "Configuring network"
msgstr "Konfigűruojamas tinklas"
@@ -6440,15 +6511,15 @@ 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:367
msgid "Host name"
msgstr "Hosto vardas"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Tinklo Konfigűravimo Meistras"
@@ -6488,8 +6559,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Aptikta ugniasienës konfigűracija!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN konfigűravimas"
@@ -6529,23 +6600,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Kurá protokolŕ nori naudoti?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Kokios rűđies plokđtć tu turi?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Neţinau"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6558,19 +6634,19 @@ msgstr ""
"\n"
"Jei turi PCMCIA plokđtć, tu turi ţinoti jos IRQ bei IO.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Nutraukti"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Tćsti"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Kuri yra tavo ISDN plokđtë?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6578,7 +6654,7 @@ msgstr ""
"Ađ aptikau ISDN PCI plokđtć, tačiau neţinau jos tipo. Pasirink vienŕ PCI "
"plokđtć sekančiame ekrane."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Jokia ISDN PCI plokđtë nerasta. prađom pasirinkti vienŕ kitame ekrane."
@@ -6634,7 +6710,7 @@ msgstr "Pirmasis DNS serveris"
msgid "Second DNS Server (optional)"
msgstr "Antrasis DNS serveris"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6642,7 +6718,7 @@ msgstr ""
"\n"
"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6650,11 +6726,11 @@ msgstr ""
"\n"
"Tu gali iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Tu dabar esi prisijungćs prie interneto."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6662,37 +6738,37 @@ msgstr ""
"\n"
"Tu gali prisijungti prie interneto arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Tu dabar nesi prisijungćs prie interneto."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Sujungimas..."
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "Sujungimas..."
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Nustatyti tinklŕ"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Interneto jungtis ir nustatymas"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6706,12 +6782,12 @@ msgstr ""
"\n"
"Tu gali atsijungti arba iđ naujo nustatyti jungtá."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Tinklo konfigűravimas"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
#, fuzzy
msgid ""
"Because you are doing a network installation, your network is already "
@@ -6723,7 +6799,7 @@ msgstr ""
"Spragtelëkite ant Gerai kad perkonfiguruoti Network/Internet pasijungimŕ "
"arbaatđaukti, kad praleisti đá punktŕ.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
#, fuzzy
msgid ""
"Welcome to The Network Configuration Wizard.\n"
@@ -6736,99 +6812,99 @@ msgstr ""
"Mes ruođiamës konfiguruoti jűsř internet/tinkliná pasijungimŕ.\n"
"Jeigu nenorite naudoti automatinio aptikimo nuimkite điŕ atţymŕ.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Konfiguravimui pasirinkite prifailŕ"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Naudokite automatiná aptikimŕ"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Ieđkoma áranga..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Nustatyti normaliŕ jungtá per modemŕ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "aptiktas prievade %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN jungtis"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "aptiktas %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN jungtis"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "aptiktas interfeise %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelinë jungtis"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kabelinë jungtis"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN jungtis"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "aptiktos ethernet kortos(a)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Pasirink kurá áranká norëtum naudoti"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Interneto jungties dalinimas"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Ar tu nori prisijungti tik ájungus?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Tinklo konfigűravimas"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6836,7 +6912,7 @@ msgid ""
"%s"
msgstr "Ar tu nori iđ naujo paleisti tinklŕ"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6846,7 +6922,7 @@ msgstr ""
"\n"
"Dabar konfiguracijŕ pritaikysime sistemai.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6854,14 +6930,14 @@ msgstr ""
"Po to rekomenduojame jums perleisti X aplinkŕ,\n"
"kad iđvengti problemř su kompiuterio vardu."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6874,7 +6950,7 @@ msgstr ""
"Jei pakeisi kŕ nors ţemiau esančiuose laukuose, tai ásigalios vietoj senřjř "
"nuostatř."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6884,43 +6960,43 @@ msgstr ""
"Kiekvienas laukas turi bűti árađytas kaip IP adresas\n"
"deđimtainiais skaičiais su tađkais (pvz. 192.168.2.36)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigűruojamas tinklo árenginys %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (tvarkyklë %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adresas"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatinis IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Startavo ákrovos metu"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6932,42 +7008,53 @@ 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:368
msgid "DNS server"
msgstr "DNS serveris"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Đliuzo (gateway) árenginys"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Proxy konfigűracija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy turëtř bűti http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy turëtř bűti ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy turëtř bűti http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8369,7 +8456,7 @@ msgstr "Iđjungiamas tinklas"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8883,11 +8970,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy turëtř bűti http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8937,6 +9019,43 @@ msgstr "mkraid nepavyko (gal bűt trűksta raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nëra pakankamai sričiř %d lygio RAID\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Nustatomas saugumo lygis"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Nustatomas saugumo lygis"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Nutolusio lpd spausdintuvo nuostatos"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Áprastas)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Nustatomas saugumo lygis"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Prađome palaukti. Ruođiamas ádiegimas"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9234,7 +9353,7 @@ msgstr "Internetas"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistemos reţimas"
@@ -9331,7 +9450,7 @@ msgstr "Prisijungti prie interneto"
#: ../../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"
msgstr ""
@@ -9378,7 +9497,7 @@ msgstr "Tinklo interfeisas"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9403,7 +9522,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9419,7 +9538,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9434,7 +9553,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9483,8 +9602,8 @@ 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 your 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
@@ -9521,11 +9640,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Ádiegiamas paketas %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Prađom atsisveikinti ir paskui paspausti Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Prađom iđ naujo paleisti %s, kad pakeitimai bűtř aktyvuoti"
@@ -9573,17 +9692,6 @@ msgstr "Pridëti vartotojŕ"
msgid "Add/Del Clients"
msgstr "DHCP klientas"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/Pagalba"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9636,53 +9744,68 @@ msgstr "Pridëti vartotojŕ"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klientas"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigűruojama..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "LAN Konfiguravimas"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "iđ naujo nustatyti"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Ádëk diskelá á kaupiklá %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Neprieinamas në vienas diskeliř kaupiklis"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9806,13 +9929,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Patikrinti prievadus"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9821,41 +9944,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Jokio slaptaţodţio"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Adapteris %s: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9866,68 +9989,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9935,926 +10058,928 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Klaida skaitant bylŕ %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Paketř grupiř pasirinkimas"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, fuzzy
msgid "Please check all users that you want to include in your backup."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Pađalinti eilć"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Iđmesti Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Prađom iđbandyti pelć"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Prađom bandyti vël"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Prađom bandyti vël"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Jokio slaptaţodţio"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Prađom pasirinkti klaviatűros iđdëstymŕ."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Prađom spragtelëti ant skirsnio"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Pasirink bylŕ"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, fuzzy
msgid "Please check if you want to erase your tape before the backup."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
#, fuzzy
msgid "Please check if you want to eject your tape after the backup."
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Prađom iđbandyti pelć"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Tinklo interfeisas"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Rűđis"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
#, fuzzy
msgid "What"
msgstr "Palauk"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Su ratuku"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Modulio parinktys:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Pasirink paketus, kuriuos tu nori ádiegti."
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Nustatyti bylř sistemas"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Pelës árenginys: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Pasirinktys"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, 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:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Prađom pasirinkti savo pelës rűđá."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Prađom iđbandyti pelć"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN jungtis"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Pasirink spausdintuvo jungtá"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Atstatyti iđ diskelio"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Prađom pasirinkti savo pelës rűđá."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Kitas"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Ádiegti sistemŕ"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Prađom pasirinkti savo pelës rűđá."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Pađalinti eilć"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Atstatyti iđ diskelio"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Iđgelbëti skirsniř lentelć"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Hosto vardas"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Slaptaţodis"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Kompiuterio vardas:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Prisitaikyti"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Iđgelbëti skirsniř lentelć"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Ankstesnis"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Bűsena:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Atstatyti iđ bylos"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, fuzzy
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr "Ruođiamasi ádiegti điuos paketus"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Prađom pasirinkti kalbŕ, kuriŕ naudosi."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Bloga atsarginë byla"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Iđsaugoti á bylŕ"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Tinklo konfigűravimas"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN Konfiguravimas"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Nustatyti bylř sistemas"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10886,7 +11011,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10895,7 +11020,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10936,7 +11061,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10964,17 +11089,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10991,7 +11116,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11031,7 +11156,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11042,7 +11167,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11055,7 +11180,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11137,8 +11262,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsolës árankiai"
@@ -11214,28 +11339,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Prievadas"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Iđeiti iđ ádiegimo"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Tu gali pasirinkti kitas kalbas, kurios bus prieinamos po ádiegimo"
@@ -11337,11 +11462,6 @@ msgstr "Meistras..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Nustatymř tikrinimas"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11459,7 +11579,7 @@ msgstr "Modulio vardas"
msgid "Size"
msgstr "Dydis"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11524,24 +11644,24 @@ msgstr "Iđvedimas"
msgid "Build the disk"
msgstr "Sukurti diskelá"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr ""
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
"Please insert one."
msgstr ""
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, fuzzy, c-format
msgid "Unable to fork: %s"
msgstr "Uţdrausti tinklŕ"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12036,157 +12156,157 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Interneto jungties dalinimas"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Darbo grupë"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "skirsnyje %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Iđtrinti"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Atlikta"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Pridëti modulá"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Spausdintuvo nëra"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Pađalinti eilć"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Priimti vartotojŕ"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versija: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Prievadas"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Naudokite automatiná aptikimŕ"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Naudokite automatiná aptikimŕ"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Iđsaugoti paketř pasirinkimŕ"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Vartotojo vardas"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Darbo grupë"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nepajungtas"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12198,137 +12318,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "ákrovos diskelio sukűrimui"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Skiriamoji geba"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Pasirink veiksmŕ"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Share'o vardas"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "árenginys"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "árenginys"
+msgid "Save theme"
+msgstr "Ádiegti sistemŕ"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Pasirink monitoriř"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Spausdintuvo jungtis"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Spausdintuvo árenginio URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Ieđkoma áranga..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12469,6 +12599,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "vartosena: keyboarddrake [--expert] [klaviatűra]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "vartosena: keyboarddrake [--expert] [klaviatűra]\n"
@@ -12498,11 +12635,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "nepavyko paleisti gyvo atnaujinimo!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -12784,16 +12921,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12870,7 +13004,7 @@ msgstr "Ádiegti sistemŕ"
msgid "Exit install"
msgstr "Iđeiti iđ ádiegimo"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13128,6 +13262,21 @@ msgstr "Multimedija - CD kepimas"
msgid "Scientific Workstation"
msgstr "Mokslinës darbo stotis"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Konfigűracija po ádiegimo"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy turëtř bűti ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Iđeiti"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (nedirba su senais BIOS'ais)"
@@ -13216,9 +13365,6 @@ msgstr "Mokslinës darbo stotis"
#~ msgid "Test again"
#~ msgstr "Patikrinti vël"
-#~ msgid "Setting security level"
-#~ msgstr "Nustatomas saugumo lygis"
-
#~ msgid "Select a graphics card"
#~ msgstr "Pasirink vaizdo plokđtć"
@@ -13295,3 +13441,6 @@ msgstr "Mokslinës darbo stotis"
#~ msgid "Percentage of packages to install"
#~ msgstr "Kiek procentř paketř ádiegti"
+
+#~ msgid "/Help/_Report Bug"
+#~ msgstr "/Pagalba/_Raportuoti Klaidŕ"
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index cc78aad5d..93f921892 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2001-08-21 09:34+0200\n"
"Last-Translator: Juris Kudiňđ <cooker@inbox.lv>\n"
"Language-Team: Latvian\n"
@@ -91,24 +91,24 @@ msgstr "Konfigurât visus ekrânus neatkarîgi"
msgid "Use Xinerama extension"
msgstr "Lietot Xinerama piebűvi"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfigurât tikai karti \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, 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:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -147,12 +147,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr ""
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Pielâgota"
@@ -173,32 +173,32 @@ msgstr "Izđíirtspçja"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Labi"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Beigt"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -295,25 +295,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Atcelt"
@@ -390,11 +390,11 @@ msgstr "XFree86 serveris: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 draiveris: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X pçc startçđanas"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -403,7 +403,7 @@ msgstr ""
"Datoru var konfigurçt, lai pçc sistçmas ielâdes automâtiski startçtu X.\n"
"Vai vçlaties, lai pçc pârstartçđanas tiktu palaists X?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -415,7 +415,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "Kâds ir jűsu ISDN pieslçguma veids?"
@@ -488,7 +488,7 @@ msgstr "Kompakts"
msgid "compact"
msgstr "kompakts"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video reţîms"
@@ -496,17 +496,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parole"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Parole (atkârtoti)"
@@ -540,14 +540,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Lűdzu mçěiniet vçlreiz"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Paroles nesakrît"
@@ -584,7 +584,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -592,156 +592,156 @@ 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:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Pievienot"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Izdarîts"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Mainît"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Kâda veida ierakstu gribat pievienot"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Cita OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Cita OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Cita OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Attçls"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Sakne"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Papildinât"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lasît-rakstît"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabula"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nedrođs"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Nosaukums"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Noklusçts"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-izmçrs"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "BezVideo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Izdzçst ierakstu"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Tukđs nosaukums nav atďauts"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr ""
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
#, fuzzy
msgid "You must specify a root partition"
msgstr "Jums ir nepiecieđama swap partîcija"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Đis nosaukums jau ir izmantots"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Atrasti %s %s interfeisi"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Vai ir vçl kâds?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Vai datorâ ir kâds %s interfeiss?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nç"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Jâ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Apskatît dzelţu informâciju"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalçju draiveri %s kartei %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modulis %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -752,17 +752,17 @@ msgstr ""
"Opciju formâts ir ``nosaukums=vçrtîba nosaukums2=vçrtîba2 ...''.\n"
"Piemçram, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Moduďa opcijas:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Kuru %s draiveri pamçěinât?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -779,15 +779,15 @@ msgstr ""
"nepiecieđamo informâciju? Retos gadîjumos aptaujâđana var uzkârt datoru,\n"
"taču tas neradîs nekâdus bojâjumus."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Aptaujât"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Norâdît opcijas"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -796,62 +796,62 @@ msgstr ""
"Moduďa %s ielâde bija neveiksmîga.\n"
"Vai vçlaties pamçěinât ar citiem parametriem?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr ""
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr ""
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr ""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr ""
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr ""
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr ""
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(jau pievienots %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Đî parole ir pârâk vienkârđa"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Lűdzu ievadiet lietotâja vârdu"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Đâds lietotâja vârds jau ir pievienots"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Đâds lietotâja vârds jau ir pievienots"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Pievienot lietotâju"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -860,32 +860,32 @@ msgstr ""
"Ievadiet lietotâju\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Apstiprinât lietotâju"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Vârds un uzvârds"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Lietotâja vârds"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Čaula"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autoreěistrçđanâs"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
#, fuzzy
msgid ""
"I can set up your computer to automatically log on one user.\n"
@@ -895,59 +895,59 @@ msgstr ""
"atvçrta viena noteikta lietotâja sesija. \n"
"Ja nevçlaties izmantot đo iespçju, nospiediet atcelđanas pogu."
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Norâdiet noklusçto lietotâju:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Norâdiet izmantojamo logu menedţeri:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
#, fuzzy
msgid "Please choose a language to use."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Viss"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "Allow all users"
msgstr "Lietotâju pievienođana"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
#, fuzzy
msgid "No sharing"
msgstr "CUPS startçđana"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr ""
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -956,42 +956,42 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr ""
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Sveiciens hakeriem"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Vâjđ"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standarta"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Augsts"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Augsts"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoisks"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1001,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1009,7 +1009,7 @@ msgstr ""
"Tagad tiek izmantota parole, taču izmantot datoru tîklâ vçl aizvien\n"
"nav ieteicams."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1018,13 +1018,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:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1038,7 +1038,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:1088
+#: ../../any.pm_.c:1089
#, fuzzy
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
@@ -1047,36 +1047,36 @@ 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:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opcijas"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Izvçlieties drođîbas lîmeni?"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
#, fuzzy
msgid "Security level"
msgstr "Uzstâdu drođîbas lîmeni"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
#, fuzzy
msgid "Use libsafe for servers"
msgstr "Norâdiet servera opcijas"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1089,7 +1089,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1114,7 +1114,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:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Juus sveic GRUB, opereetaajsisteemu izveeles programma!"
@@ -1128,7 +1128,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:941
+#: ../../bootloader.pm_.c:992
#, 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."
@@ -1143,7 +1143,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:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Nospiediet ievadu, lai saakneetu izveeleeto OS, 'e', lai redigeetu"
@@ -1157,7 +1157,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:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "komandas pirms saakneesanas, vai 'c', lai izsauktu komandrindu."
@@ -1171,33 +1171,33 @@ 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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Izdaliitais ieraksts tiks saakneets peec %d sekundeem."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Darbavirsma"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Starta izvçlne"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "palîdzîba pagaidâm nav realizçta.\n"
@@ -1249,106 +1249,106 @@ msgstr "Lilo/grub reţîms"
msgid "Yaboot mode"
msgstr "Yaboot reţîms"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Sistçmas instalçđana"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Izveidot jaunu partîciju"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Kďűda"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr ""
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "BezVideo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Instalçđanas klases izvçle"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1357,22 +1357,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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurçt"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Saglabât pakotňu izvçli"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1381,44 +1381,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Sistçmas reţîms"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Palaist X-Window sistçmu sâknçđanas laikâ"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nç, negribu lietot autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Jâ, gribu lietot autologin đim lietotâjam un darba virsmai"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "Ok"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "lasîđanai nevar atvçrt /etc/inittab: %s"
@@ -1524,54 +1524,62 @@ msgstr "seriâla"
msgid "United States"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "jauns"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montçta"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
#, fuzzy
msgid "Server"
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Lűdzu notestçjiet peli"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "serveris"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opcijas: %s"
@@ -1660,7 +1668,7 @@ msgstr "Tukđs"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Cits"
@@ -1809,7 +1817,7 @@ msgstr ""
"Partîciju tabulas rezerves kopijai ir atđíirîgs izmçrs\n"
"Tomçr turpinât, ja?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Uzmanîbu"
@@ -2364,7 +2372,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:3529
#, fuzzy
msgid "Username"
msgstr "Lietotâja vârds"
@@ -2379,23 +2387,23 @@ msgstr "NIS domçns"
msgid "Search servers"
msgstr "DNS serveris"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatçđana %s neizdevâs"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "kďűda nomontçjot %s: %s"
@@ -2481,47 +2489,112 @@ msgstr ""
msgid "Error opening %s for writing: %s"
msgstr "Kďűda, atverot %s ierakstîđanai: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "LAN konfigurâcija"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Draiveris"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/_Palîdzîba"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Konfigurâcijas izmçěinâđana"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Lűdzu uzgaidiet"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "nezinâms"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2647,7 +2720,8 @@ msgid "/_Quit"
msgstr "Beigt"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "_Palîdzîba"
@@ -2667,76 +2741,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Ziňot kďűdu"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Palîdzîba/_Par..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Aptaujât"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Cietâ diska noteikđana"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Apskatît dzelţu informâciju"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Parâdît informâciju"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Peles konfigurçđana"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "atklâts uz porta %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Lűdzu uzgaidiet"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Nolasu CUPS draiveru datubâzi..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d sekundes"
@@ -4126,7 +4201,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4141,7 +4216,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4150,20 +4225,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Ielieciet FAT formatçtu disketi iekârtâ %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4171,12 +4246,12 @@ msgstr ""
"Lai izmantotu đo saglabâto pakotňu izvçli, palaidiet instalâciju ar ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Kďűda, nolasot failu %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4417,7 +4492,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Jűs sveic %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nav nevienas diskeđu iekârtas"
@@ -4448,11 +4523,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Pakotňu grupu izvçle"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Atseviđíu pakotňu izvçle"
@@ -4529,7 +4604,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalçt"
@@ -4552,7 +4627,7 @@ msgstr "Instalçđanas beigas"
msgid "Choose the packages you want to install"
msgstr "Izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalçju"
@@ -4579,17 +4654,17 @@ msgid "Installing package %s"
msgstr "Instalçju pakotni %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Pieňemt"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Noraidît"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4604,16 +4679,16 @@ msgstr ""
"Ja jums nav đî diska, nospiediet Atcelt, lai neinstalçtu no đî Cd-Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Tomçr turpinât?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Pakotňu kârtođanas laikâ atklâta kďűda:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Pakotňu instalçđanas laikâ atklâta kďűda:"
@@ -4737,7 +4812,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4815,7 +4890,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatűra"
@@ -5026,29 +5101,29 @@ msgstr "Ielieciet disketi iekârtâ %s"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5058,16 +5133,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom ar nosaukumu \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Sagatavoju instalçđanu"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5076,21 +5151,21 @@ msgstr ""
"Instalçju pakotni %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Pçcinstalçđanas konfigurçđana"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, fuzzy, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5157,7 +5232,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5169,166 +5244,166 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Izvçlieties spoguďserveri, no kura ňemt pakotnes"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Kâda ir jűsu laika josla?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "Vai datora pulkstenis râda GMT laiku?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Attâls CUPS serveris"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nav printera"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Vai ir vçl kâds?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Kopsavilkums"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Pele"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Laika josla"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printeris"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
#, fuzzy
msgid "ISDN card"
msgstr "Iekđçja ISDN karte"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
#, fuzzy
msgid "Sound card"
msgstr "Standarta"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Izmantot NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "NIS domçns"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Lokâls printeris"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "root paroles izvçle"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Bez paroles"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "serveris"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Autentifikâcijas NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS domçns"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS serveris"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5344,21 +5419,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autentifikâcija"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Domçna nosaukums"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5385,19 +5460,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Pirmâ diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Otrâ diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Izlaist"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5421,7 +5496,7 @@ msgstr ""
"izveidot jűsu sistçmai pielâgotu sâknçđanas disketi?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5430,28 +5505,28 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Diemţçl nav pieejama neviena diskeđu iekârta"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Gatavoju sâknçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Sagatavoju sâknçtâju"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5459,11 +5534,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Vai vçlaties izmantot aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5471,16 +5546,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Sâknçtâja instalçđana"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5491,17 +5566,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Sagatavoju auto instalçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5511,7 +5586,7 @@ msgstr ""
"\n"
"Vai tieđâm vçlaties iziet tűlît?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5544,15 +5619,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Sagatavot auto instalçđanas disketi"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5561,15 +5636,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automâtisks"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Atkârtot"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Saglabât pakotňu izvçli"
@@ -5607,14 +5682,14 @@ msgstr "Izvçrsta"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Tâlâk ->"
@@ -6070,7 +6145,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Cikliski montçđanas punkti %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -6209,15 +6284,15 @@ msgstr "neviens"
msgid "No mouse"
msgstr "Nav peles"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Lűdzu notestçjiet peli"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Lai aktivizçtu peli,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "PAKUSTINIET RITENI!"
@@ -6254,11 +6329,11 @@ msgstr "Sakďaut koku"
msgid "Toggle between flat and group sorted"
msgstr "Sakârtots vienâ sarakstâ vai pa grupâm"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Pieslçgties Internetam"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6268,23 +6343,19 @@ msgstr ""
"Daţi pieslçgumi izmanto pptp, pavisam nedaudzi dhcp.\n"
"Ja jűs nezinat, izvçlieties 'izmantot pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "izmantot dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "izmantot pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "izmantot pptp"
@@ -6380,7 +6451,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:362
msgid "Configuring network"
msgstr "Konfigurçju tîklu"
@@ -6396,15 +6467,15 @@ 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:367
msgid "Host name"
msgstr "Resursa vârds:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Tîkla konfigurçđanas meistars"
@@ -6444,8 +6515,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Tika atklâta ugunsműra konfigurâcija!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN konfigurâcija"
@@ -6485,23 +6556,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Kâdu protokolu vçlaties izmantot?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Kâds ir jűsu kartes tips?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Nezinu"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6514,19 +6590,19 @@ msgstr ""
"\n"
"Ja jums ir PCMCIA karte, jums ir jâzina kartes irq un io.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Pârtraukt"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Turpinât"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Kura ir jűsu ISDN karte ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6534,7 +6610,7 @@ msgstr ""
"Ir atklâta ISDN PCI karte, bet nav zinâms kartes tips. Lűdzu izvçlieties "
"kâdu no nâkamajâ ekrânâ uzskaitîtajâm PCI kartçm."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nav atrasta neviena ISDN PCI karte. Lűdzu izvçlieties kâdu no saraksta."
@@ -6589,7 +6665,7 @@ msgstr "Pirmais DNS serveris"
msgid "Second DNS Server (optional)"
msgstr "Otrais DNS serveris"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6597,7 +6673,7 @@ msgstr ""
"\n"
"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6605,11 +6681,11 @@ msgstr ""
"\n"
"Varat pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Pađlaik jűs esat pieslçdzies Internetam."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6617,37 +6693,37 @@ msgstr ""
"\n"
"Varat pieslçgties Internetam vai pârkonfigurçts pieslçgumu."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Pađlaik jűs neesat pieslçdzies Internetam."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
#, fuzzy
msgid "Connect"
msgstr "Nav pieslçgts"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
#, fuzzy
msgid "Disconnect"
msgstr "ISDN pieslçgums"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Tîkla konfigurçđana"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Interneta pieslçgums un konfigurâcija"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -6661,12 +6737,12 @@ msgstr ""
"\n"
"Varat atslçgties vai pârkonfigurçt pieslçgumu."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Tîkla konfigurâcija"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6674,7 +6750,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6682,99 +6758,99 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Izvçlieties konfigurçjamo profilu"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Noskaidroju ierîces..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Parasts modçma pieslçgums"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "atklâts uz porta %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN pieslçgums"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "atklâts %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "LAN pieslçgums"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "atklâts uz interfeisa %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabeďa pieslçgums"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Kabeďa pieslçgums"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN pieslçgums"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet karte(s) atrasta"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Izvçlieties izmantojamo rîku"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Interneta pieslçguma koplietođana"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Vai vçlaties startçt pieslçgumu palaiđanas laikâ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Tîkla konfigurâcija"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, fuzzy, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6782,27 +6858,27 @@ msgid ""
"%s"
msgstr "Vai vçlaties pârstartçt tîklu"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6813,7 +6889,7 @@ msgstr ""
"Vienkârđi apstipriniet, ka vçlaties saglabât đo konfigurâciju.\n"
"Tâlâko lauku izmainîđana pârrakstîs đo konfigurâciju."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6823,43 +6899,43 @@ msgstr ""
"Visi dati jâievada kâ IP adreses ar punktiem atdalîtu decimâlu\n"
"skaitďu veidâ (piemçram, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurçju tîkla iekârtu %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (draiveris %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adrese"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Tîkla maska"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automâtisks IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Sistçmdisketes radîđana"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6871,42 +6947,53 @@ 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:368
msgid "DNS server"
msgstr "DNS serveris"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Vârtejas ierîce"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Proxy serveru konfigurâcija"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy bűtu jâbűt http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy bűtu jâbűt ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Proxy bűtu jâbűt http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -8304,7 +8391,7 @@ msgstr "Atslçdzu tîklu"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
#, fuzzy
@@ -8817,11 +8904,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy bűtu jâbűt http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8871,6 +8953,43 @@ msgstr "mkraid neizdevâs (varbűt nav uzstâdîti raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nepietiek diska partîciju RAID lîmenim %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Uzstâdu drođîbas lîmeni"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Uzstâdu drođîbas lîmeni"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Attâla lpd printera opcijas"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Noklusçts)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Uzstâdu drođîbas lîmeni"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Lűdzu gaidiet, gatavoju instalâciju"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9166,7 +9285,7 @@ msgstr "Internets"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Sistçmas reţîms"
@@ -9263,7 +9382,7 @@ msgstr "Pieslçgties Internetam"
#: ../../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"
msgstr ""
@@ -9311,7 +9430,7 @@ msgstr "Tîkla interfeiss"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9337,7 +9456,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -9353,7 +9472,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9368,7 +9487,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -9417,8 +9536,8 @@ 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 your 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
@@ -9455,11 +9574,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalçju pakotni %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Lűdzu aizveriet sesiju un nospiediet Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Lai aktivizçtu izmaiňas, lűdzu aizveriet un atveriet %s sesiju"
@@ -9507,17 +9626,6 @@ msgstr "Pievienot lietotâju"
msgid "Add/Del Clients"
msgstr "DHCP klients"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/_Palîdzîba"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -9570,53 +9678,68 @@ msgstr "Pievienot lietotâju"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "DHCP klients"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Konfigurçju..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "LAN konfigurâcija"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "pârkonfigurçt"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Ielieciet disketi iekârtâ %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nav nevienas diskeđu iekârtas"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9740,13 +9863,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Pârbaudît portus"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9755,41 +9878,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Bez paroles"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Adapteris %s: %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9800,68 +9923,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9869,923 +9992,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Kďűda, nolasot failu %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Pakotňu grupu izvçle"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, 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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Noňemt rindu"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Noňemt Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Lűdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Lűdzu mçěiniet vçlreiz"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Lűdzu mçěiniet vçlreiz"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Bez paroles"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Lűdzu izvçlieties jűsu tastatűras izkârtojumu."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, 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:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Lűdzu uzklikđíiniet uz partîcijas"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Izvçlieties failu"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, 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:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Lűdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Tîkla interfeiss"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tips"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, 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:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Ritenis"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Ritenis"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Moduďa opcijas:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Lűdzu izvçlieties pakotnes, ko vçlaties instalçt"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Failu sistçmu uzstâdîđana"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Peles ierîce: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opcijas"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, 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:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Lűdzu izvçlieties jűsu peles tipu."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Lűdzu notestçjiet peli"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "LAN pieslçgums"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Izvçlieties printera pieslçgumu"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Atjanot no disketes"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Lűdzu izvçlieties jűsu peles tipu."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Cits"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Sistçmas instalçđana"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Lűdzu izvçlieties jűsu peles tipu."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Noňemt rindu"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Atjanot no disketes"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Salabot partîciju tabulu"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Resursa vârds:"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Parole"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Resursa vârds: "
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Pielâgota"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Salabot partîciju tabulu"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Atpakaď"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Stâvoklis:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Atjaunot no faila"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Lűdzu izvçlieties izmantojamo valodu."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Slikts rezerves kopijas fails"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Saglabât failâ"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Tîkla konfigurâcija"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "LAN konfigurâcija"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "LAN konfigurâcija"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Failu sistçmu uzstâdîđana"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10817,7 +10942,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10826,7 +10951,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10867,7 +10992,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10895,17 +11020,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10922,7 +11047,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10962,7 +11087,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10973,7 +11098,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10986,7 +11111,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11068,8 +11193,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Konsoles rîki"
@@ -11145,28 +11270,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Ports"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Instalçđanas beigas"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, 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"
@@ -11271,11 +11396,6 @@ msgstr "Meistars..."
msgid "Apply"
msgstr ""
-#: ../../standalone/drakconnect_.c:301
-#, fuzzy
-msgid "Please Wait... Applying the configuration"
-msgstr "Konfigurâcijas izmçěinâđana"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
#, fuzzy
msgid "Connected"
@@ -11392,7 +11512,7 @@ msgstr "Moduďa nosaukums"
msgid "Size"
msgstr "Izmçrs"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11457,12 +11577,12 @@ msgstr "Izvade"
msgid "Build the disk"
msgstr "Izveidot disku"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Pârliecinieties ka datu nesçjs %s ir vajadzîgajâ vietâ"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11471,12 +11591,12 @@ msgstr ""
"Nav datu nesçja ierîcç %s.\n"
"Lűdzu ielieciet kâdu."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Nevar atdalît: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11975,155 +12095,155 @@ msgid ""
"Click on Configure to launch the setup wizard."
msgstr "Interneta pieslçguma koplietođana"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Darba grupa"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partîcija %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Izdzçst"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Izdarîts"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Pievienot moduli"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Nav printera"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Noňemt rindu"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Apstiprinât lietotâju"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versija: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Ports"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Saglabât pakotňu izvçli"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Lietotâja vârds"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Darba grupa"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nav pieslçgts"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12135,137 +12255,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "sâknçđanas diska veidođana"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Izđíirtspçja"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Izvçlieties darbîbu"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Koplietojuma vârds"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "ierîce"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "ierîce"
+msgid "Save theme"
+msgstr "Sistçmas instalçđana"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Norâdiet monitoru"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Printera pieslçgums"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Printera ierîces URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Noskaidroju ierîces..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12406,6 +12536,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "pielietojums: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "pielietojums: keyboarddrake [--expert] [keyboard]\n"
@@ -12434,11 +12571,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Neizdodas uzsâkt uzlabođanu no tîkla !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12719,16 +12856,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -12804,7 +12938,7 @@ msgstr "Sistçmas instalçđana"
msgid "Exit install"
msgstr "Instalçđanas beigas"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13072,6 +13206,21 @@ msgstr "Multimçdiji - CD ierakstîđana"
msgid "Scientific Workstation"
msgstr "Zinâtniskâ darbastacija"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Pçcinstalçđanas konfigurçđana"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy bűtu jâbűt ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Beigt"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (nedarbojas ar veciem BIOSiem)"
@@ -13160,9 +13309,6 @@ msgstr "Zinâtniskâ darbastacija"
#~ msgid "Test again"
#~ msgstr "Mçěinât vçlreiz"
-#~ msgid "Setting security level"
-#~ msgstr "Uzstâdu drođîbas lîmeni"
-
#~ msgid "Select a graphics card"
#~ msgstr "Izvçlieties grafisko karti"
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index edf6ee33c..a866230af 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -1,4 +1,4 @@
-# SOME DESCRIPTIVE TITLE.
+# Dutch translation of DrakX.
# Copyright (C) 2000 Free Software Foundation, Inc.
# Copyright (c) 2000 MandrakeSoft
# Niels Gras <niels.gras@wanadoo.nl>, 2000
@@ -9,10 +9,10 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-08-31 01:30+0100\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-08 19:00+0200\n"
"Last-Translator: Reinout van Schouwen <reinout@cs.vu.nl>\n"
-"Language-Team: Nederlands <vertaling@nl.linux.org>\n"
+"Language-Team: Dutch <vertaling@nl.linux.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -59,7 +59,7 @@ msgstr "Selecteer een X-server"
#: ../../Xconfig/card.pm_.c:203
msgid "X server"
-msgstr "X-Server"
+msgstr "X-server"
#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
@@ -93,24 +93,24 @@ msgstr "Alle koppen afzonderlijk configureren"
msgid "Use Xinerama extension"
msgstr "Xinerama-uitbreiding gebruiken"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Alleen kaart \"%s\"%s configureren"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -121,17 +121,17 @@ msgstr ""
"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
"kunnen hebben in 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EXPERIMENTELE 3D hardware acceleratie"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -145,7 +145,7 @@ msgstr ""
"Uw kaart wordt ondersteund door XFree %s, welke betere ondersteuning zou \n"
"kunnen hebben in 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -155,12 +155,12 @@ msgstr ""
"LET OP: DIT IS EEN EXPERIMENTELE ONDERSTEUNING, WELKE UW COMPUTER KAN LATEN "
"VASTLOPEN."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installatie beeldscherm-stuurprogramma)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Aangepast"
@@ -180,32 +180,32 @@ msgstr "Resolutie"
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Afsluiten"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -305,25 +305,25 @@ msgstr "Kies resolutie en kleurdiepte"
msgid "Graphics card: %s"
msgstr "Grafische kaart: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Annuleren"
@@ -401,11 +401,11 @@ msgstr "XFree86-server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 stuurprogramma: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X bij opstarten"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -414,7 +414,7 @@ msgstr ""
"Ik kan uw computer instellen om automatisch X te starten bij het opstarten.\n"
"Wenst u X te starten bij het opstarten?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -434,7 +434,7 @@ msgstr ""
"\n"
"Heeft u deze mogelijkheid?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Welke norm gebruikt uw TV?"
@@ -506,7 +506,7 @@ msgstr "Compact"
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video-modus"
@@ -514,23 +514,23 @@ msgstr "Video-modus"
msgid "Delay before booting default image"
msgstr "Pauze voor het opstarten van standaard-kernel"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Wachtwoord"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Wachtwoord (nogmaals)"
#: ../../any.pm_.c:172
msgid "Restrict command line options"
-msgstr "Commandoregel-opties beperken"
+msgstr "Opdrachtregel-opties beperken"
#: ../../any.pm_.c:172
msgid "restrict"
@@ -559,14 +559,14 @@ msgid ""
msgstr ""
"De optie ``Commandoregel-opties beperken'' heeft geen nut zonder wachtwoord"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Gelieve opnieuw te proberen"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "De wachtwoorden komen niet overeen"
@@ -608,7 +608,7 @@ msgstr ""
"\n"
"Van welke schijf start U op ?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -616,148 +616,148 @@ msgstr ""
"Hier zijn de waardes voor LILO.\n"
"U kunt er enkele toevoegen of de bestaande wijzigen."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Toevoegen"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Aanpassen"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Ander OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Ander OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Ander OS (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
-msgstr "Kernel"
+msgstr "Beeldbestand"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Toevoegen"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Lezen-schrijven"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Naam"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Standaard"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-grootte"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
-msgstr "Geen Video"
+msgstr "Geen video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
-msgstr "Waarde verwijderen"
+msgstr "Item verwijderen"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Lege naam is niet toegelaten"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "U dient een kernel-bestand aan te geven"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "U dient een hoofdmap(root)-partitie aan te geven"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Deze naam wordt al gebruikt"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "%s %s interfaces gevonden"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Heeft u er nog ĂŠĂŠn?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Heeft u een %s interface?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
-msgstr "Bekijk hardware-info"
+msgstr "Hardware-info bekijken"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Bezig met installeren van stuurprogramma voor %s kaart %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -766,7 +766,7 @@ msgstr ""
"U kunt nu de opties doorgeven aan module %s.\n"
"Merk op dat een adres moet worden ingegeven met de prefix 0x zoals '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -777,17 +777,17 @@ msgstr ""
"Opties staan in het formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bijvoorbeeld, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Module-opties:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Welk %s stuurprogramma moet ik proberen?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -804,15 +804,15 @@ msgstr ""
"zelf zoeken? Soms zal de automatische detectie de computer laten hangen,\n"
"maar het zou geen schade mogen veroorzaken."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
-msgstr "Automatisch detecteren"
+msgstr "Automatisch bespeuren"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Opties specificeren"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -821,62 +821,62 @@ msgstr ""
"Het laden van module %s is niet gelukt.\n"
"Wenst u opnieuw te proberen met andere parameters?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "toegang tot X-programma's"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "toegang tot rpm-gereedschappen"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "\"su\" toestaan"
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "toegang tot administratieve bestanden"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "toegang tot netwerk-gereedschappen"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "toegang tot compileer-gereedschappen"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(%s reeds toegevoegd)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Dit wachtwoord is te eenvoudig"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Gelieve een gebruikersnaam in te geven"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Deze gebruikersnaam is te lang"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Deze gebruikersnaam is al toegevoegd"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Gebruiker toevoegen"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -885,32 +885,32 @@ msgstr ""
"Geef een gebruiker in\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Gebruiker aanvaarden"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Echte naam"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Gebruikersnaam"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Pictogram"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Automatisch inloggen"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -918,56 +918,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:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Kies de standaard gebruiker:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Selecteer de 'window manager' die u wilt gebruiken:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Kies de taal die u wenst te gebruiken."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Alles"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Alle gebruikers toestaan"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Niet delen"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Verplicht pakket %s ontbreekt"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -981,11 +981,11 @@ msgstr ""
"\n"
"\"Aangepast\": per-gebruiker instellingen toestaan.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Userdrake opstarten"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -994,31 +994,31 @@ msgstr ""
"\"fileshare\". U kunt met userdrake een gebruiker\n"
"aan deze groep toevoegen."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Welkom Bij krakers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Weinig"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standaard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Hoog"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Hoger"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "ParanoĂŻde"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1030,7 +1030,7 @@ msgstr ""
"machine met andere computers of het internet verbonden is. Er worden\n"
"geen wachtwoorden gebruikt."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1038,7 +1038,7 @@ msgstr ""
"Wachtwoorden zijn nu ingeschakeld, maar het gebruik als genetwerkte computer "
"is nog steeds niet aanbevolen."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1046,7 +1046,7 @@ msgstr ""
"Dit is de standaardbeveiliging, aangeraden voor een computer die als cliĂŤnt "
"met het Internet verbonden zal worden."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1054,7 +1054,7 @@ msgstr ""
"Er zijn al enkele restricties en meer automatische checks worden iedere "
"nacht gedraaid."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1070,7 +1070,7 @@ msgstr ""
"een\n"
"client op het Internet is, dan kunt u beter een lager niveau kiezen."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1078,34 +1078,34 @@ msgstr ""
"Gebaseerd op het lagere niveau, maar nu is het systeem volledig afgesloten.\n"
"Beveiligingsfuncties staan op hun maximumwaarde."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec basisopties"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Kies het gewenste veiligheidsniveau"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Veiligheidsniveau"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Gebruik libsafe voor servers"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Beveiligings-beheerder (gebruikersnaam of e-mail)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1116,7 +1116,7 @@ msgstr ""
"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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1132,59 +1132,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Start Menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "Nog geen hulp beschikbaar.\n"
@@ -1236,63 +1236,63 @@ msgstr "Lilo/Grub modus"
msgid "Yaboot mode"
msgstr "Yaboot modus"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Thema's installeren"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Thema weergeven onder keuzemenu"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Nieuw thema creĂŤren"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Reservekopie maken van %s naar %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Fout"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "niet in staat reservekopie te maken van lilo-melding"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "%s naar %s kopiĂŤren"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "kan lilo-melding niet veranderen"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Lilo-melding niet gevonden"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Kan /etc/sysconfig/bootsplash niet wegschrijven."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "%s schrijven"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1300,17 +1300,17 @@ msgstr ""
"Kan /etc/sysconfig/bootsplash niet wegschrijven\n"
"Bestand niet gevonden."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Kan mkinitrd -f /boot/initrd-%s.img %s niet starten."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "initrd maken: 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1319,47 +1319,47 @@ msgstr ""
"Start \"lilo\" als root vanaf de opdrachtregel om de LiLo thema-installatie "
"te voltooien."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "'Lilo' opnieuw starten"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Melding"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Installatie van LiLo- en opstartschermthema's geslaagd"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Thema-installatie mislukt!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"U gebruikt op dit moment %s als Opstart-manager.\n"
-"Klik op Configureer om de instel-hulp te starten."
+"Klik op Configureer om de instel-wizard te starten."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configureren"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Selectie opstartscherm"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Thema's"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1373,44 +1373,44 @@ msgstr ""
"opstartscherm,\n"
"u kunt ze apart kiezen"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Lilo-scherm"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Opstartscherm"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Systeem modus"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Open het X-Window systeem bij opstarten"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nee, ik wil niet automatisch inloggen"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Ja, ik wil automatisch inloggen met deze (gebruiker, werkomgeving)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "kan /etc/inittab niet lezen: %s"
@@ -1507,50 +1507,63 @@ msgstr "Oostenrijk"
msgid "United States"
msgstr "Verenigde Staten"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+"WebDAV is een protocol dat u in staat stelt een map op een web server\n"
+"lokaal te koppelen, en deze te behandelen alsof het een lokaal bestands-\n"
+"systeem is (vooropgesteld dat de web server geconfigureerd is als een\n"
+"WebDAV-server). Indien u WebDAV-koppelpunten wenst toe te voegen,selecteer "
+"dan \"Nieuw\"."
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Nieuw"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Ontkoppelen"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Koppelen"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Geef de URL van de WebDAV-server in"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "De URL moet beginnen met http:// of https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Koppelpunt: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opties: %s"
@@ -1577,7 +1590,7 @@ msgstr ""
#: ../../diskdrake/hd_gtk.pm_.c:151
msgid "Wizard"
-msgstr "Hulp"
+msgstr "Wizard"
#: ../../diskdrake/hd_gtk.pm_.c:184 ../../diskdrake/removable_gtk.pm_.c:24
msgid "Choose action"
@@ -1638,7 +1651,7 @@ msgstr "Leeg"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Overig"
@@ -1782,7 +1795,7 @@ msgstr ""
"De backup partitietabel heeft niet dezelfde grootte\n"
"Toch verdergaan?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Waarschuwing"
@@ -2333,7 +2346,7 @@ msgstr "Kan niet inloggen met gebruikersnaam %s (verkeerd wachtwoord?)"
#: ../../diskdrake/smbnfs_gtk.pm_.c:166 ../../diskdrake/smbnfs_gtk.pm_.c:175
msgid "Domain Authentication Required"
-msgstr "Domein Authenticatie Vereist"
+msgstr "Domein-aanmelding vereist"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
msgid "Another one"
@@ -2350,7 +2363,7 @@ msgstr ""
"Voer uw gebruikersnaam, wachtwoord en domeinnaam in om toegang te krijgen "
"tot deze host."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Gebruikersnaam"
@@ -2362,23 +2375,23 @@ msgstr "Domein"
msgid "Search servers"
msgstr "Servers zoeken"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatteren van %s mislukt"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "het koppelen van partitie %s in map %s is mislukt"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout bij ontkoppelen %s: %s"
@@ -2417,11 +2430,11 @@ msgstr ""
#: ../../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"
+msgstr "U kunt JFS niet gebruiken op een partitie kleiner dan 16MB"
#: ../../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"
+msgstr "U kunt ReiserFS niet gebruiken op een partitie kleiner dan 32MB"
#: ../../fsedit.pm_.c:521
msgid "Mount points must begin with a leading /"
@@ -2467,46 +2480,137 @@ msgstr "Niets meer te doen"
msgid "Error opening %s for writing: %s"
msgstr "Fout bij het openen van %s voor schrijfbewerking: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Geen alternatief stuurprogramma"
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, 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)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
+msgstr ""
+"Er is geen alternatief OSS/ALSA-stuurprogramma bekend voor uw geluidskaart(%"
+"s) welke momenteel \"%s\" gebruikt"
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Geluidsconfiguratie"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Hier kunt u een alternatief stuurprogramma selecteren (OSS of ALSA) voor uw "
-"geluidskaart (%s)"
+"geluidskaart (%s)."
+
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+"\n"
+"\n"
+"Uw kaart gebruikt momenteel het %s\"%s\"-stuurprogramma (standaard "
+"stuurprogramma voor uw kaart is \"%s\")"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Stuurprogramma:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Help"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr "Hulp bij het schakelen tussen ALSA en OSS"
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+"OSS (Open Source Sound) was de eerste geluidsarchitectuur (API) voor Linux. "
+"een besturingssysteem-onafhankelijke geluids-API (het is beschikbaar opde "
+"meeste UNIX-systemen) maar het is een erg simpele en beperkte API.\n"
+"Daarbij komt dat alle OSS-stuurprogramma's het wiel opnieuw uitvinden.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is een gemodulariseerde "
+"architectuurwelke een behoorlijk groot bereik van ISA-, USB- en PCI-kaarten "
+"ondersteunt.\n"
+"\n"
+"Tevens biedt het een interface op veel hoger niveau dan OSS.\n"
+"\n"
+"Om van ALSA gebruik te maken, kan men twee dingen doen:\n"
+"- gebruik maken van de compatibiliteits-API voor het oude OSS\n"
+"- gebruik maken van de nieuwe ALSA-API welke veel verbeterde "
+"functionaliteit kent maar vereist dat u de ALSA-bibliotheek gebruikt.\n"
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+"Het oude \"%s\"-stuurprogramma staat op de zwarte lijst.\n"
+"\n"
+"Er is gerapporteerd dat het kernel-oopses veroorzaakt bij\n"
+"het uitladen.\n"
+"\n"
+"Het nieuwe \"%s\"-stuurprogramma zal slechts gebruikt worden\n"
+"bij de volgende \"bootstrap\"."
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Even geduld... bezig met toepassen van de configuratie"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Even geduld"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Geen stuurprogramma bekend"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, 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
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Onbekend stuurprogramma"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2633,7 +2737,8 @@ msgid "/_Quit"
msgstr "/_Afsluiten"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Hulp"
@@ -2654,14 +2759,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Rapporteer Bug"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Info over..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Info over Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2669,62 +2778,59 @@ msgstr ""
"Dit is HardDrake, een Mandrake hardware configuratie-tool.\n"
"Versie:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Auteur:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 versie "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Gevonden randapparatuur"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informatie"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Module configureren"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Start configuratie-tool"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
-msgstr "Bezig met detecteren"
+msgstr "Bezig met zoeken"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Even geduld"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "U kunt elke vlag van de module hier configureren"
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Draait \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "Bezig met onderzoeken %s -klasse\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
-msgstr "Primaire"
+msgstr "primaire"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "secundaire"
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
msgid "Auto-detect"
-msgstr "Autodetecteren"
+msgstr "Automatisch bespeuren"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
msgid "Unknown|Generic"
@@ -2878,24 +2984,24 @@ msgid ""
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
-"Hierboven zijn de bestaande Linux partities afgebeeld die op uw harde\n"
-"schijf gevonden zijn. U kunt de keuzes die gemaakt zijn door de hulp\n"
+"Hierboven zijn de bestaande Linuxpartities afgebeeld die op uw harde\n"
+"schijf gevonden zijn. U kunt de keuzes die gemaakt zijn door de wizard\n"
"behouden, ze zijn goed voor de meeste doorsnee installaties.\n"
"Indien u veranderingen maakt, moet u in ieder geval een root partitie\n"
"(\"/\") definiĂŤren. Kies een partitie niet te klein, anders zult u niet in\n"
-"staat zijn genoeg software te installeren. Indien u uw gegevens op een\n"
+"staat zijn genoeg software te installeren. Indien u uw gegevens op een\n"
"aparte partitie wilt bewaren, dient u tevens een \"/home\" partitie te\n"
"creĂŤren (alleen mogelijk wanneer er meer dan ĂŠĂŠn Linux partitie\n"
"beschikbaar is).\n"
"\n"
-"Elke partitie is als volgt afgebeeld: \"Naam\", \"Capaciteit\"\n"
+"Elke partitie is als volgt afgebeeld: \"Naam\", \"Capaciteit\".\n"
"\n"
-"\"Naam\" is als volgt opgebouwd: \"type harde schijf\", \"harde schijf-nummer"
+"\"Naam\" is als volgt opgebouwd: \"type harde schijf\", \"nummer harde schijf"
"\",\n"
-"\"partitienumer\" (bijvoorbeeld \"hda1\").\n"
+"\"partitienummer\" (bijvoorbeeld \"hda1\").\n"
"\n"
-"\"Type harde schijf\" is \"hd\" als uw harde schijf van het IDE-type is en"
-"\"sd\" wanneer deze van het SCSI type is.\n"
+"\"Type harde schijf\" is \"hd\" als uw harde schijf van het IDE-type is en\n"
+"\"sd\" wanneer deze van het SCSI-type is.\n"
"\n"
"\"Harde schijf-nummer\" is altijd een letter na \"hd\" of \"sd\". Voor IDE\n"
"harde schijven:\n"
@@ -2924,7 +3030,6 @@ 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"
@@ -2981,7 +3086,7 @@ msgstr ""
"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"
+"gevraagd worden aan te geven welke CD's u bij de hand heeft (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"
@@ -3001,7 +3106,7 @@ msgstr ""
"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 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"
@@ -3015,9 +3120,8 @@ msgstr ""
"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"
+" * \"Met X\": installeer zo min mogelijk pakketten met behoud van een "
+"werkende grafische werkomgeving;\n"
" \n"
" * \"Met basis-documentatie\" installeert het basissysteem plus algemene\n"
"hulpprogramma's en hun documentatie. Deze installatie is geschikt om een "
@@ -3027,8 +3131,8 @@ msgstr ""
" * \"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"
+"opdrachtregel.\n"
+"Deze installatie is ongeveer 65 MB groot.\n"
"\n"
"U kunt het \"Individuele pakketselectie\"-vakje selecteren, welke nuttig is "
"als\n"
@@ -3043,7 +3147,6 @@ msgstr ""
"systeem."
#: ../../help.pm_.c:128
-#, fuzzy
msgid ""
"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"
@@ -3081,7 +3184,7 @@ msgid ""
"a floppy."
msgstr ""
"Tenslotte, afhankelijk van uw keus om al dan niet individuele pakketten\n"
-"te selecteren, wordt u een boom getoond bevattende alle pakketten\n"
+"te selecteren, wordt u een boom getoond die alle pakketten bevat\n"
"geclassificeerd in groepen en subgroepen. Terwijl u door de boom bladert,\n"
"kunt u gehele groepen, subgroepen of individuele pakketten selecteren.\n"
"\n"
@@ -3094,12 +3197,12 @@ msgstr ""
"helpen inschatten of er nog tijd is om te genieten van een kopje koffie.\n"
"\n"
"!! Als een server-pakket geselecteerd is, ofwel bedoeld ofwel omdat\n"
-"het onderdeel is van een gehele groep, zal u gevraagd worden om\n"
+"het onderdeel is van een hele groep, zal u gevraagd worden om\n"
"te bevestigen dat u deze servers echt wilt installeren. Onder Mandrake\n"
"Linux worden alle geĂŻnstalleerde servers standaard ingeschakeld\n"
"tijdens het opstarten. Zelfs wanneer zij veilig zijn en geen bekende\n"
-"beveiligingsgebreken hadden op het moment dat de distributie "
-"werdnuitgebracht, kan het gebeuren dat beveiligingsfouten ontdekt worden\n"
+"beveiligingsgebreken hadden op het moment dat de distributie werd\n"
+"uitgebracht, kan het gebeuren dat beveiligingsfouten ontdekt worden\n"
"nadat deze versie van Mandrake Linux afgemaakt werd. Indien u niet\n"
"weet wat een bepaalde dienst geacht wordt te doen of waarom het\n"
"geĂŻnstalleerd wordt, klikt u dan \"Nee\". Klikken op \"Ja\" zorgt ervoor\n"
@@ -3112,7 +3215,7 @@ msgstr ""
"dat het een afhankelijkheid moet vervullen met een ander pakket om de\n"
"installatie succesvol te kunnen voltooien.\n"
"\n"
-"Het minuscule diskette-pictogram onderaan de lijst stelt u in staat de\n"
+"Het kleine diskette-pictogram onderaan de lijst stelt u in staat de\n"
"pakketten-lijst te laden die tijdens een eerdere installatie gekozen was.\n"
"Als u klikt op dit pictogram zal u gevraagd worden een diskette in het\n"
"diskettestation te plaatsen welke gecreĂŤerd was aan het eind van een\n"
@@ -3120,7 +3223,6 @@ msgstr ""
"dergelijke diskette aanmaakt."
#: ../../help.pm_.c:164
-#, fuzzy
msgid ""
"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"
@@ -3150,18 +3252,19 @@ msgstr ""
"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"
+"Beschikbare verbindingstypen zijn: conventionele modem, ISDN-adapter,\n"
+"ADSL-verbinding, kabelmodem en tenslotte een eenvoudige\n"
+"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"
+"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"
+"totdat uw systeem geĂŻnstalleerd is en dan het daarin beschreven\n"
+"programma 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"
@@ -3195,15 +3298,15 @@ msgstr ""
"te selecteren. Wanneer u niet zeker bent of een dienst nuttig is of niet,\n"
"dan is het veiliger om de standaard-instelling over te nemen.\n"
"\n"
-"Wees vooral voorzichtig in deze stap als u uw machine als een server wil\n"
-"gebruiken: u zal waarschijnlijk de diensten die u niet nodig heeft niet "
-"willen\n"
-"starten. Onthoud alstublieft dat een aantal diensten gevaarlijk kunnen zijn\n"
-"wanneer ze geactiveerd zijn op een server. In het algemeen geldt: kies\n"
-"alleen de services die u echt nodig heeft."
+"!! Wees vooral voorzichtig in deze stap als u uw machine als een server \n"
+"wilt gebruiken: u zult waarschijnlijk de diensten die u niet nodig heeft "
+"niet\n"
+"willen starten. Onthoudt alstublieft dat een aantal diensten riskant kunnen\n"
+"zijn indien ze geactiveerd zijn op een server. In het algemeen geldt: kies\n"
+"alleen de diensten die u echt nodig heeft.\n"
+"!!"
#: ../../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"
@@ -3234,7 +3337,6 @@ 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"
@@ -3258,10 +3360,10 @@ msgid ""
"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"
-"afhankelijk zijn die met Mandrake Linux zijn meegeleverd. In deze stap zal "
-"DrakX\n"
-"trachten X automatisch te configureren.\n"
+"waarvan alle grafische omgevingen (KDE, GNOME, AfterStep, WindowMaker,\n"
+"etc) die met Mandrake Linux zijn meegeleverd, afhankelijk zijn. In deze "
+"stap\n"
+"zal DrakX trachten X automatisch te configureren.\n"
"\n"
"Het is uiterst ongebruikelijk dat dit mislukt, tenzij de hardware erg oud "
"(of\n"
@@ -3270,15 +3372,17 @@ msgstr ""
"oplossend vermogen mogelijk, afhankelijk van de grootte van uw monitor.\n"
"Een venster zal verschijnen en u vragen of u het kunt zien.\n"
"\n"
-"Indien u een \"Expert\"-installatie uitvoert, komt u in de X instellingen "
-"hulp.\n"
+"Indien u een \"Expert\"-installatie uitvoert, komt u in de X "
+"configuratiewizard.\n"
"Zie het corresponderende stuk in de handleiding voor meer informatie over\n"
-"deze hulp.\n"
+"deze wizard.\n"
"\n"
"Als u het bericht tijdens de test kunt zien en \"Ja\" antwoordt, zal DrakX\n"
"doorgaan naar de volgende stap. Zoniet, dan betekent dat gewoon dat de\n"
"instelling onjuist was. De test zal in dat geval automatisch eindigen na\n"
-"10 seconden en het scherm herstellen."
+"10 seconden en het scherm herstellen. Voor meer informatie over hoe u\n"
+"uw beeldscherm moet configureren zij u verwezen naar het hoofdstuk over\n"
+"videoconfiguratie in de handleiding."
#: ../../help.pm_.c:239
msgid ""
@@ -3288,14 +3392,13 @@ msgid ""
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
-"Tenslotte zal u gevraagd wordne of u de grafische interface wilt zien\n"
+"Tenslotte zal u gevraagd worden of u de grafische interface wilt zien\n"
"bij het opstarten. Merk op dat deze vraag ook gesteld wordt zelfs als\n"
"u niet ervoor gekozen hebt om de configuratie te testen. Vanzelfsprekend\n"
"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: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"
@@ -3321,14 +3424,13 @@ msgid ""
"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 "
-"drukken\n"
-"tijdens het opstarten en \"rescue\" in te typen bij de aanwijzing. Maar in "
+"erbij komen door op te starten van de CD-ROM, de \"F1\"-toets in te drukken\n"
+"bij het opstartscherm en \"rescue\" in te typen bij de aanwijzing. Maar in "
"het\n"
"geval dat uw computer niet kan opstarten van de CD-ROM, moet u terugkomen\n"
"naar deze stap voor hulp in tenminste twee situaties:\n"
"\n"
-" * wanneer de opstart-lader geĂŻnstalleerd wordt, zal DrakX de boot sector "
+" * wanneer de opstartlader geĂŻnstalleerd wordt, zal DrakX de boot sector "
"(MBR)\n"
"van uw eerste harde schijf overschrijven (tenzij u een andere "
"opstartbeheerder\n"
@@ -3345,14 +3447,12 @@ msgstr ""
"stroomonderbreking, een ongelukkige typfout, een vergissing in een\n"
"wachtwoord, of wat voor reden dan ook.\n"
"\n"
-"Wanneer u op deze stap klikt, wordt u gevraagd een diskette te plaatsen in\n"
-"het diskettestation. De diskette moet leeg zijn of geen gegevens bevatten "
-"die\n"
+"Indien u \"Ja\" zegt, wordt u gevraagd een diskette te plaatsen in het\n"
+"diskettestation. De diskette moet leeg zijn of geen gegevens bevatten die\n"
"u nog nodig heeft. Het is niet nodig om hem te formatteren omdat DrakX de\n"
"gehele diskette zal herschrijven."
#: ../../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"
@@ -3442,8 +3542,8 @@ msgstr ""
"DiskDrake,\n"
"het partitioneringsprogramma van Mandrake Linux, dat u in staat stelt\n"
"om uw partities precies af te stellen. Zie het hoofdstuk over DiskDrake\n"
-"in de handleiding. Voor de installatie-interace kunt u de hulpen gebruiken\n"
-"die hier beschreven zijn door op de \"Hulp\"-knop van het dialoogvenster\n"
+"in de handleiding. Voor de installatie-interace kunt u de wizards gebruiken\n"
+"die hier beschreven zijn door op de \"Wizard\"-knop van het dialoogvenster\n"
"te klikken.\n"
"\n"
"Indien er reeds partities gedefinieerd zijn, hetzij van een vorige "
@@ -3452,29 +3552,36 @@ msgstr ""
"eenvoudigweg selecteren om uw Linux-systeem op te installeren.\n"
"\n"
"Indien er geen partities gedefinieerd zijn, zult u ze moeten aanmaken met\n"
-"de hulp. Afhankelijk van de configuratie van uw harde schijf, zijn er\n"
+"de wizard. Afhankelijk van de configuratie van uw harde schijf, zijn er\n"
"verscheidene opties beschikbaar:\n"
"\n"
-" * \"Gebruik vrije ruimte\": deze optie zal leiden tot het automatisch\n"
+" * \"Vrije ruimte gebruiken\": deze optie zal leiden tot het automatisch\n"
"partitioneren van uw lege schijf/schijven. Er worden u verder geen vragen\n"
"gesteld.\n"
"\n"
-" * \"Gebruik bestaande partitie\": de hulp heeft ĂŠĂŠn of meer bestaande\n"
+" * \"Bestaande partitie gebruiken\": de wizard heeft ĂŠĂŠn of meer bestaande\n"
"Linux-partities op uw harde schijf gevonden. Indien u deze wilt gebruiken,\n"
-"kiest u deze optie.\n"
+"kiest u deze optie. Vervolgens zal u gevraagd worden de koppelpunten te\n"
+"kiezen die met elk van de partities geassocieerd zijn. De bestaande\n"
+"koppelpunten zijn standaard al geselecteerd en meestal is het het beste\n"
+"als u deze behoudt.\n"
"\n"
-" * \"Gebruik vrije ruime op de Windows-partitie\": indien Microsoft Windows\n"
+" * \"Vrije ruime op de Windows-partitie gebruiken\": indien Microsoft "
+"Windows\n"
"op uw harde schijf is geĂŻnstalleerd en alle beschikbare ruimte in beslag "
"neemt,\n"
"dient u vrije ruimte te creĂŤren voor Linux-gegevens. Om dat te doen, kunt u "
"uw\n"
-"Microsoft Windows-partitie en -gegevens wissen (zie \"Wis gehele schijf\"\n"
-"of \"Expert-modus\"-oplossingen) om uw Microsoft Windows-partitie te\n"
+"Microsoft Windows-partitie en -gegevens wissen (zie \"Gehele schijf wissen"
+"\"\n"
+"of \"Expert-modus\"-oplossingen) of uw Microsoft Windows-partitie\n"
"verkleinen. Het aanpassen van de grootte kan bewerkstelligd worden zonder\n"
-"verlies van enige gegevens. Deze oplossing is aanbevolen indien u zowel\n"
+"verlies van enige gegevens, vooropgesteld dat u eerst de Windows-partitie\n"
+"gedefragmenteerd heeft. Een reservekopie maken van uw gegevens kan\n"
+"ook geen kwaad. Deze oplossing is aanbevolen indien u zowel\n"
"Mandrake Linux en Microsoft Windows op dezelfde computer wilt gebruiken.\n"
"\n"
-" Laat het goed tot u doordringen, voordat u deze optie kiest, dat uw\n"
+" Laat het goed tot u doordringen, voordat u deze optie kiest, dat uw\n"
"Microsoft Windows partitie na afloop van deze procedure minder groot\n"
"zal zijn dan hij nu is. U zult minder vrije ruimte hebben onder\n"
"Microsoft Windows om uw gegevens op te slaan of om nieuwe software te\n"
@@ -3488,7 +3595,7 @@ msgstr ""
" !! Als u deze optie kiest, zullen alle gegevens op uw schijf verloren "
"gaan. !!\n"
"\n"
-" * \"Verwijder Windows\": dit wist simpelweg alles op de schijf en begint "
+" * \"Windows verwijderen\": dit wist simpelweg alles op de schijf en begint "
"van\n"
"voren af aan met partitioneren. Alle gegevens op uw schijf zullen verloren\n"
"gaan.\n"
@@ -3502,7 +3609,10 @@ msgstr ""
"keuze.\n"
"U kunt erg gemakkelijk al uw gegevens kwijtraken. Kiest u derhalve niet "
"hiervoor\n"
-"tenzij u weet wat u doet."
+"tenzij u weet wat u doet. Om te leren hoe u het DiskDrake-hulpprogramma "
+"kunt\n"
+"gebruiken zij u verwezen naar het hoofdstuk ``Uw partities beheren'' in de\n"
+"handleiding."
#: ../../help.pm_.c:341
msgid ""
@@ -3537,20 +3647,21 @@ msgid ""
"\"mformat a:\")"
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"
+"is klaar voor gebruik. U hoeft alleen maar op \"OK\" te klikken om uw \n"
+"computer opnieuw te starten. U kunt GNU/Linux of Windows opstarten,\n"
+"welke u prefereert (indien u een meervoudig opstartsysteem gebruikt), \n"
+"zodra de computer opnieuw is gestart.\n"
"\n"
-"De \"Geavanceerd\"-knop (alleen in Expert-modus) toont twee knoppen meer\n"
-"voor:\n"
+"De \"Geavanceerd\"-knop (alleen in Expert-modus) toont twee extra \n"
+"knoppen 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"
+"creĂŤren welke de gehele installatie automatisch zal uitvoeren zonder een\n"
+"toezichthouder, 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"
+" Merk op dat er twee verschillende opties zijn na het aanklikken\n"
+" van deze knop:\n"
"\n"
" * \"Afspelen\". Dit is een gedeeltelijk geautomatiseerde installatie, "
"omdat\n"
@@ -3559,7 +3670,7 @@ msgstr ""
" * \"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"
+" 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"
@@ -3641,7 +3752,6 @@ msgstr ""
"Even geduld alstublieft."
#: ../../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"
@@ -3663,7 +3773,7 @@ msgstr ""
"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"
+"Wanneer u 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"
@@ -3685,7 +3795,6 @@ msgstr ""
"verder te gaan met de installatie, klikt u op de \"Accepteren\"-knop."
#: ../../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"
@@ -3696,18 +3805,18 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
-"Op dit punt is het tijd om het beveiligingsniveau te kiezen voor deze\n"
-"computer. Als een vuistregel is aan te houden dat hoe meer blootgesteld\n"
+"Op dit punt is het tijd om het gewenste beveiligingsniveau te kiezen voor\n"
+"deze computer. Als een vuistregel is aan te houden dat hoe meer "
+"blootgesteld\n"
"de computer is, en hoe meer cruciale gegevens erop opgeslagen zijn,\n"
"hoe hoger het beveiligingsniveau moet zijn. Echter, een hoger\n"
"beveiligingsniveau gaat meestal ten koste van gebruiksgemak. U zij\n"
-"verwezen naar het MSEC-hoofdstuk van de \"Reference Manual\" voor\n"
+"verwezen naar het MSEC-hoofdstuk van de \"Referentiehandleiding\" voor\n"
"meer informatie over de betekenis van deze niveaus.\n"
"\n"
"In het geval dat u niet weet wat te kiezen, behoudt u de standaard optie."
#: ../../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"
@@ -3779,7 +3888,7 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"Op dit punt moet u kiezen welke partitie(s) gebruikt zullen worden voor\n"
+"Op dit punt dient u te kiezen welke partitie(s) gebruikt zullen worden voor\n"
"de installatie van uw Mandrake Linux systeem. Indien er reeds partities\n"
"gedefinieerd zijn, van een vorige GNU/Linux installatie of door een\n"
"ander partitioneringsprogramma, kunt u bestaande partities gebruiken.\n"
@@ -3799,43 +3908,43 @@ msgstr ""
"geselecteerde\n"
"harde schijf.\n"
"\n"
-" * \"Automatisch toewijzen\": deze optie creĂŤert automatisch Ext2- en swap-\n"
+" * \"Automatisch toewijzen\": deze optie creĂŤert automatisch ext3- en swap-\n"
"partities in de vrije ruimte op uw harde schijf.\n"
"\n"
" * \"Meer\": geeft toegang tot extra opties:\n"
"\n"
-" * \"Partitietabel opslaan\": slaat de partitietabel op op een diskette. "
+" * \"Partitietabel opslaan\": slaat de partitietabel op op een diskette. "
"Nuttig om\n"
"later zonodig de partitietabel te herstellen. Het is sterk aanbevolen deze "
"stap uit\n"
"te voeren.\n"
-" * \"Partitietabl herstellen\": deze optie stelt u in staat om een eerder "
+"\n"
+" * \"Partitietabel herstellen\": deze optie stelt u in staat om een eerder "
"opgeslagen\n"
"partitietabel van diskette te herstellen.\n"
"\n"
-" * \"Partitietabel redden\": indien uw partitietabel is beschadigd, kunt "
-"u deze\n"
+" * \"Partitietabel redden\": indien uw partitietabel is beschadigd, kunt u "
+"deze\n"
"trachten te herstellen met deze optie. Weest u voorzichtig en onthoud dat "
"dit\n"
"kan mislukken.\n"
"\n"
-" * \"Partitietabel herladen\": gooit alle veranderingen weg en laadt de\n"
-"partitietabel waarmee u begon\n"
+" * \"Partitietabel herladen\": gooit alle veranderingen weg en laadt de\n"
+"partitietabel waarmee u begon;\n"
"\n"
-" * \"Auto-koppeling verwisselbare media\": het deselecteren van deze "
-"optie\n"
+" * \"Auto-koppeling verwisselbare media\": het deselecteren van deze optie\n"
"dwingt gebruikers om handmatig verwisselbare media zoals diskettes en\n"
"CD-ROMs te koppelen en te ontkoppelen.\n"
"\n"
-" * \"Hulp\": gebruik deze optie indien u een hulp wenst te gebruiken om\n"
+" * \"Wizard\": gebruik deze optie indien u een wizard wenst te gebruiken om\n"
"uw harde schijf mee te partitioneren. Dit is aanbevolen als u geen brede "
"kennis\n"
"heeft over partitioneren.\n"
"\n"
" * \"Ongedaan maken\": gebruik deze optie om uw wijzigingen te annuleren.\n"
"\n"
-" * \"Schakel naar normale / expert modus\": laat extra handelingen toe op\n"
-"partities (Type, opties, formatteren) en geeft meer informatie.\n"
+" * \"Naar normale / expert modus schakelen\": laat extra handelingen toe op\n"
+"partities (type, opties, formatteren) en geeft meer informatie.\n"
"\n"
" * \"Klaar\": wanneer u klaar bent met het partitioneren van uw harde "
"schijf, zal dit\n"
@@ -3857,7 +3966,7 @@ msgstr ""
"\n"
"Voor meer informatie over de verschillende types bestandssystemen die er "
"zijn,\n"
-"leest u het hoofdstuk 'ext2fs' van de ``Referentie Handleiding''.\n"
+"leest u het hoofdstuk 'ext2fs' van de ``Referentiehandleiding''.\n"
"\n"
"In het geval dat u op een PPC computer aan het installeren bent, zult u een "
"kleine\n"
@@ -3936,7 +4045,6 @@ 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: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"
@@ -3979,25 +4087,25 @@ msgstr ""
"verder\n"
"de keus tussen het uitvoeren van een nieuwe installatie en het opwaarderen\n"
"van een reeds aanwezig Mandrake Linux systeem:\n"
-" * \"Installeren\" Wist het vorige systeem volledig. Echter, afhankelijk van "
-"hoe\n"
-"uw computer momenteel is ingesteld, is het mogelijk om oude (Linux- of "
-"andere)\n"
-"partities onveranderd te behouden.\n"
"\n"
-" * \"Opwaarderen\" De installatieklasse laat u eenvoudigweg de pakketten\n"
+" * \"Installeren\" wist het vorige systeem volledig. Echter, afhankelijk "
+"van\n"
+"wat er momenteel op uw computer geĂŻnstalleerd is, is het mogelijk om\n"
+"oude (Linux- of andere) partities onveranderd te behouden.\n"
+"\n"
+" * \"Opwaarderen\" deze installatieklasse laat u eenvoudigweg de pakketten\n"
"vernieuwen die nu op uw Mandrake Linux-systeem geĂŻnstalleerd zijn. Het\n"
"behoudt de huidige partities van uw harde schijven zowel als de\n"
"gebruikersconfiguraties. Alle andere configuratiestappen van een gewone\n"
"installatie zullen beschikbaar blijven.\n"
"\n"
-" * \"Alleen pakketten opwaarderen\" Deze gloednieuwe installatieklasse\n"
+" * \"Alleen pakketten opwaarderen\" Deze nieuwe installatieklasse\n"
"laat u een bestaand Mandrake Linux-systeem opwaarderen met behoud\n"
"van de gehele systeemconfiguratie. Het is mogelijk om nieuwe pakketten\n"
"toe te voegen aan de huidige installatie.\n"
"\n"
"Opwaarderen zou goed moeten gaan voor Mandrake Linux-systemen\n"
-"vanaf versie 8.1.\n"
+"vanaf versie \"8.1\".\n"
"\n"
"Kies, afhankelijk van uw kennis van GNU/Linux, ĂŠĂŠn van de volgende\n"
"mogelijkheden:\n"
@@ -4007,15 +4115,13 @@ msgstr ""
"geĂŻnstalleerd. De installatie zal erg gemakkelijk verlopen en er zullen u\n"
"slechts enkele vragen gesteld worden.\n"
"\n"
-" * Expert: als u een goede kennis bezit van GNU/Linux kunt u deze\n"
-"installatieklasse kiezen. De expert-installatie staat u toe een in hoge "
-"mate\n"
-"aangepaste installatie uit te voeren. Het beantwoorden van sommige vragen\n"
-"kan moeilijk zijn als u geen goede kennis van GNU/Linux bezit, dus kies dit\n"
-"niet tenzij u weet wat u doet."
+" * Expert: als u een goede kennis bezit van GNU/Linux dan wilt u wellicht\n"
+"een in hoge mate aangepaste installatie uitvoeren. Sommige van de \n"
+"beslissingen die u zult moeten maken kunnen moeilijk zijn als u geen\n"
+"goede kennis heeft van GNU/Linux, dus het is niet aan te raden dat diegenen\n"
+"zonder een behoorlijke hoeveelheid ervaring deze installatieklasse kiezen."
#: ../../help.pm_.c:578
-#, fuzzy
msgid ""
"Normally, DrakX selects the right keyboard for you (depending on the\n"
"language you have chosen). However, you might not have a keyboard that\n"
@@ -4033,22 +4139,22 @@ msgid ""
"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"
-"te zien krijgen. Het is echter mogelijk dat u een toetsenbord bezit dat "
-"niet\n"
-"exact correspondeert met uw taal: bijvoorbeeld, als u een Engels sprekende\n"
-"Zwitser bent wilt u nog steeds dat uw toetsenbordinstelling op Zwitsers "
-"staat.\n"
-"Of indien u Engels spreekt maar zich in Quebec bevindt, verkeert u "
-"misschien\n"
-"in dezelfde situatie. In beide gevallen zult u terug moeten gaan naar deze\n"
-"installatiestap en het juiste toetsenbord uit de lijst kiezen.\n"
+"(afhankelijk van de taal die u heeft gekozen). Het is echter mogelijk dat\n"
+"u een toetsenbord bezit dat niet exact correspondeert met uw taal: \n"
+"bijvoorbeeld, als u een Engels sprekende Zwitser bent wilt u nog steeds\n"
+"dat uw toetsenbordinstelling op Zwitsers staat. Of indien u Engels spreekt\n"
+"maar zich in Quebec bevindt, verkeert u misschien in dezelfde situatie.\n"
+"In beide gevallen zult u terug moeten gaan naar deze installatiestap\n"
+"en het juiste toetsenbord uit de lijst kiezen.\n"
"\n"
"Klik op de \"Meer\"-knop om de complete lijst van ondersteunde\n"
-"toetsenbordindelingen te zien."
+"toetsenbordindelingen te zien.\n"
+"\n"
+"Als u een toetsenbordindeling kiest welke gebaseerd is op een niet-Latijns\n"
+"alfabet, zal het volgende dialoogvenster u vragen om de toetscombinatie\n"
+"te kiezen die zal schakelen tussen de Latijn- en niet-Latijnse indelingen."
#: ../../help.pm_.c:594
-#, fuzzy
msgid ""
"The first step is to choose your preferred language.\n"
"\n"
@@ -4064,15 +4170,17 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
-"Kiest u de gewenste taal voor installatie en gebruik op uw computer.\n"
+"De eerste stap is het kiezen van de taal van uw voorkeur.\n"
+"\n"
+"Kies u alstublieft uw geprefereerde taal voor installatie en gebruik door\n"
+"het systeem.\n"
"\n"
"Door te klikken op de \"Geavanceerd\"-knop kunt u andere talen selecteren\n"
"die op uw werkstation geĂŻnstalleerd moeten worden. Het selecteren van\n"
"andere talen zal de taalspecifieke bestanden voor systeemdocumentatie\n"
-"en applicaties installeren. Als u bijvoorbeeld gastheer bent voor Spaanse\n"
+"en toepassingen installeren. Als u bijvoorbeeld gastheer bent voor Spaanse\n"
"gebruikers op uw machine, selecteert u Nederlands als eerste taal in het\n"
-"boom-overzicht en in de Geavanceerd-afdeling klikt u op de grijze ster "
-"naast\n"
+"boom-overzicht en in de Geavanceerd-afdeling klikt u op het vakje naast\n"
"\"Spaans|Spanje\".\n"
"\n"
"Merk op dat meerdere talen geĂŻnstalleerd kunnen worden. Zodra u enige\n"
@@ -4080,7 +4188,6 @@ msgstr ""
"te gaan."
#: ../../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"
@@ -4102,18 +4209,26 @@ msgid ""
"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"
-"of dit een PS/2-, seriĂŤle- of USB-muis is.\n"
+"Normaal gesproken ziet DrakX vanzelf het aantal knoppen op uw muis.\n"
+"Zoniet, dan neemt het aan dat u een tweeknops-muis heeft en\n"
+"zal deze instellen voor het nadoen van een derde knop. DrakX zoekt\n"
+"zelf uit 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"
+"Indien u een ander type muis wenst te specificeren, selecteer dan het\n"
+"juiste 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."
+"druk dan op de spatiebalk of Enter om te \"Annuleren\" en kies opnieuw.\n"
+"\n"
+"Wielmuizen worden soms niet automatisch bespeurd. U dient ze handmatig\n"
+"te selecteren uit de lijst. Zorg ervoor dat u degene kiest die "
+"correspondeert\n"
+"met het type poort waaraan de muis verbonden is. Nadat u op \"OK\" heeft\n"
+"geklikt, wordt een afbeelding van een muis weergegeven. U dient dan\n"
+"het wieltje van uw muis te bewegen om het op de juiste manier te activeren.\n"
+"Ga vervolgens na of alle knoppen en bewegingen goed werken."
#: ../../help.pm_.c:630
msgid ""
@@ -4124,7 +4239,6 @@ msgstr ""
"\"ttyS0\" genoemd onder GNU/Linux."
#: ../../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"
@@ -4163,8 +4277,9 @@ msgid ""
msgstr ""
"Dit is de meest cruciale beslissing voor de beveiliging van uw GNU/Linux\n"
"systeem: u moet het \"root\"-wachtwoord invoeren. \"root\" is de systeem-\n"
-"beheerder en is de enige die geautoriseerd is om updates uit te voeren,\n"
-"gebruikers toe te voegen, de algehele systeemconfiguratie te wijzigen,\n"
+"beheerder en is de enige die geautoriseerd is om vernieuwingen uit te \n"
+"voeren, gebruikers toe te voegen, de algehele systeemconfiguratie te "
+"wijzigen,\n"
"enzovoort. Kortom, \"root\" kan alles doen! Daarom dient u een lastig\n"
"te raden wachtwoord te kiezen - DrakX vertelt het u als het te makkelijk\n"
"is. Zoals u kunt zien kunt u ervoor kiezen geen wachtwoord in te vullen,\n"
@@ -4189,18 +4304,17 @@ msgstr ""
"worden bij de eerste keer dat u verbinding maakt.\n"
"\n"
"In expert-modus wordt u gevraagd of u verbinding gaat maken met een\n"
-"authenticatie-server zoals NIS of LDAP.\n"
+"aanmeldingsserver zoals NIS of LDAP.\n"
"\n"
-"Indien uw netwerk het LDAP (of NIS) protocol gebruikt voor authenticatie,\n"
-"selecteer dan \"LDAP\" (of NIS). In het geval dat u dit niet weet, "
-"raadpleeg\n"
+"Indien uw netwerk LDAP, NIS, of PDC Windows Domein aanmeldings-\n"
+"diensten gebruikt voor aanmelding, selecteer dan de overeenkomende\n"
+"optie als \"aanmelding\". In het geval dat u dit niet weet, raadpleeg\n"
"dan uw netwerkbeheerder.\n"
"\n"
"Indien uw computer niet verbonden is aan een beheerd netwerk, zult u\n"
-"willen kiezen voor \"Lokale bestanden\" als wijze van authenticatie."
+"willen kiezen voor \"Lokale bestanden\" als wijze van aanmelding."
#: ../../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"
@@ -4246,17 +4360,17 @@ msgstr ""
"bootsector van de schijf en handelt al naar gelang hetgeen hier\n"
"gevonden wordt:\n"
"\n"
-" * als een Windows bootsector gevonden is, zal deze vervangen\n"
-"worden door een GRUB/LILO bootsector. Dientengevolgde zult u\n"
+" * als een Windows bootsector gevonden is, zal deze vervangen\n"
+"worden door een GRUB/LILO bootsector. Dientengevolge zult u\n"
"ofwel GNU/Linux kunnen opstarten ofwel een ander besturingssysteem;\n"
"\n"
-" * als een GRUB- of LILO bootsector gevonden is zal deze vervangen\n"
+" * als een GRUB- of LILO bootsector gevonden is zal deze vervangen\n"
"worden door een nieuwe;\n"
"\n"
"In het geval dat er onzekerheid is, zal DrakX een dialoogvenster\n"
"weergeven met diversie opties.\n"
"\n"
-" * \"Te gebruiken opstartlader\": u heeft drie keuzes:\n"
+" * \"Te gebruiken opstartlader\": u heeft drie keuzes:\n"
"\n"
" * \"GRUB\": indien u GRUB prefereert (tekstmenu).\n"
"\n"
@@ -4280,24 +4394,13 @@ msgstr ""
"\"\n"
"te kiezen) u ervoor moet zorgen dat u een manier heeft om uw Mandrake\n"
"Linux-systeem op te starten! Zorg er tevens voor dat u weet wat u doet\n"
-"wanneer u ĂŠĂŠn van de opties wijzigt. !!\n"
+"voordat u ĂŠĂŠn van de opties wijzigt. !!\n"
"\n"
"Onder de \"Geavanceerd\"-knop in dit dialoogvenster zitten veel\n"
"geavanceerde opties, waar alleen een gevorderde gebruiker iets\n"
-"aan heeft.\n"
-"\n"
-"Nadat u de algemene opstartlader-parameters heeft geconfigureerd,\n"
-"wordt u de lijst van opstartopties getoond die beschikbaar zullen zijn\n"
-"bij het opstarten.\n"
-"\n"
-"Als er een ander besturingssysteem op uw computer geĂŻnstalleerd is, zal\n"
-"het automatisch aan het opstartmenu worden toegevoegd. U kunt hier de\n"
-"bestaande opties fijn afregelen. Selecteer een item en klik op \"Wijzigen\"\n"
-"om hem te wijzigen of te verwijderen; \"Toevoegen\" creĂŤert een nieuw\n"
-"item en \"Klaar\" gaat door naar de volgende installatiestap."
+"aan heeft."
#: ../../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"
@@ -4312,16 +4415,20 @@ msgid ""
"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 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"
+"Nadat u de algemene opstartlader-parameters heeft geconfigureerd, zal de\n"
+"lijst van opstartopties die beschikbaar zijn bij het opstarten worden "
+"weergegeven.\n"
+"\n"
+"Als er een ander besturingssysteem op uw computer is geĂŻnstalleerd, zal\n"
+"dit automatisch worden toegevoegd aan het opstartmenu. Hier kunt u de\n"
+"bestaande opties fijn afregelen. Selecteer een item en klik op \"Wijzigen\" "
+"om\n"
+"het te wijzigen of te verwijderen; \"Toevoegen\" creĂŤert een nieuw item; en\n"
+"\"Klaar\" gaat door naar de volgende installatiestap.\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"
+"In dat geval kunt u de overeenkomstige items verwijderen. Maar dan zult\n"
"u echter wel een opstartdiskette nodig hebben om ze nog te kunnen opstarten!"
#: ../../help.pm_.c:724
@@ -4402,7 +4509,6 @@ msgstr ""
"in netwerkverband."
#: ../../help.pm_.c:759
-#, fuzzy
msgid ""
"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"
@@ -4430,20 +4536,20 @@ msgid ""
"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX is nu bezig met het bespeuren van IDE-apparaten die in uw\n"
+"DrakX is nu bezig met het zoeken naar IDE-apparaten die in uw\n"
"computer aanwezig zijn. Het zal tevens zoeken naar ĂŠĂŠn of meer PCI\n"
"SCSI-kaart(en) in uw systeem. Als een SCSI-kaart gevonden is, zal\n"
-"DrakX automatisch he geschikte stuurprogramma installeren.\n"
+"DrakX automatisch het geschikte stuurprogramma installeren.\n"
"\n"
"Omdat hardware-bespeuring niet altijd een stuk hardware bespeurt, zal\n"
"DrakX u vragen om te bevestigen dat er een PCI SCSI-kaart aanwezig is.\n"
"Klik op \"Ja\" indien u weet dat er een SCSI-kaart in uw machine is\n"
"geĂŻnstalleerd. U krijgt een lijst van SCSI-kaarten te zien waaruit u kunt\n"
"kiezen. Klik op \"Nee\" indien u geen SCSI-hardware heeft. In het geval\n"
-"dat u niet zeker bent dan kunt u de lijst van bespeurde hardware in uw\n"
-"computer nagaan door \"Bekijk hardware-info\" te selecteren en op \"OK\"\n"
+"dat u niet zeker bent dan kunt u de lijst van gevonden hardware in uw\n"
+"computer nagaan door \"Hardware-info bekijken\" te selecteren en op \"OK\"\n"
"te klikken. Bekijk de lijst van hardware en klik vervolgens op de \"OK\"-\n"
-"knop om terug te gaan naar de SCSI-interface vraag.\n"
+"knop om terug te gaan naar de SCSI-interface-vraag.\n"
"\n"
"Indien u uw adapter handmatig moet aangeven zal DrakX vragen of u\n"
"er opties voor wilt specificeren. U kunt het beste DrakX toestaan om\n"
@@ -4513,7 +4619,7 @@ msgstr ""
"beeldbestand.\n"
"\n"
"Voor andere besturingssystemen bestaan de parameters uit een\n"
-"naam (label) en een hoofd partitie (root partitie).\n"
+"naam (label) en een \"root\"-partitie.\n"
"\n"
"Voor Linux zijn er nog enkele extra opties:\n"
"\n"
@@ -4523,7 +4629,7 @@ msgstr ""
" * 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"
+" * Root: het \"root\"-apparaat of \"/\" 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"
@@ -4541,14 +4647,14 @@ msgstr ""
" 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"
+" * Initrd-size: de standaard geheugenschijf-grootte is 4.096 bytes. 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"
+" * Read-write: normaal gesproken wordt de \"root\"-partitie tijdens\n"
+" opstarten alleen-lezen geladen om een controle te\n"
" kunnen uitvoeren alvorens \"live\" te gaan.\n"
" Hier kunt U deze optie met de hand instellen;\n"
"\n"
@@ -4557,11 +4663,13 @@ msgstr ""
" zogenaamde \"novideo\" modus met standaard\n"
" framebuffer ondersteuning;\n"
"\n"
-" * Default: selecteerd deze selectie als de standaard selectie,\n"
+" * Default: selecteert dit item als de standaard Linuxselectie,\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 drloukt op de yaboot-prompt."
+" toets drukt op de yaboot-prompt om de "
+"opstartmogelijkheden\n"
+" te bekijken."
#: ../../help.pm_.c:833
msgid ""
@@ -4599,7 +4707,7 @@ 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"
+"besturingssystemen automatisch bespeurd 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"
@@ -4639,7 +4747,6 @@ 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"
@@ -4693,20 +4800,24 @@ msgstr ""
"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, "
+"printerconfiguratie-wizard\n"
+"openen. Raadpleeg het corresponderende hoofdstuk van de "
+"\"Gebruikershandleiding\"\n"
+"voor meer informatie over hoe u een nieuwe printer instelt. De hier "
+"getoonde\n"
+"interface lijkt op degene die tijdens de installatie gebruikt wordt;\n"
+"\n"
+" * \"Geluidskaart\": indien een geluidskaart gevonden 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 "
+" * \"TV-kaart\": indien een TV-kaart gevonden 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 "
+"* \"ISDN-kaart\": indien een ISDN-kaart gevonden 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."
@@ -4758,7 +4869,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "U dient tevens %s te formatteren"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4782,7 +4893,7 @@ msgstr ""
"\n"
"Weet u zeker dat u deze servers wilt installeren?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4796,21 +4907,21 @@ msgstr ""
"\n"
"Weet u zeker dat u deze pakketten wilt verwijderen?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Kan niet uitzenden zonder NIS-domein"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Deze diskette is niet FAT-geformatteerd"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4818,12 +4929,12 @@ msgstr ""
"Om deze opgeslagen pakketselectie te gebruiken, start u de installatie \n"
"met ''linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../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
+#: ../../install_any.pm_.c:1030
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"
@@ -4987,7 +5098,7 @@ msgstr "Volledige harde schijf wissen"
#: ../../install_interactive.pm_.c:179
msgid "Remove Windows(TM)"
-msgstr "Verwijder Windows(TM)"
+msgstr "Windows(TM) verwijderen"
#: ../../install_interactive.pm_.c:182
msgid "You have more than one hard drive, which one do you install linux on?"
@@ -4997,8 +5108,8 @@ msgstr "U heeft meer dan ĂŠĂŠn harde schijf, op welke wilt u Linux installeren?"
#, 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"
+"ALLE bestaande partities en de gegevens die ze bevatten, zullen verloren "
+"gaan op schijf %s"
#: ../../install_interactive.pm_.c:193
msgid "Custom disk partitioning"
@@ -5014,7 +5125,7 @@ msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"U kan nu uw schijf %s partitioneren.\n"
+"U kunt nu uw schijf %s partitioneren.\n"
"Vergeet niet op te slaan met `w' wanneer u klaar bent."
#: ../../install_interactive.pm_.c:229
@@ -5063,16 +5174,16 @@ msgid ""
"\"\n"
msgstr ""
"Sommige belangrijke pakketen werden niet juist\n"
-"geĂŻnstalleerd. Of uw cdrom drive of uw cdrom is defect.\n"
+"geĂŻnstalleerd. Of uw CD-ROM-speler of uw CD-ROM is defect.\n"
"Controleer de cdrom op een geĂŻnstalleerde computer met\n"
"\"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
#: ../../install_steps.pm_.c:452
#, c-format
msgid "Welcome to %s"
-msgstr "Welkom bij %s!"
+msgstr "Welkom bij %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Geen diskettestation beschikbaar"
@@ -5091,22 +5202,22 @@ msgid ""
msgstr ""
"Uw systeem heeft weinig bronnen beschikbaar. U zou problemen kunnen\n"
"ondervinden bij het installeren van Mandrake Linux. Als dit gebeurt,\n"
-"kunt u een text installatie proberen. Om dit te doen, drukt u op `F1'\n"
+"kunt u een tekstinstallatie proberen. Om dit te doen, drukt u op `F1'\n"
"terwijl de CDROM opstart, en dan voert u `text' in."
#: ../../install_steps_gtk.pm_.c:161 ../../install_steps_interactive.pm_.c:231
msgid "Install Class"
-msgstr "Installatie-klasse"
+msgstr "Installatieklasse"
#: ../../install_steps_gtk.pm_.c:164
msgid "Please choose one of the following classes of installation:"
-msgstr "Gelieve een van de volgende installatieklasses te kiezen:"
+msgstr "Kies alstublieft ĂŠĂŠn van de volgende installatieklasses:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
-msgstr "Pakket-groep Selectie"
+msgstr "Pakketgroep-selectie"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Individuele pakketselectie"
@@ -5142,7 +5253,9 @@ msgstr "Belangrijkheid: %s\n"
#: ../../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"
+msgstr ""
+"U kunt dit pakket niet selecteren omdat er te weinig ruimte over is om het "
+"te installeren"
#: ../../install_steps_gtk.pm_.c:366
msgid "The following packages are going to be installed"
@@ -5154,7 +5267,7 @@ msgstr "De volgende pakketten zullen gedeĂŻnstalleerd worden"
#: ../../install_steps_gtk.pm_.c:379
msgid "You can't select/unselect this package"
-msgstr "U kan dit pakket niet (de)selecteren"
+msgstr "U kunt dit pakket niet (de)selecteren"
#: ../../install_steps_gtk.pm_.c:391
msgid "This is a mandatory package, it can't be unselected"
@@ -5162,7 +5275,7 @@ msgstr "Dit is een verplicht pakket, het kan niet gedeselecteerd worden"
#: ../../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."
+msgstr "U kunt dit pakket niet deselecteren. Het is al geĂŽnstalleerd."
#: ../../install_steps_gtk.pm_.c:396
msgid ""
@@ -5170,7 +5283,7 @@ msgid ""
"Are you sure you want to deselect it?"
msgstr ""
"Dit pakket moet opgewaardeerd worden.\n"
-"Weet u zeker dat u het wenst te deselecteren?"
+"Weet u zeker dat u het wilt deselecteren?"
#: ../../install_steps_gtk.pm_.c:399
msgid "You can't unselect this package. It must be upgraded"
@@ -5178,11 +5291,11 @@ msgstr "U kunt dit pakket niet deselecteren. Het moet opgewaardeerd worden."
#: ../../install_steps_gtk.pm_.c:404
msgid "Show automatically selected packages"
-msgstr "Toon automatisch geselecteerde pakketten"
+msgstr "Automatisch geselecteerde pakketten tonen"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Installeren"
@@ -5202,7 +5315,7 @@ msgstr "Minimale installatie"
msgid "Choose the packages you want to install"
msgstr "Kies de pakketten die u wenst te installeren"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Bezig met installeren"
@@ -5229,17 +5342,17 @@ msgid "Installing package %s"
msgstr "Bezig met installeren van pakket %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Accepteren"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Weigeren"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5250,25 +5363,24 @@ msgid ""
msgstr ""
"Verwissel uw CD-ROM!\n"
"\n"
-"\n"
-"Gelieve de CD-ROM met als naam \"%s\" in uw station te plaatsen en Ok te "
+"Gelieve de CD-ROM met de naam \"%s\" in uw station te plaatsen en Ok te "
"kiezen wanneer u klaar bent.\n"
"Als u deze CD niet heeft, klik dan Annuleren om verdere installatie vanaf "
"deze CD te vermijden."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Toch verdergaan?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
-msgstr "Er was een fout bij het sorteren van de pakketten:"
+msgstr "Er is een fout opgetreden bij het sorteren van de pakketten:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
-msgstr "Er was een fout bij het installeren van de pakketten:"
+msgstr "Er is een fout opgetreden bij het installeren van de pakketten:"
#: ../../install_steps_interactive.pm_.c:10
msgid ""
@@ -5395,7 +5507,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5604,7 +5716,7 @@ 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:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Toetsenbord"
@@ -5815,11 +5927,11 @@ msgstr "Plaats een diskette met de pakket-selectie in diskettestation"
msgid "Selected size is larger than available space"
msgstr "De geselecteerde grootte is meer dan de beschikbare ruimte"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Type installatie"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5827,19 +5939,19 @@ msgstr ""
"U heeft geen enkele pakketgroep geselecteerd\n"
"Gelieve de minimale installatie die u wenst te kiezen."
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Met X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Met basis-documentatie (aanbevolen!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Werkelijk minimale installatie (in het bijzonder geen urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5849,16 +5961,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-Rom genaamd \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Bezig met voorbereiden van installatie"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5867,21 +5979,21 @@ msgstr ""
"Bezig met installeren van pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Installatie na configuratie"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5954,7 +6066,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5974,159 +6086,159 @@ msgstr ""
"\n"
"Wenst u de vernieuwde pakketten te installeren?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Bezig te verbinden met de Mandrake Linux-website om de lijst met beschikbare "
"mirrors op te halen..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
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:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Bezig met verbinden met de mirror om de lijst met beschikbare pakketten op "
"te halen..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Wat is uw tijdzone?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardware-klok ingesteld op GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatische tijdssynchronisatie (met gebruik van NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP-server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Netwerk CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Geen printer"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Heeft u een ISA geluidskaart?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Geen geluidskaart bespeurd. Probeer \"harddrake\" na de installatie"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Overzicht"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Muis"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Tijdzone"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Printer"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Interne ISDN kaart"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Geluidskaart"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-kaart"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows Domein"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Bestanden op deze computer"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Root-wachtwoord instellen"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Geen wachtwoord"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
-msgstr "Authenticatie"
+msgstr "Aanmelding"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
-msgstr "Authenticatie LDAP"
+msgstr "LDAP-aanmelding"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "LDAP-server"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
-msgstr "Authenticatie NIS"
+msgstr "NIS-aanmelding"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "NIS-server"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -6154,19 +6266,19 @@ msgstr ""
"beheerdersgebruikersnaam en -wachtwoord invult.\n"
"De opdracht 'wbinfo -t' gaat na of uw aanmeldingsgeheimen kloppen."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Aanmelding Windows-domein"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Gebruikersnaam van domeinbeheerder"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Wachtwoord domeinbeheerder"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6193,19 +6305,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:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Eerste diskettestation"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Tweede diskettestation"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Overslaan"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6230,7 +6342,7 @@ msgstr ""
"fouten. Wil u nu een opstartdiskette aanmaken voor uw systeem?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6245,28 +6357,28 @@ msgstr ""
"zal hoogstwaarschijnlijk mislukken omdat XFS een zeer groot\n"
"stuurprogramma benodigt)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Sorry, geen diskettestation beschikbaar"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Plaats een diskette in station %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Bezig met het aanmaken van de opstart-diskette"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Bezig met klaarmaken van opstartlader"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6279,11 +6391,11 @@ msgstr ""
"De installatie zal doorgaan, maar u zult BootX nodig \n"
"hebben om uw machine op te starten"
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Wenst u aboot te gebruiken?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6291,17 +6403,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Bezig met opstart-lader installeren"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6320,17 +6432,17 @@ msgstr ""
"Bij de volgende keer opstarten zou u dan de opstartlader-prompt \n"
"moeten zien."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Bezig met aanmaken van auto-installatiediskette"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6338,9 +6450,9 @@ msgid ""
msgstr ""
"Sommige stappen zijn nog niet voltooid.\n"
"\n"
-"Weet u zeker dat u op dit moment wilt beĂŤindigen?"
+"Weet u zeker dat u op dit moment wilt afsluiten?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6371,15 +6483,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/nl/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Maak auto-installatiediskette aan"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6393,15 +6505,15 @@ msgstr ""
"\n"
"Wellicht geeft u de voorkeur aan het herhalen van de installatie.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Geautomatiseerd"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Herhalen"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Pakket-selectie opslaan"
@@ -6438,14 +6550,14 @@ msgstr "Geavanceerd"
msgid "Basic"
msgstr "Basis"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Volgende"
@@ -6891,7 +7003,7 @@ msgstr "Rechter \"Windows\"-toets"
msgid "Circular mounts %s\n"
msgstr "Circulaire mounts: %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Verwijder eerst de logische delen\n"
@@ -7028,17 +7140,17 @@ msgstr "geen"
msgid "No mouse"
msgstr "Geen muis"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Test uw muis a.u.b."
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Om de muis te activeren,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
-msgstr "BEWEEG UW WIELTJE"
+msgstr "BEWEEG UW WIELTJE!"
#: ../../my_gtk.pm_.c:64
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
@@ -7072,11 +7184,11 @@ msgstr "Boom inklappen"
msgid "Toggle between flat and group sorted"
msgstr "Schakelen tussen gewoon en per-groep-gesorteerd"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Verbinden met het Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -7086,25 +7198,21 @@ msgstr ""
"pppoe. Sommige verbindingen gebruiken pptp, enkele gebruiken\n"
"dhcp. Als u het niet weet, kiest u 'gebruik pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
-msgstr "gebruik DHCP"
+msgstr "DHCP gebruiken"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
-msgstr "gebruik pppoe"
+msgstr "pppoe gebruiken"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
-msgstr "gebruik pptp"
+msgstr "pptp gebruiken"
#: ../../network/drakfirewall.pm_.c:12
msgid "Web Server"
@@ -7127,7 +7235,6 @@ msgid "No network card"
msgstr "Geen netwerkkaart"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -7135,12 +7242,12 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Configuratie van tinyfirewall\n"
+"Configuratie van drakfirewall\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."
+"Dit programma configureert een persoonlijke firewall voor deze \n"
+"Mandrake Linux machine. Voor een krachtige, specifieke\n"
+"firewall-oplossing, zie de gespecialiseerde MandrakeSecurity \n"
+"Firewall-distributie."
#: ../../network/drakfirewall.pm_.c:147
msgid "Which services would you like to allow the Internet to connect to?"
@@ -7205,7 +7312,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:362
msgid "Configuring network"
msgstr "Bezig met configureren van netwerk"
@@ -7220,15 +7327,15 @@ 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:367
msgid "Host name"
msgstr "Computer naam:"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Netwerk-configuratie hulp"
@@ -7276,8 +7383,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Oude configuratie (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "ISDN Configuratie"
@@ -7313,23 +7420,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Welk protocol wenst u te gebruiken?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr "\"%s\"-interface gevonden. Wilt u deze gebruiken? "
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Welk type kaart heeft u?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Ik weet het niet"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7343,19 +7455,19 @@ msgstr ""
"\n"
"Als u een PCMCIA kaart bezit, moet u het irq en io van uw kaart weten.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Annuleren"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Verder"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Welke is uw ISDN kaart?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7363,7 +7475,7 @@ msgstr ""
"Ik heb een ISDN PCI kaart gevonden, maar ik ken het merk niet. Selecteer a.u."
"b. een PCI kaart op het volgende scherm."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Geen ISDN PCI kaart gevonden. Selecteer a.u.b. uw kaart op het volgende "
@@ -7417,7 +7529,7 @@ msgstr "Eerste DNS-server (optioneel)"
msgid "Second DNS Server (optional)"
msgstr "Tweede DNS-server (optioneel)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7425,7 +7537,7 @@ msgstr ""
"\n"
"U kunt nu de verbinding verbreken of uw connectie opnieuw instellen."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7433,11 +7545,11 @@ msgstr ""
"\n"
"U kunt uw connectie opnieuw instellen"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "U bent op dit moment aangesloten op het Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7445,32 +7557,32 @@ msgstr ""
"\n"
"U kunt verbinding maken met het Internet of uw connectie opnieuw instellen"
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "U bent op dit moment niet aangesloten op het Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Verbinden"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Verbinding verbreken"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configureer de verbinding"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Internet verbinding & configuratie"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "We gaan nu de %s -verbinding configureren."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -7489,12 +7601,12 @@ msgstr ""
"\n"
"Klik op OK om door te gaan."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Netwerk-instellingen"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7505,85 +7617,85 @@ msgstr ""
"Klik op OK om uw instellingen te behouden, of op Annuleren om uw Internet & "
"Netwerkverbinding opnieuw in te stellen.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"Welkom bij de Netwerk Instellingen Hulp\n"
+"Welkom bij de Netwerkinstellingen-wizard.\n"
"\n"
-"We staan op het punt uw internet/netwerkverbinding in te stellen.\n"
-"Als u de auto-detectie niet wilt gebruiken, deselecteer het aankruisvakje "
-"dan.\n"
+"U staat op het punt uw internet/netwerkverbinding in te stellen.\n"
+"Als u de automatische bespeuring niet wilt gebruiken, \n"
+"deselecteer het aankruisvakje dan.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Kies het profiel om in te stellen"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Gebruik auto-detectie"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
-msgstr "Bezig met het detecteren van apparaten..."
+msgstr "Bezig met het zoeken naar apparaten..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Normale modemverbinding"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "gevonden op poort %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "ISDN-verbinding"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "%s ontdekt"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "ADSL-verbinding"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "gevonden op interface %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Kabelverbinding"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "kabelverbinding gevonden"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "LAN-verbinding"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ethernet kaart(en) gevonden"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Selecteer de verbinding die u wenst in te stellen"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7593,23 +7705,23 @@ msgstr ""
"Kies degene die u wenst te gebruiken.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Internetverbinding"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Wenst u bij het opstarten uw connectie te starten?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Netwerk instellingen"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Het netwerk dient herstart te worden"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7620,7 +7732,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7630,7 +7742,7 @@ msgstr ""
"\n"
"De configuratie zal nu worden toegepast op uw systeem.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7639,7 +7751,7 @@ msgstr ""
"te herstarten om het hostnaam-veranderingprobleem\n"
"te voorkomen."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7649,7 +7761,7 @@ msgstr ""
"Test uw verbinding via net_monitor of mcc. Indien uw verbinding niet werkt, "
"kunt u proberen de configuratie opnieuw op te starten."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7662,7 +7774,7 @@ msgstr ""
"Als u de onderstaande velden aanpast, wordt het apparaat opnieuw "
"geconfigureerd"
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7672,42 +7784,42 @@ msgstr ""
"Elke ingang moet ingegeven worden als een IP adres in `dotted-decimal'-\n"
"vorm (bijvoorbeeld 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Bezig met configureren van netwerk-apparaat %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP adres"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(BootP/DHCP)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "Automatisch IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Bij opstarten starten"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7718,46 +7830,54 @@ 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:368
msgid "DNS server"
msgstr "DNS server"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Gateway (bijvoorbeeld %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Gateway apparaat"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Het DNS-serveradres moet in het formaat 1.2.3.4 staan"
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Het gateway-adres moet in het formaat 1.2.3.4 staan"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Configuratie van proxie(s)"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP-proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP-proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Netwerkkaart id onthouden (nuttig voor laptops)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy moet http://... zijn"
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy moet ftp://... zijn"
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL moet beginnen met 'ftp:' of 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
-msgstr "Firewall configuratie gedetecteerd!"
+msgstr "Firewall configuratie bespeurd!"
#: ../../network/shorewall.pm_.c:25
msgid ""
@@ -8336,9 +8456,9 @@ msgid ""
"connection types."
msgstr ""
"\n"
-"Welkom bij de Printer Instellingen Hulp\n"
+"Welkom bij de Printerinstellingen-wizard\n"
"\n"
-"Deze hulp laat u lokale- of afstand-printers installeren die vanaf deze of "
+"Deze wizard laat u lokale- of afstand-printers installeren die vanaf deze of "
"andere computers in het netwerk gebruikt gaan worden.\n"
"\n"
"Het zal u vragen naar alle benodigde informatie om de printer in te stellen "
@@ -9025,7 +9145,6 @@ msgstr ""
"configureren op de machine waaraan hij is verbonden."
#: ../../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."
@@ -9049,7 +9168,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "GDI Laserprinter die het Zenographics ZJ-Stream-formaat gebruikt"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -9073,6 +9192,25 @@ msgid ""
"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 ""
+"Uw printer behoort tot de groep van GDI laserprinters (winprinters) van "
+"verschillende fabrikanten die het Zenographics ZJ-stream rasterformaat "
+"gebruikt voor de gegevens die naar de printer worden gestuurd. Het "
+"stuurprogramma voor deze printers is nog in een vroeg ontwikkelingsstadium "
+"en zal daarom niet altijd goed werken. In het bijzonder is het mogelijk dat "
+"de printer slechts werkt wanneer u het A4-papierformaat kiest.\n"
+"\n"
+"Voor sommige van deze printers, zoals de HP LaserJet 1000 (waarvoor dit "
+"stuurprogramma aanvankelijk gecreĂŤerd is), is het nodig dat hun firmware "
+"naar hen ge-upload wordt nadat ze aangezet zijn. In het geval van de HP "
+"LaserJet 1000 dient u op de Windows-stuurprogramma's-CD of uw Windows-"
+"partitie te zoeken naar het bestand \"sihp1000.img\" en dit bestand naar de "
+"printer uploaden met ĂŠĂŠn van de volgende opdrachten:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"De eerste opdracht kan gegeven worden door iedere normale gebruiker, de "
+"tweede moet gegeven worden als root. Hierna kunt u gewoon afdrukken.\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -9339,7 +9477,7 @@ msgstr "Bezig met afdrukken op printer \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9916,10 +10054,6 @@ msgstr ""
"Gelieve de ftp-proxy informatie\n"
"in te vullen. Laat het leeg als u geen ftp proxy wenst"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URL moet beginnen met 'ftp:' of 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9967,6 +10101,40 @@ msgstr "mkraid-fout! (misschien ontbreken de raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Niet genoeg partities voor RAID-niveau %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Veiligheidsniveau:"
+
+#: ../../security/main.pm_.c:74
+msgid "Security Alerts:"
+msgstr "Beveiligingswaarschuwingen:"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Beveiligings-beheerder:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, c-format
+msgid " (default: %s)"
+msgstr " (standaard: %s)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+"De volgende opties kunnen worden ingesteld om uw systeembeveiliging\n"
+"in te stellen. Indien u uitleg nodig heeft, kunt u op 'Hulp' klikken.\n"
+
+#: ../../security/main.pm_.c:256
+msgid "Please wait, setting security level..."
+msgstr "Even geduld, bezig met instellen van beveiligingsniveau..."
+
+#: ../../security/main.pm_.c:262
+msgid "Please wait, setting security options..."
+msgstr "Even geduld, bezig met instellen van beveiligingsopties..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Start het ALSA (Advanced Linux Sound Architecture) geluidssysteem"
@@ -10286,7 +10454,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Bestanden delen"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Systeem"
@@ -10363,17 +10531,16 @@ msgstr "Doe mee met de wereld van Vrije Software"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "Wilt u meer weten over de Open Source-gemeenschap?"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums 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"
+"Sluit u aan bij de discussiefora die u vindt op onze \"Community\"-"
+"webpagina's om uw kennis te delen en te helpen met het bouwen van Linux-"
+"programmatuur."
#: ../../share/advertising/03-internet.pl_.c:9
msgid "Get the most from the Internet"
@@ -10381,7 +10548,7 @@ msgstr "Haal het meeste uit het internet"
#: ../../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"
msgstr ""
@@ -10391,11 +10558,11 @@ msgstr ""
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "Ontdek de meest recente grafische- en multimedia-programma's!"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+msgstr "Drijf multimedia tot haar grenzen!"
#: ../../share/advertising/04-multimedia.pl_.c:11
msgid ""
@@ -10436,7 +10603,7 @@ msgstr "Gebruikersinterfaces"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 geeft u de beschikking over elf gebruikersinterfaces "
@@ -10464,7 +10631,7 @@ msgstr "Verander uw computer in een betrouwbare server"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Transformeer uw computer naar een krachtige Linuxserver met slechts enkele "
@@ -10479,33 +10646,35 @@ msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
msgstr ""
+"De MandrakeSecurity-serie omvat het 'Multi Network Firewall'-produkt (M.N.F.)"
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
+"Deze firewall bevat netwerkfunctionaliteit die een oplossing biedt voor al "
+"uw beveiligingsbenodigdheden"
#: ../../share/advertising/10-mnf.pl_.c:12
msgid "This product is available on MandrakeStore website"
-msgstr ""
+msgstr "Dit produkt is beschikbaar op de MandrakeStore-website"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "De officiĂŤle MandrakeSoft-winkel"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Ons volledige scala aan Linux-oplossingen, naast speciale aanbiedingen voor "
-"onze produkten en 'goodies', is beschikbaar op onze e-store"
+"onze produkten en \"goodies\", is on-line beschikbaar in onze webwinkel:"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "Strategische partners"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -10513,20 +10682,25 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoft werkt samen met een aantal bedrijven die professionele "
+"oplossingen bieden die compatibel zijn met Mandrake Linux. Een lijst van "
+"deze partners is beschikbaar op de MandrakeStore"
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "Ontdek MandrakeSoft's Linux-Campus training-catalogus"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"Het trainingsprogramma is gecreĂŤerd om te beantwoorden aan de behoeften van "
+"eindgebruikers zowel als experts (netwerk- en systeembeheerders)"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "Certificeer uzelf op Linux"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -10534,43 +10708,53 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"Of u nu kiest voor on-line zelfstudie of voor een studie via ons netwerk van "
+"trainingspartners, de Linux-Campus catalogus bereidt u voor op het erkende "
+"LPI-certificatieprogramma (wereldwijde professionele technische certificatie)"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "MandrakeExpert"
+msgstr "Wordt een MandrakeExpert"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
msgstr ""
+"Vind de oplossingen voor uw problemen via MandrakeSoft's on-line "
+"ondersteuningsplatform"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your 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 ""
+"Sluit u aan bij de MandrakeSoft ondersteuningsteams en de on-line "
+"Linuxgemeenschap om uw kennis te delen en anderen te helpen door een erkende "
+"Expert te worden op de on-line technische ondersteuningswebsite:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "MandrakeExpert"
+msgstr "MandrakeExpert Zakelijk"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:10
msgid "An online platform to respond to company's specific support needs"
msgstr ""
+"Een on-line platform dat beantwoordt aan de specifieke "
+"ondersteuningsbehoeften van een bedrijf"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:11
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
+"Alle incidenten zullen afgehandeld worden door een enkele gekwalificeerde "
+"technische expert van MandrakeSoft."
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "Ontdek MandrakeClub en Mandrake Corporate Club"
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -10581,16 +10765,23 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub en Mandrake Corporate Club zijn gecreĂŤerd voor particuliere- en "
+"zakelijke gebruikers van Mandrake Linux die graag hun favoriete "
+"Linuxdistributie direct ondersteunen, terwijl zij aan de andere kant "
+"speciale privileges ontvangen. Als onze produkten u bevallen, als uw bedrijf "
+"van onze produkten profiteert en zodoende een voorsprong neemt op de "
+"concurrentie, als u de ontwikkeling van Mandrake Linux wilt ondersteunen, "
+"sluit u dan aan bij MandrakeClub!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "Bezig met installeren van pakketten..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Gelieve opnieuw in te loggen op %s om de wijzigingen te activeren"
@@ -10631,16 +10822,6 @@ msgstr "Gebruikers toevoegen/verwijderen"
msgid "Add/Del Clients"
msgstr "Clienten toevoegen/verwijderen"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Help"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Boot Floppy"
@@ -10689,48 +10870,64 @@ msgstr "Gebruiker Toevoegen -->"
msgid "<-- Del User"
msgstr "<-- Verwijder Gebruiker"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr "Geen beeldbestanden voor opstarten vanaf netwerk gecreĂŤerd!"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Client Toevoegen -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Verwijder Client"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "dhcpd Configureren..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+msgid "dhcpd Server Configuration"
+msgstr "Configuratie van dhcpd-server"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+"Het grootse deel van deze waarden zijn\n"
+"gehaald uit uw lopende systeem. U kunt ze zonodig aanpassen."
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
-msgstr "Schrijf configuratie weg"
+msgstr "Configuratie wegschrijven"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Plaats een diskette in het station:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Kon de diskette niet benaderen!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "De diskette kan nu worden uitgenomen"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Geen diskettestation beschikbaar!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Etherboot ISO image is %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Er ging iets fout - Is mkisofs wel geĂŻnstalleerd?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Er moet eerst een /etc/dhcpd.conf worden aangemaakt!"
@@ -10878,12 +11075,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Totale voortgang"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10897,41 +11094,41 @@ msgstr ""
" is het waarschijnlijk nodig om de ingang uit authorized_keys\n"
" op de server te verwijderen."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Het kan enige tijd duren om de sleutels te genereren."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "FOUT: kan %s niet starten."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "Geen wachtwoord-aanvraag bij %s op poort %s"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "Geen wachtwoord"
+msgstr "Onjuist wachtwoord op %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "Toegang geweigerd bij het overdragen van %s naar %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
-msgstr ""
+msgstr "Kan %s op %s niet vinden"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "%s geeft geen antwoord"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10948,64 +11145,64 @@ msgstr ""
"\n"
"zonder om een wachtwoord gevraagd te worden."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "WebDAV-site op afstand loopt al synchroon!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "WebDAV-overdracht mislukt!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Geen CD-R/DVD-R in station!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Dit lijkt geen opneembare media te zijn!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Geen wisbare media!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Het kan enige tijd duren voordat de media gewist is."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Rechten-probleem bij benaderen CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "Geen tape in %s!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "Reservekopie maken van systeembestanden..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Harde schijf reservekopie..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Reservekopie gebruikersbestanden..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "Voortgang reservekopie harde schijf..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Reservekopie andere bestanden..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Geen veranderingen om een reservekopie van te maken!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -11016,7 +11213,7 @@ msgstr ""
"Drakbackup-activiteiten via %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -11025,7 +11222,7 @@ msgstr ""
"bestandslijst via FTP verzonden: %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -11035,7 +11232,7 @@ msgstr ""
" FTP verbindingsprobleem: het was niet mogelijk uw reservekopie via FTP te "
"versturen.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -11045,7 +11242,7 @@ msgstr ""
"Drakbackup-activiteiten via CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -11055,24 +11252,24 @@ msgstr ""
"Drakbackup-activiteiten via tape:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr "Fout tijdens versturen post.\n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Kan catalogus niet creĂŤren!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Bestandsselectie"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Selecteer de bestanden of mappen en klik op 'Toevoegen'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -11080,70 +11277,70 @@ msgstr ""
"\n"
"Gelieve alle opties te selecteren die u nodig heeft.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
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:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Reservekopie maken van uw systeembestanden. ( /etc map )"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
"Gebruik incrementele reservekopie (de oude reservekopieĂŤn niet vervangen)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "EssentiĂŤle bestanden niet opnemen (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
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:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Browser-cache niet opnemen"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Gebruik incrementele reservekopieĂŤn (vervang geen oude reservekopieĂŤn)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Verwijder geselecteerden"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32) "
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Gebruikers"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Netwerkverbinding gebruiken voor reservekopie"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "Net-methode:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Expect voor SSH gebruiken"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -11151,7 +11348,7 @@ msgstr ""
"Reservesleutels voor SSH\n"
"creĂŤren/overzetten"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -11159,15 +11356,19 @@ msgstr ""
" Nu\n"
"Overzetten"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
-msgstr "Sleutels staan reeds op hun plaats"
-
#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Overige (niet drakbackup)\n"
+"sleutels staan reeds op hun plaats"
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Gelieve hostnaam of IP in te voeren."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -11175,27 +11376,27 @@ msgstr ""
"Voer de map op deze computer in\n"
" om de reservekopie in op te slaan."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Voer uw login in"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Voer uw wachtwoord in"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Onthoud dit wachtwoord"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Hostnaam, gebruikersnaam en wachtwoord benodigd!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Gebruik CD/DVD-ROM voor reservekopie"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -11206,35 +11407,35 @@ msgstr ""
"Dit veld is niet vereist, slechts een hulpmiddel voor het invullen van het "
"formulier.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Kies uw CD/DVD-mediagrootte"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Ga na of u een multisessie-CD gebruikt"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Ga na of u CDRW-media gebruikt"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Ga alstublieft na of u uw RW-media (eerste sessie) wilt wissen"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Nu wissen"
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Ga alstublieft na of u een DVDR-apparaat gebruikt"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Ga alstublieft na of een DVDRAM-apparaat gebruikt"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -11242,34 +11443,34 @@ msgstr ""
"Voer het apparaatnaam van uw CD Writer in\n"
" Voorbeeld: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Geen CD-apparaat gedefiniĂŤerd!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Gebruik tape voor backup"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "Voer de apparaatnaam in om voor de reservekopie te gebruiken"
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr "Ga alstublieft na te gaan of u uw CDRW wilt wissen voor u verdergaat"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr ""
"Geeft u aan of u uw tape wilt wissen vóór de reservekopie gemaakt wordt."
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr ""
"Geeft u aan of u uw tape wilt uitwerpen nadat de reservekopie gemaakt is."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -11277,55 +11478,55 @@ msgstr ""
"Voer de maximumruimte in die\n"
" Drakbackup mag gebruiken"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Voer de map voor opslaan in:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Gebruik quota voor reservekopie-bestanden"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Netwerk"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CD-ROM / DVD-ROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Harde schijf / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Tape"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "ieder uur"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "dagelijks"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "wekelijks"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "maandelijks"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Gebruik daemon"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -11333,7 +11534,7 @@ msgstr ""
"Gelieve het tijdsinterval \n"
"tussen iedere backup te kiezen"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -11341,7 +11542,7 @@ msgstr ""
"Kies de media\n"
"voor de reservekopie."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -11351,72 +11552,72 @@ msgstr ""
"\n"
"Merk op dat momenteel alle 'net'-media ook van de harde schijf gebruikmaken."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Verstuur e-mailrapport na elke reservekopie naar:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
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:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Wat"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Waar"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Wanneer"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Meer opties"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Drakbackup configuratie"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Bepaal waar u de reservekopie wilt maken"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "op harde schijf"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "over netwerk"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "op CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "op Tape-apparaat"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Kies waar u een reservekopie van wilt maken"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Reservekopie-systeem"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Reservekopie Gebruikers"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Handmatig gebruiker selecteren"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -11424,7 +11625,7 @@ msgstr ""
"\n"
"Reservekopie-bronnen: \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -11432,7 +11633,7 @@ msgstr ""
"\n"
"- Systeembestanden:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -11440,7 +11641,7 @@ msgstr ""
"\n"
"- Gebruikersbestanden:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -11448,7 +11649,7 @@ msgstr ""
"\n"
"- Overige bestanden:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -11457,7 +11658,7 @@ msgstr ""
"\n"
"- Pad voor opslaan op harde schijf: %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -11465,7 +11666,7 @@ msgstr ""
"\n"
"- Tar-bestanden op harde schijf wissen na reservekopie.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -11473,20 +11674,20 @@ msgstr ""
"\n"
"- Naar CD branden"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " op apparaat: %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr " (multi-sessie)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -11495,12 +11696,12 @@ msgstr ""
"\n"
"- Naar tape opslaan op apparaat: %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tWissen=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -11509,7 +11710,7 @@ msgstr ""
"\n"
"- Opslaan via %s op host: %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -11518,7 +11719,7 @@ msgstr ""
"\t\t gebruikersnaam: %s\n"
"\t\t op pad: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -11526,20 +11727,20 @@ msgstr ""
"\n"
"- Opties:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tSysteembestanden niet opnemen\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tReservekopieĂŤn gebruiken tar en bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
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:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -11548,39 +11749,39 @@ msgstr ""
"\n"
"- Daemon (%s) invoegen: \n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Harde schijf.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Tape \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Netwerk over FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Netwerk over SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Netwerk over rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Netwerk over webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
-msgstr "Geen configuratie, gelieve Hulp of Geavanceerd aan te klikken.\n"
+msgstr "Geen configuratie, klik alstublieft op Wizard of Geavanceerd\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -11588,7 +11789,7 @@ msgstr ""
"Lijst van te herstellen gegevens:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -11596,110 +11797,110 @@ msgstr ""
"Lijst van beschadigde gegevens:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Gelieve het de volgende keer te deselecteren of te verwijderen"
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Reservekopie bestanden zijn beschadigd"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Al uw geselecteerde gegevens zijn "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Succesvol hersteld op %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Instellingen herstellen "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK om de overige bestanden te herstellen"
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Reservekopie maken van systeembestanden voor:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Gelieve de datum te kiezen om te herstellen"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Gebruik harde schijf voor reservekopie"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Voer de map voor opslaan in:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "FTP-verbinding"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Beveiligde verbinding"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Herstellen van harde schijf"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "Voer de map in waar reservekopieĂŤn opgeslagen worden"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Selecteer andere media om vanaf te herstellen"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Andere media"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Systeem herstellen"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Gebruikers herstellen"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Overige herstellen"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "selecteer te herstellen pad (in plaats van / )"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
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:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Verwijder gebruikersmappen alvorens te herstellen"
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr "Geselecteerd catalogus-item herstellen"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -11707,7 +11908,7 @@ msgstr ""
"Geselecteerde bestanden\n"
"herstellen"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -11715,12 +11916,12 @@ msgstr ""
"Herstel-pad\n"
"veranderen"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Reservekopie-bestanden niet op %s gevonden."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -11729,16 +11930,16 @@ msgstr ""
"Plaats de CD met volume label %s\n"
" in het CD-ROM-station onder koppelpunt /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Herstellen van CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, 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:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -11747,103 +11948,102 @@ msgstr ""
"Plaats de tape met volume label %s\n"
" in tape-apparaat %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Herstellen van tape"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, 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:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Herstellen via netwerk"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Herstellen via netwerkprotocol: %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Hostnaam"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Host-pad of module"
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Wachtwoord vereist"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Gebruikersnaam vereist"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Hostnaam vereist"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Pad of module vereist"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Bestanden teruggezet..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "Herstellen mislukt..."
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Alle reservekopieĂŤn herstellen"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Aangepast herstellen"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "CD geplaatst - doorgaan."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Bladeren naar nieuwe herstellocatie."
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Herstellen vanuit catalogus"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "Gebruikers herstellen"
+msgstr "Herstelvoortgang"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Vorige"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Opslaan"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Reservekopie maken"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Reservekopie herstellen"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -11853,7 +12053,7 @@ msgstr ""
" Uw melding is niet verstuurd.\n"
" Gelieve sendmail te configureren."
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11861,7 +12061,7 @@ msgstr ""
"De volgende pakketten moeten geĂŻnstalleerd worden:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11869,79 +12069,79 @@ msgstr ""
"Er trad een fout op tijdens de bestandsoverdracht via FTP.\n"
" Corrigeert u alstublieft uw FTP-configuratie."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Selecteer de gegevens om te herstellen"
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Selecteer media voor de reservekopie"
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Selecteer de gegevens waarvan u een reservekopie wilt maken..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
"Kan geen instellingen-bestand vinden \n"
-"klikt u op Hulp of Geavanceerd."
+"klikt u op Wizard of Geavanceerd."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "In ontwikkeling ... nog even wachten."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Reservekopie maken van systeembestanden"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Reservekopie maken van gebruikersbestanden"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Reservekopie maken van overige bestanden"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Totale voortgang"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "bestanden worden per FTP verstuurd"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Bezig met versturen van bestanden..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "Nu reservekopie maken vanaf configuratiebestand"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Backup-configuratie bekijken"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Configuratie met hulp"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Geavanceerde configuratie"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Nu reservekopie maken"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -12003,7 +12203,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -12018,7 +12218,7 @@ msgstr ""
" in te stellen in /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -12100,7 +12300,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -12153,20 +12353,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" vernieuwingen 2002 MandrakeSoft door Stew Benedict <sbenedict"
"\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -12202,7 +12402,7 @@ msgstr ""
" MA 02111-1307\n"
" USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -12280,7 +12480,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -12299,7 +12499,7 @@ msgstr ""
"de server.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -12323,7 +12523,7 @@ msgstr ""
"te betrachten en de reservekopiebestanden niet\n"
"handmatig te wijzigen.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -12453,8 +12653,8 @@ msgid "Synchronization tool"
msgstr "Synchronisatie-hulpprogramma"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Zelfstandige hulpprogramma's"
@@ -12519,7 +12719,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -12534,19 +12734,19 @@ msgstr ""
"verstuurd naar die server\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Rapporteren"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Niet geĂŻnstalleerd"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "Bezig met verbinden naar Bugzilla Wizard..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr "Geen bladerprogramma beschikbaar! Installeert u er alstublieft ĂŠĂŠn."
@@ -12641,16 +12841,12 @@ msgstr "Klik hier om de hulp in te schakelen ->"
#: ../../standalone/drakconnect_.c:256
msgid "Wizard..."
-msgstr "Hulp..."
+msgstr "Wizard..."
#: ../../standalone/drakconnect_.c:282
msgid "Apply"
msgstr "Toepassen"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Even geduld... bezig met toepassen van de configuratie"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Verbonden"
@@ -12772,7 +12968,7 @@ msgstr "Modulenaam"
msgid "Size"
msgstr "Formaat"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12837,12 +13033,12 @@ msgstr "Output"
msgid "Build the disk"
msgstr "Maak de diskette"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Zorg ervoor dat er een schijf aanwezig is in apparaat %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12852,12 +13048,12 @@ msgstr ""
"beschrijven.\n"
"Graag een ander medium plaatsen."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Kan geen nieuw proces beginnen: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -13231,7 +13427,7 @@ msgstr "Automatisch opnieuw configureren"
#: ../../standalone/drakgw_.c:266
msgid "Show current interface configuration"
-msgstr "Toon huidige interface-configuratie"
+msgstr "Huidige interface-configuratie tonen"
#: ../../standalone/drakgw_.c:268
#, c-format
@@ -13354,159 +13550,145 @@ msgstr ""
"\n"
"Klik op Configureer om de instellingen-hulp in te schakelen."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "Werkgroep"
+msgstr "groep"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "pad"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "Partitie %s"
+msgstr "permissies"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
-msgstr "Gebruiker"
+msgstr "gebruiker"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "Omhoog"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
-msgstr "Verwijderen"
+msgstr "verwijderen"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr "bewerken"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "Klaar"
+msgstr "Omlaag"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "module toevoegen"
+msgstr "regel toevoegen"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "selecteer permissiebestand om te bekijken/bewerken"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm is bedoeld om te zien welke bestanden gebruikt moeten worden om "
+"permissies, eigenaars en groepen juist in te stellen via 'msec'.\n"
+"U kunt ook uw eigen regels maken die voorrang krijgen op de standaard regels."
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "Printer toevoegen"
+msgstr "Nieuwe regel aan het eind toevoegen"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "Huidige regel bewerken"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "Alle gedeselecteerd"
+msgstr "Geselecteerde regel ĂŠĂŠn niveau omhoog verplaatsen"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "Geselecteerde regel ĂŠĂŠn niveau omlaag verplaatsen"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr ""
-"Geselecteerde bestanden\n"
-"herstellen"
+msgstr "Geselecteerde regel verwijderen"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "bladeren"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "Gebruiker aanvaarden"
+msgstr "Huidige gebruiker"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "Versie: %s\n"
+msgstr "Permissies"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "Pad"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "Poort"
+msgstr "Eigenschap"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "sticky-bit"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "Set-UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "Set-GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"Bedoeld voor mappen:\n"
+" slechts de eigenaar van een map of bestand in deze map kan deze verwijderen"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "Gebruik auto-detectie"
+msgstr "Eigenaar-ID gebruiken bij uitvoeren"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "Gebruik auto-detectie"
+msgstr "Groeps-ID gebruiken voor uitvoeren"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "wanneer aangevinkt, zullen de eigenaar en groep niet worden veranderd"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "Selectie opstartscherm"
+msgstr "Padselectie"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "Gebruiker"
+msgstr "gebruiker:"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "Werkgroep"
+msgstr "groep:"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Geen geluidskaart gevonden!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -13526,123 +13708,151 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/nl/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+"\n"
+"\n"
+"\n"
+"Opmerking: als u een ISA PnP geluidskaart heeft, zult u het sndconfig-"
+"programma moeten gebruiken. Type hiervoor \"sndconfig\" in een "
+"terminalvenster."
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "pakket ImageMagick is vereist voor correct functioneren"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "creĂŤren van eerste stap"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "uiteindelijke resolutie"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "kies het beeldbestand"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
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:85
+msgid "Browse"
+msgstr "Bladeren"
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "thema opslaan"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
+"X-coĂśrdinaat van tekstveld\n"
+"in aantal tekens"
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"Y-coĂśrdinaat van tekstveld\n"
+"in aantal tekens"
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "tekstbreedte"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
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"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"de X-coĂśrdinaat van de linkerbovenhoek\n"
+"van de voortgangsbalk"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"de Y-coĂśrdinaat van de linkerbovenhoek\n"
+"van de voortgangsbalk"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "de breedte van de voortgangsbalk"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "de hoogte van de voortgangsbalk"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
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"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "voorbeeld"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "kies een kleur"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "thema opslaan"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "kies een kleur"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Logo weergeven in tekstscherm (console)"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Kernel-meldingen standaard onderdrukken"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, 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
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "bezig met opslaan opstartscherm-thema..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Voortgangsbalk-kleurselectie"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "U dient eerst een beeldbestand te kiezen!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "Bezig met genereren voorbeeld..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "Kan opstartscherm-voorbeeld niet creĂŤren"
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13759,7 +13969,7 @@ msgstr "Zoeken naar TV-kanalen"
#: ../../standalone/drakxtv_.c:125
msgid "There was an error while scanning for TV channels"
-msgstr "Er was een fout tijdens het scannen naar TV kanalen"
+msgstr "Er is een fout opgetreden tijdens het zoeken naar TV-kanalen"
#: ../../standalone/drakxtv_.c:126
msgid "XawTV isn't installed!"
@@ -13775,7 +13985,7 @@ msgstr "Nu kunt U xawtv uitvoeren (vanuit X) !\n"
#: ../../standalone/drakxtv_.c:153
msgid "No TV Card detected!"
-msgstr "Geen TV kaart gedetecteerd!"
+msgstr "Geen TV-kaart gevonden!"
#: ../../standalone/drakxtv_.c:154
msgid ""
@@ -13788,14 +13998,22 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-"Er was geen TV kaart gedetecteerd. Controlleer dat een door linux "
-"ondersteundeVideo/TV kaart correct aangesloten is.\n"
+"Er was geen TV kaart gevonden. Gaat u na dat er een Video/TV kaart met Linux-"
+"ondersteuning correct aangesloten is.\n"
"\n"
"\n"
-"U kunt onze randapparatuur database bereiken op:\n"
+"U kunt onze randapparatuur-database bereiken op:\n"
"\n"
"\n"
-"http://www.linux-mandrake.com/en/hardware.php3"
+"http://www.linux-mandrake.com/nl/hardware.php3"
+
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"Gebruik: harddrake [-h|--help] [--test]\n"
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
@@ -13825,18 +14043,18 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Niet in staat \"live upgrade\" te starten!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
#: ../../standalone/logdrake_.c:95
msgid "Show only for the selected day"
-msgstr "Toon alleen voor de geselecteerde dag"
+msgstr "Alleen tonen voor de geselecteerde dag"
#: ../../standalone/logdrake_.c:102
msgid "/File/_New"
@@ -14077,8 +14295,8 @@ msgid ""
"Scannerdrake was not able to detect your %s scanner.\n"
"Please select the device where your scanner is plugged"
msgstr ""
-"Scannerdrake kon uw %s scanner niet detecteren.\n"
-"Selecteer het apparaat waar uw scanner op verbonden is."
+"Scannerdrake kon uw %s scanner niet vinden.\n"
+"Selecteer het apparaat waar uw scanner aan verbonden is."
#: ../../standalone/scannerdrake_.c:109
msgid "choose device"
@@ -14106,19 +14324,14 @@ msgstr ""
"U kunt nu documenten scannen met ``XSane'' via Multimedia/Graphics in het "
"applicatie menu."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, 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:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
-msgstr ""
-"\n"
-"Bepaalde apparaten in de hardware klasse \"%s\" zijn toegevoegd:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Enkele apparaten zijn toegevoegd:\n"
#: ../../steps.pm_.c:14
msgid "Choose your language"
@@ -14186,13 +14399,13 @@ msgstr "X Configureren"
#: ../../steps.pm_.c:34
msgid "Install system updates"
-msgstr "Installeer systeemupdates"
+msgstr "Systeemvernieuwingen installeren"
#: ../../steps.pm_.c:35
msgid "Exit install"
msgstr "Installatie afsluiten"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -14447,20 +14660,297 @@ msgstr "Multimedia - CD branden"
msgid "Scientific Workstation"
msgstr "Wetenschappelijk werkstation"
-#~ msgid "Can't create Bootsplash preview"
-#~ msgstr "Kan opstartscherm-voorbeeld niet creĂŤren"
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "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"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "opstartscherm maken stap 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Ga naar configuratie van lilo-opstartscherm"
+
+#~ msgid "Go back"
+#~ msgstr "ga terug"
+
+#~ 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)"
-#, 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."
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Mandrake Linux distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Mandrake Linux distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
#~ 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."
+#~ "Introductie\n"
+#~ "\n"
+#~ "Het besturingssysteem en de verschillende componenten beschikbaar in de "
+#~ "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. Geldende wetten\n"
+#~ "\n"
+#~ "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 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"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy moet ftp://... zijn"
+
+#~ msgid "quit"
+#~ msgstr "afsluiten"
#~ msgid ""
#~ "GNU/Linux is a multiuser system, and this means that each user can have "
diff --git a/perl-install/share/po/no.po b/perl-install/share/po/no.po
index 6b39a31ec..6d08a6c12 100644
--- a/perl-install/share/po/no.po
+++ b/perl-install/share/po/no.po
@@ -9716,7 +9716,7 @@ msgstr "Brukergrensesnitt"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -9757,7 +9757,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -9772,7 +9772,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
diff --git a/perl-install/share/po/pt.po b/perl-install/share/po/pt.po
index f5ae1189b..1f4f41f76 100644
--- a/perl-install/share/po/pt.po
+++ b/perl-install/share/po/pt.po
@@ -5,8 +5,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-09-05 23:14GMT\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-10 15:50GMT\n"
"Last-Translator: José JORGE <jose.jorge@oreka.com>\n"
"Language-Team: portuguęs <pt@li.org>\n"
"MIME-Version: 1.0\n"
@@ -90,24 +90,24 @@ msgstr "Configurar todas as cabeças independentemente"
msgid "Use Xinerama extension"
msgstr "Usar extensăo Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurar somente placa \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s com aceleraçăo 3D por hardware EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -148,12 +148,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (instalaçăo do gestor da placa)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalizado"
@@ -173,32 +173,32 @@ msgstr "Resoluçăo"
msgid "Test"
msgstr "Testar"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Sair"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -294,25 +294,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cancelar"
@@ -388,11 +388,11 @@ msgstr "Servidor XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ao iniciar"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -402,7 +402,7 @@ msgstr ""
"arranque.\n"
"Gostaria de iniciar o X quando voltar a arrancar?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -422,7 +422,7 @@ msgstr ""
"\n"
"Tem mesmo este dispositivo?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Qual sistema de TV quer utilizar?"
@@ -494,7 +494,7 @@ msgstr "Compacto"
msgid "compact"
msgstr "compacto"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modo de Vídeo"
@@ -502,17 +502,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Senha"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Senha (de novo)"
@@ -546,14 +546,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Por favor tente novamente"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "As senhas năo coincidem"
@@ -595,7 +595,7 @@ msgstr ""
"\n"
"Qual é o disco de arranque ?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -603,148 +603,148 @@ msgstr ""
"Aqui estăo a diferentes entradas.\n"
"Pode adicionar mais ou alterar as existentes"
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Adicionar"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Feito"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Outros SO (Windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imagem"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Adicionar"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Leitura-Escrita"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabela"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Inseguro"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Rótulo"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Por omissăo"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Tamanho-Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "SemVídeo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Remover entrada"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Năo é permitido um rótulo vazio"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Vocę deve escolher uma imagem de núcleo"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Tem que ter uma partiçăo raíz"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Este rótulo já está a ser utilizado"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interfaces %s %s encontrados"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Tem algum outro?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Tem algum interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Năo"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sim"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Ver informaçăo do hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "A instalar o driver para %s placa %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -753,7 +753,7 @@ msgstr ""
"Vocę pode agora inserir as opçőes para o modulo %s.\n"
"Lembre-se que todo endereço deve ser escrito com o prefixo 0x como '0x12'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -764,17 +764,17 @@ msgstr ""
"As opçőes estăo no formato ``nome=valor nome2=valor2 ...''\n"
"Para exemplo, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opçőes do módulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Qual driver %s que eu deveria tentar?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -791,15 +791,15 @@ msgstr ""
"máquina as informaçőes que ele precisa? Ocasionalmente, isso poderá\n"
"travar o computador, mas năo deve causar algum dano."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Auto-procurar"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Especificar opçőes"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -808,62 +808,62 @@ msgstr ""
"O carregamento do módulo %s falhou.\n"
"Quer tentar novamente com outros parâmetros?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "aceder aos programas X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "aceder ŕs ferramentas rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "permitir \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "aceder aos ficheiros de administraçăo"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "aceder ŕs ferramentas rede"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "aceder ŕs ferramentas de construçăo"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(já adicionado %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Essa senha é demasiado simples"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Por favor indique um nome de utilizador"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "O nome de utilizador é demasiado comprido"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Este nome de utilizador já foi adicionado"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Adicionar utilizador"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -872,32 +872,32 @@ msgstr ""
"Introduza um utilizador\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aceitar utilizador"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome de utilizador"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ícone"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autoligaçăo"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -905,56 +905,56 @@ msgstr ""
"Eu posso configurar o computador para ligar automaticamente um utilizador.\n"
"Quer utilizar esta possibilidade?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Escolha o utilizador por omissăo :"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Escolha o gestor de janelas a correr:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Por favor escolha o idioma a utilizar."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tudo"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permitir todos os utilizadores"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Năo partilhar"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "O pacote imperativo %s falta"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 +968,11 @@ msgstr ""
"\n"
"\"Personalizado\" permite de escolher para cada utilizador.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Lançar userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -980,31 +980,31 @@ msgstr ""
"A partilha por utilizador utiliza o grupo \"fileshare\". \n"
"Pode utilizar userdrake para inscrever um utilizador a este grupo."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Bem-vinda aos Piratas"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Padrăo"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Superior"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranóico"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1014,7 +1014,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:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1022,7 +1022,7 @@ msgstr ""
"As senhas agora estăo activadas, mas o uso como computador de rede ainda năo "
"é recomendado."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1030,7 +1030,7 @@ msgstr ""
"Esta é a segurança padrăo recomendada para um computador que será usadopara "
"se ligar ŕ Internet como um cliente."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1038,7 +1038,7 @@ msgstr ""
"Já há algumas restriçőes, e mais controlos automáticos săo lançados todas as "
"noites."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1053,7 +1053,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:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1061,34 +1061,34 @@ msgstr ""
"Este é similar ao 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:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Draksec Opçőes Simples"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Por favor, escolha o nível de segurança desejado"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Nível de segurança"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Utilizar libsafe para os servidores"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Administrador da segurança (login ou email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1103,7 +1103,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1120,59 +1120,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:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bem-Vindo ao 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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Prima 'enter' para arrancar o SO seleccionado, 'e' para editar os"
+msgstr "Prima 'entrada' 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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Ambiente de trabalho"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Menu Iniciar"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "nenhuma ajuda implementada ainda.\n"
@@ -1224,63 +1224,63 @@ msgstr "Modo lilo/grub"
msgid "Yaboot mode"
msgstr "Modo Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Instalar temas"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Mostrar o tema na linha de commando"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Criar um novo tema"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Guardar %s em %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Erro"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "incapaz de guardar a mensagem de lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "A copiar %s para %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "năo consigo mudar a mensagem de lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Năo encontro a mensagem de lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Năo posso escrever /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Escreve %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1288,17 +1288,17 @@ msgstr ""
"Năo posso escrever /etc/sysconfig/bootsplash\n"
"Năo encontrei o ficheiro."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, 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:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Fazer o initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1307,24 +1307,24 @@ msgstr ""
"Lança \"lilo\" como root na linha de commando para acabar a instalaçăo de "
"tema LiLo."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Relançar 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Nota"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "A instalaçăo dos temas de LiLo de Arranque foi conseguida"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "A instalaçăo de temas falhou"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1333,21 +1333,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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configurar"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Selecçăo da imagem de arranque"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Temas"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1361,44 +1361,44 @@ msgstr ""
"eles podem ser\n"
"diferentes"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Ecră Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Imagem de Arranque"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Modo do sistema"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
-msgstr "Iniciar o X-Window na inicializaçăo"
+msgstr "Iniciar o Ambiente Gráfico na inicializaçăo"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Năo, eu năo quero autoligaçăo"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sim, eu quero autoligaçăo com este (utilizador, ambiente de trabalho)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "năo possível abrir /etc/inittab para leitura: %s"
@@ -1495,50 +1495,58 @@ msgstr "Áustria"
msgid "United States"
msgstr "Estados Unidos"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Novo"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Servidor"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Por favor escolha a URL do servidor WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "O Url deve começar com http:// ou https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Servidor : "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opçőes: %s"
@@ -1626,7 +1634,7 @@ msgstr "Vazio"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Outro"
@@ -1770,7 +1778,7 @@ msgstr ""
"A tabela de partiçőes de segurança năo tem o \n"
"mesmo tamanho. Continuar mesmo assim?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Aviso"
@@ -2329,7 +2337,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 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Nome de utilizador"
@@ -2341,23 +2349,23 @@ msgstr "Domínio"
msgid "Search servers"
msgstr "Procurar Servidores"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formataçăo de %s falhou"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "a montagem da partiçăo %s na pasta %s falhou"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro a desmontar %s: %s"
@@ -2445,48 +2453,111 @@ msgstr "Nada a fazer"
msgid "Error opening %s for writing: %s"
msgstr "Erro ao abrir %s para escrita: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Nenhum piloto alternativo"
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
"Năo há nenhum piloto alternativo OSS/ALSA conhecido para a sua placa de som "
-"(%s)"
+"(%s) que utiliza actualmente \"%s\""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Configuraçăo do Som"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Aqui vocę pode escolher um piloto alternativo (seja OSS ou ALSA) para a sua "
"placa de som (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Piloto :"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Ajuda"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor aguarde... A aplicar a configuraçăo"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Por favor aguarde"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Nenhum piloto conhecido"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Năo há nenhum piloto conhecido para a sua placa de som (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Modelo desconhecido"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2615,7 +2686,8 @@ msgid "/_Quit"
msgstr "/_Sair"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajuda"
@@ -2625,7 +2697,7 @@ msgstr "/_Ajuda..."
#: ../../harddrake/ui.pm_.c:66
msgid "Harddrake help"
-msgstr "Ajuda de HardDrake"
+msgstr "Ajuda de Harddrake"
#: ../../harddrake/ui.pm_.c:67
msgid ""
@@ -2636,71 +2708,72 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Comunicar Erro"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_Acerca..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
-msgstr "Acerca de HardDrake"
+msgstr "Acerca de Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-"Isto é HardDrake, uma ferramenta Mandrake de configuraçăo do material.\n"
+"Isto é Harddrake, uma ferramenta Mandrake de configuraçăo do material.\n"
"Versăo:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
-msgstr "Versăo de HardDrake2 "
+msgstr "Versăo de Harddrake2 "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Material encontrado"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informaçőes"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Configurar modulo"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Lançar ferramenta de configuraçăo"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "A detectar"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Por favor aguarde"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Vocę pode configurar cada parametro do módulo aqui."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Lançando \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr "A testar $Ident classe\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "A testar %s classe\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "principal"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "secundario"
@@ -2949,6 +3022,55 @@ msgid ""
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
+"É agora o momento de indicar os programas que deseja instalar no\n"
+"seu sistema. Há centenas de pacotes disponíveis para Mandrake\n"
+"Linux, e năo lhe é pedido de os conhecer todos de cor.\n"
+"\n"
+"Se está a fazer uma instalaçăo padrăo a partir dum CD-ROM, vai\n"
+"lhe ser pedido primeiro quais CDs tem (so no modo Perito). Veja\n"
+"os nomes dos CDs e marque os que tem ŕ disposiçăo para a\n"
+"instalaçăo. Carregue em \"OK\" quando está pronto a continuar.\n"
+"\n"
+"Os pacotes estăo arrumados por grupos que correspondem a um uso\n"
+"particular da sua maquina. Os grupos eles mesmos contęm quatro\n"
+"secçőes :\n"
+"\n"
+" * \"Estaçăo de trabalho\": se planeia utilizar a sua máquina como\n"
+"uma estaçăo de trabalho, escolha um ou mais dos grupos seguintes;\n"
+"\n"
+" * \"Desenvolvimento\": se a sua máquina vai ser utilizada para\n"
+"programar, escolha o grupo desejado; \n"
+" * \"Servidor\": se esta máquina vai ser um servidor, vai poder\n"
+"escolher os serviços mais comuns que deseja instalar;\n"
+"\n"
+" * \"Ambiente Gráfico\": enfim, aqui pode escolher o seu ambiente\n"
+"gráfico preferido. Deve escolher pelo menos um se quer ter uma\n"
+"estaçăo de trabalho gráfica!\n"
+"\n"
+"Se posiciona o rato sobre um nome de grupo vai obter uma texto\n"
+"curto de explicaçăo. Se deseleccionar todos os grupos ao fazer uma\n"
+"instalaçăo normal (e năo uma actualizaçăo), um dialogo vai-lhe\n"
+"propor as opçőes de uma instalaçăo mínima :\n"
+"\n"
+" * \"Com X\": instala o mínimo de pacotes para ter um ambiente\n"
+"gráfico;\n"
+"\n"
+" * \"Com a documentaçăo de base\": instala o sistema mínimo com\n"
+"os utilitários de base e a documentaçăo deles. É uma boa\n"
+"instalaçăo para um servidor;\n"
+"\n"
+" * \"Verdadeira instalaçăo mínima\": vai instalar o mínimo para\n"
+"obter um sistema Linux funcional, so com linha de commando. Esta\n"
+"instalaçăo faz aproximadamente 65MB.\n"
+"\n"
+"Pode marcar a caixa \"Escolha individual dos pacotes\", que é util\n"
+"si conhece os pacotes propostos ou se deseja ter um controlo total\n"
+"sobre o que vai ser instalado.\n"
+"\n"
+"Se começou a instalaçăo em modo \"Actualizaçăo\", pode\n"
+"deseleccionar todos os grupos para evitar de instalar qualquer\n"
+"novo pacote. Isto é util para arranjar ou actualizar um sistema já\n"
+"instalado."
#: ../../help.pm_.c:128
msgid ""
@@ -3011,6 +3133,27 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
+"Vocę pode agora configurar a sua ligaçăo Internet/rede. Se deseja ligar o\n"
+"seu computador ao Internet ou a uma rede local, carregue em \"OK\". A\n"
+"detecçăo automática de dispositivos de rede e modem vai ser lançada. Se\n"
+"esta detecçăo falhar, tire a marca da caixa \"Utilizar detecçăo automática"
+"\"\n"
+"na próxima vez. Também pode escolher de năo configurar a rede, ou de o\n"
+"fazer mais tarde; neste caso, basta carregar no botăo \"Anular\".\n"
+"\n"
+"A ligaçőes disponiveis săo : modem tradicional, modem ISDN, ligaçăo ADSL,\n"
+"modem de cabo, e enfim uma simples ligaçăo rede (Ethernet).\n"
+"\n"
+"Aqui, năo vai detalhar cada configuraçăo. Basta ter todos os parametros\n"
+"dados pelo seu Fornecedor de Acesso Internet ou administrador sistema.\n"
+"\n"
+"Pode ver no ''Guia do Utilizador'' o capitulo sobre as ligaçőes Internet\n"
+"para mais detalhes sobre a configuraçăo, ou esperar o fim de instalaçăo\n"
+"do sistema e utilizar o programa indicado aqui para configurar a sua\n"
+"ligaçăo.\n"
+"\n"
+"Se deseja configurar a rede mais tarde depois da instalaçăo, ou se acabou\n"
+"de configurar a rede, carregue em \"Anular\"."
#: ../../help.pm_.c:186
msgid ""
@@ -3030,6 +3173,22 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
+"Pode agora escolher quais serviços deseja lançar ao arranque.\n"
+"\n"
+"Aqui estăo apresentados todos os serviços disponíveis com a\n"
+"instalaçăo que fez. Controle-os atentamente e desligue os que năo\n"
+"săo sempre necessários ao arranque.\n"
+"\n"
+"Pode obter um curto texto de descriçăo do serviço ao escolher\n"
+"um serviço. No entanto, se năo tem a certeza de saber se um\n"
+"serviço é util ou năo, mais vale deixar-lo na posiçăo por omissăo.\n"
+"\n"
+"!! Aqui, seja muito atento se pretende utilizar a sua máquina como\n"
+"um servidor : năo vai provavelmente querer lançar os serviços de\n"
+"que năo precisa. Lembre-se por favor que vários serviços podem ser\n"
+"perigosos se săo activados num servidor. De maneira geral, escolha\n"
+"so os serviços de que precisa mesmo.\n"
+"!!"
#: ../../help.pm_.c:203
msgid ""
@@ -3082,6 +3241,26 @@ msgid ""
"configuration section of the user guide for more information on how to\n"
"configure your display."
msgstr ""
+"X (para Sistema X Window) é o coraçăo da interface gráfica GNU/Linux\n"
+"sobre a qual todos os ambientes gráficos KDE, GNOME, AfterStep,\n"
+"WindowMaker, etc.) incluidos na Mandrake Linux funcionam. Nesta secçăo,\n"
+"DrakX vai tentar configurar X automaticamente.\n"
+"\n"
+"É muito raro que isto falhe, a menos que tenha material muito antigo\n"
+"(ou demasiado recente). Se conseguir, vai iniciar o X automaticamente\n"
+"com a melhor definiçăo, seguinte o tamanho do monitor. Uma janela vai\n"
+"entăo aparecer e pedir-lhe se pode ver a imagem.\n"
+"\n"
+"Se está a fazer uma instalaçăo em modo \"Perito\", vai lançar o\n"
+"assistente de configuraçăo do X. Veja a secçăo que corresponde no\n"
+"manual para mais informaçőes sobre este assistente.\n"
+"\n"
+"Se vocę pode ver a mensagem durante o teste, e responde \"Sim\", entăo\n"
+"DrakX vai continuar. Se năo pode ver a mensagem, so significa que a\n"
+"configuraçăo está errada, e o teste vai parar automaticamente no fim\n"
+"de 10 segundos, restaurando o ecră. Veja entăo a secçăo da\n"
+"configuraçăo do Video no guia do utilizador para mais informaçőes\n"
+"sobre como configurar o seu ecră."
#: ../../help.pm_.c:239
msgid ""
@@ -3228,6 +3407,36 @@ msgid ""
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
+"Aqui chegou. A instalaçăo está agora completa e o seu sistema GNU/Linux\n"
+"está pronto a ser utilizado. Basta carregar em \"OK\" para reiniciar o\n"
+"sistema. Vai poder iniciar\n"
+" GNU/Linux ou Windows (se escolheu de ter os\n"
+"dois, desde o próximo arranque do computador.\n"
+"\n"
+"O botăo \"Avançado\" (em modo \"Perito\") propőe dois botőes para :\n"
+"\n"
+" * \"Criar disquete de auto instalaçăo\": para criar uma disquete de\n"
+"instalaçăo que vai fazer toda a instalaçăo se a ajuda de um operador,\n"
+"similar ŕ instalaçăo que acabou de configurar.\n"
+"\n"
+" Note que duas opçőes diferentes săo disponíveis depois de carregar\n"
+"no botăo :\n"
+" * \"Repetir\". Isto é uma instalaçăo automática por parte pois so\n"
+"a partiçăo do disco fica interactiva;\n"
+"\n"
+" * \"Automática\". Instalaçăo completamente automática : o disco\n"
+"rígido é completamente apagado, todos os dados săo perdidos.\n"
+"\n"
+" Esta opçăo é muito pratica para instalar varias máquinas iguais.\n"
+"Veja a secçăo Auto Instalaçăo no nosso servidor web;\n"
+"\n"
+" * \"Guardar selecçăo de pacotes\"(*): grava a selecçăo de pacotes\n"
+"como foi feita. Depois, quando faz outra instalaçăo, insira a disquete\n"
+"no leitor e lance a instalaçăo pelo ecră de ajuda carregando na tecla\n"
+"[F1], e escrevendo >>linux defcfg=\"floppy\"<<.\n"
+"\n"
+"(*) Pode precisar duma disquete formatada FAT (para criar uma sob\n"
+"GNU/Linux, escreva \"mformat a:\")"
#: ../../help.pm_.c:372
msgid ""
@@ -3539,6 +3748,20 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"O primeiro passo é de escolher a sua língua preferida.\n"
+"\n"
+"Por favor escolha a sua língua preferida para a instalaçăo e o uso\n"
+"do sistema.\n"
+"\n"
+"Se carregar no botăo \"Avançado\" vai poder escolher outras línguas\n"
+"a instalar na sua máquina. O facto de escolher outras línguas vai\n"
+"instalar o ficheiros específicos ŕs línguas para a documentaçăo do\n"
+"sistema e as aplicaçőes. Por exemplo, se vai ter utilizadores\n"
+"Espanhóis, escolha Portuguęs como língua principal na vista arvore\n"
+"e na secçăo avançado carregue em \"Espanhol|Espanha\".\n"
+"\n"
+"Nota que pode instalar quantas línguas quiser. Quando acabou de\n"
+"escolher, carregue no botăo \"OK\" para continuar."
#: ../../help.pm_.c:609
msgid ""
@@ -3882,6 +4105,36 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
+"Aqui estăo apresentados vários parametros sobre a sua máquina. Conforme o\n"
+"material que tem, pode - ou năo - ver os elementos seguintes :\n"
+"\n"
+" * \"Rato\": verifique a configuraçăo do rato e carregue no botăo para\n"
+"a mudar se necessário;\n"
+"\n"
+" * \"Teclado\": verifique o mapa do teclado e carregue no botăo para\n"
+"o mudar se necessário;\n"
+"\n"
+" * \"Fuso Horario\": DrakX, por omissăo, advinha o fuso horario a partir\n"
+"da língua que escolheu. Mas aqui também, como para a escolha do teclado,\n"
+"pode năo estar no país correspondente ŕ língua escolhida. Portanto, pode\n"
+"precisar de carregar no botăo \"Fuso Horario\" para configurar o relógio\n"
+"seguinte o fuso onde está;\n"
+"\n"
+" * \"Impressora\": carregando no botăo \"Nenhuma Impressora\" vai abrir\n"
+"o assistente de configuraçăo da impressăo. Veja o capitulo correspondente\n"
+"no ''Guia do Utilizador'' para mais informaçőes sobre a configuraçăo duma\n"
+"nova impressora. O interface apresentado aqui é similar ao usado durante\n"
+"a instalaçăo;\n"
+"\n"
+" * \"Placa de Som\": se uma placa de som foi detectada no seu sistema, é\n"
+"mostrada aqui. Nenhuma modificaçăo é possível durante a instalaçăo;\n"
+"\n"
+" * \"Placa de TV\": se uma placa de TV foi detectada no seu sistema, é\n"
+"mostrada aqui. Nenhuma modificaçăo é possível durante a instalaçăo;\n"
+"\n"
+" * \"Placa ISDN\": se uma placa ISDN foi detectada no seu sistema, é\n"
+"mostrada aqui. Pode carregar no botăo para mudar os parametros que\n"
+"lhe săo associados."
#: ../../help.pm_.c:896
msgid ""
@@ -3903,6 +4156,13 @@ msgid ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
+"Carregue em \"OK\" se deseja apagar todos os dados e partiçőes presentes\n"
+"neste disco rígido. Seja atento, depois de carregar em \"OK\", năo vai\n"
+"poder recuperar nenhum dado ou partiçăo que estava no disco, mesmo os\n"
+"dados Windows.\n"
+"\n"
+"Carregue em \"Anular\" para anular esta operaçăo sem perder nenhum dado\n"
+"ou partiçăo presente neste disco."
#: ../../install2.pm_.c:111
#, c-format
@@ -3921,7 +4181,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Vocę também deve formatar %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3946,7 +4206,7 @@ msgstr ""
"\n"
"Deseja mesmo instalar estes servidores?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3954,21 +4214,26 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"Os pacotes seguintes văo ser apagados para poder actualizar o seu sistema : %"
+"s\n"
+"\n"
+"\n"
+"Deseja mesmo apagar estes pacotes ?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
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:862
+#: ../../install_any.pm_.c:869
#, 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:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Esta disquete năo está formatada em FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -3976,12 +4241,12 @@ msgstr ""
"Para usar esta selecçăo guardada de pacotes, arranque a instalaçăo com "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Erro ao ler o ficheiro %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4222,7 +4487,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Bem-vindo ŕ %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nenhum drive de disquete disponível"
@@ -4253,11 +4518,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selecçăo de Grupo de Pacotes"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selecçăo individual de pacotes"
@@ -4335,7 +4600,7 @@ msgstr "Mostrar automaticamente pacotes seleccionados"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalar"
@@ -4355,7 +4620,7 @@ msgstr "Instalaçăo mínima"
msgid "Choose the packages you want to install"
msgstr "Escolha os pacotes que deseja instalar"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "A instalar"
@@ -4382,17 +4647,17 @@ msgid "Installing package %s"
msgstr "A instalar pacote %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceitar"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Recusar"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4408,16 +4673,16 @@ msgstr ""
"Se năo o tiver, prima Cancelar para evitar a instalaçăo deste Cd-Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Houve um erro na ordenaçăo dos pacotes:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Houve um erro a instalar os pacotes:"
@@ -4541,7 +4806,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4619,7 +4884,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:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -4831,11 +5096,11 @@ msgstr "Insira uma disquete com a selecçăo de pacotes"
msgid "Selected size is larger than available space"
msgstr "O tamanho seleccionado é maior que o espaço disponível"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tipo de instalaçăo"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -4843,19 +5108,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:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Com X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "Com a documentaçăo de base (recomendado!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Verdadeira instalaçăo mínima (nem sequer urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4865,16 +5130,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom rotulado como \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "A preparar a instalaçăo"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4883,21 +5148,21 @@ msgstr ""
"Instalando o pacote %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuraçăo pós-instalaçăo"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4935,8 +5200,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"Tem agora a possibilidade de descarregar o software para codificaçăo "
-"(encriptaçăo).\n"
+"Tem agora a possibilidade de descarregar o programas de codificaçăo.\n"
"\n"
"ATENÇĂO:\n"
"Devido a vários requerimentos aplicáveis ŕ este software e impostos\n"
@@ -4973,7 +5237,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4993,160 +5257,160 @@ msgstr ""
"\n"
"deseja instalar as actualizaçőes ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
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 "
-"disponiveis..."
+"disponíveis..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
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:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Qual é o seu fuso horário?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "O relógio material está na hora GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Sincronizaçăo automática da hora (com NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Servidor NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Servidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nenhuma impressora"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Tem alguma placa de som ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
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:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumário"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Rato"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Fuso horário"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Placa RDIS"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Placa de Som"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Placa TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Domínio Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Ficheiros locais"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Especificar senha do root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Nenhuma senha"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autenticaçăo LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "dn de base LDAP"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Servidor LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autenticaçăo NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domínio NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5161,20 +5425,32 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
+"Para que isto funcione para um PDC W2K, vai provavelmente ser preciso que o "
+"administrador faça : C:\\>net localgroup \"Pre-Windows 2000 Compatible Access"
+"\" everyone /add e reinicie o servidor.\n"
+"Também vai precisar do nome/senha de um Administrador de Dominio para juntar "
+"a máquina ao dominio Windows(TM).\n"
+"Se a rede ainda năo está activada, DrakX vai tentar juntar-se ao dominio "
+"depois da configuraçăo da rede.\n"
+"Se esta configuraçăo falha por alguma razăo e que a autenticaçăo no dominio "
+"năo funciona, lance 'smbpasswd -j DOMINIO -U NOME%SENHA' usando o seu "
+"Dominio Windows (TM), e o Nome/Senha do Administrador, depois do arranque do "
+"sistema.\n"
+"O commando 'wbinfo -t' vai testar se a autenticaçăo está boa."
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Autenticaçăo Domínio Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr "Nome do Administrador do Domínio"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr "Senha do Administrador de Domínio"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5206,19 +5482,19 @@ msgstr ""
"disquete\n"
"no drive e aperte em \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primeiro drive de disquetes"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Segundo drive de disquetes"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Saltar"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5245,7 +5521,7 @@ msgstr ""
"Deseja criar uma disquete de arranque para o seu sistema?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5259,29 +5535,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:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, nenhum drive de disquetes disponível"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Insira uma disquete em %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "A criar disquete de arranque"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "A preparar o carregador de arranque"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5294,11 +5570,11 @@ msgstr ""
"A instalaçăo vai continuar, mas vai precisar de utilizar\n"
" BootX para arrancar a sua maquina."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Quer usar o aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5306,16 +5582,16 @@ msgstr ""
"Erro ao instalar o aboot, \n"
"tento forçar a instalaçăo, mesmo que isso estrague a primeira partiçăo?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "A instalar o carregador de arranque"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5333,17 +5609,17 @@ msgstr ""
" E depois escreva : shut-down\n"
"No próximo inicio deveria obter o carregador de arranque."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "A criar disquete de auto-instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5353,7 +5629,7 @@ msgstr ""
"\n"
"Quer realmente sair agora?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5375,7 +5651,7 @@ msgstr ""
"Retire o suporte de arranque e carregue \"Entrada\" para reinicializar.\n"
"\n"
"\n"
-"Para informaçőes sobre as correcçőes disponiveis para esta versăo do "
+"Para informaçőes sobre as correcçőes disponíveis para esta versăo do "
"Mandrake Linux,\n"
"consulte a Errata disponível em : \n"
"\n"
@@ -5386,15 +5662,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Criar disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5408,15 +5684,15 @@ msgstr ""
"\n"
"Pode preferir repetir a instalaçăo.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
-msgstr "Automático"
+msgstr "Automática"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Repetir"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Guardar selecçăo de pacotes"
@@ -5452,14 +5728,14 @@ msgstr "Avançado"
msgid "Basic"
msgstr "Básico"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Próximo"
@@ -5646,7 +5922,7 @@ msgstr "Alemăo (sem teclas mortas)"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "Devanagari"
#: ../../keyboard.pm_.c:192
msgid "Danish"
@@ -5682,11 +5958,11 @@ msgstr "Grego"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "Gujarati"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "Gurmukhi"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
@@ -5718,7 +5994,7 @@ msgstr "Italiano"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "Inuktitut"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
@@ -5762,7 +6038,7 @@ msgstr "Macedónio"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "Myanmar (Burmese)"
#: ../../keyboard.pm_.c:227
msgid "Mongolian (cyrillic)"
@@ -5905,7 +6181,7 @@ msgstr "A tecla \"Windows\" direita"
msgid "Circular mounts %s\n"
msgstr "Montagens circulares %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Remova os volumes lógicos primeiro\n"
@@ -6042,15 +6318,15 @@ msgstr "nenhum"
msgid "No mouse"
msgstr "Nenhum Rato"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Por favor teste o rato"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Para activar o rato,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA A SUA RODA!"
@@ -6086,11 +6362,11 @@ msgstr "Encolher Árvore"
msgid "Toggle between flat and group sorted"
msgstr "Alternar entre organizaçăo plana ou em grupo"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Ligar ŕ Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6100,23 +6376,19 @@ msgstr ""
"Mas algumas ligaçőes usam pptp, poucas usam dhcp.\n"
"Se năo sabe, escolha 'usar pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "usar dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "usar pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "usar pptp"
@@ -6164,6 +6436,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"Pode escrever portas diversas. \n"
+"Exemplos validos săo : 139/tcp 139/udp.\n"
+"Veja em /etc/services para informaçőes."
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -6172,6 +6447,9 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"Porta invalida dada : %s.\n"
+"O bom formato é \"porta/tcp\" ou \"porta/udp\", \n"
+"onde porta é entre 1 e 65535."
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
@@ -6211,7 +6489,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:362
msgid "Configuring network"
msgstr "A configurar a rede"
@@ -6227,15 +6505,15 @@ 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:367
msgid "Host name"
msgstr "Nome do anfitriăo"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Assistente de Configuraçăo da Rede"
@@ -6282,8 +6560,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Antiga Configuraçăo (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configuraçăo ISDN"
@@ -6319,23 +6597,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Qual protocolo que quer usar?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Qual tipo de placa tem?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Eu năo sei"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6348,19 +6631,19 @@ msgstr ""
"\n"
"Se tiver uma placa PCMCIA, tem que saber o irq e io da sua placa.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abortar"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continuar"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Qual é a sua placa ISDN?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6368,7 +6651,7 @@ msgstr ""
"Eu detectei uma placa ISDN PCI, mas năo sei qual é o tipo. Por favor "
"seleccione uma placa PCI no próximo quadro."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nenhuma placa ISDN PCI foi encontrada. Por favor seleccione uma no próximo "
@@ -6422,7 +6705,7 @@ msgstr "Primeiro DNS Servidor (opcional)"
msgid "Second DNS Server (optional)"
msgstr "Segundo DNS Server (opcional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6430,7 +6713,7 @@ msgstr ""
"\n"
"Pode desligar ou reconfigurar a sua ligaçăo."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6438,11 +6721,11 @@ msgstr ""
"\n"
"Pode reconfigurar sua ligaçăo."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Está neste momento ligado ŕ Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6450,32 +6733,32 @@ msgstr ""
"\n"
"Pode ligar ŕ Internet ou reconfigurar sua ligaçăo."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Năo está neste momento ligado ŕ Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Ligar"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Desligar"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configurar a ligaçăo"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Ligaçăo e configuraçăo da Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Vamos agora configurar a ligaçăo %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6494,12 +6777,12 @@ msgstr ""
"\n"
"Carregue em OK para continuar."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraçăo da Rede"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6510,7 +6793,7 @@ msgstr ""
"Clique em OK para manter a configuraçăo, ou Cancelar para reconfigurar a sua "
"ligaçăo Internet & Rede.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6522,72 +6805,72 @@ msgstr ""
"Estamos preparados para configurar a sua ligaçăo de rede/Internet.\n"
"Se năo quiser usar a auto-detecçăo, desmarque a opçăo.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Escolha o perfil a configurar:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Usar auto-detecçăo"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "A detectar dispositivos..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Ligaçăo normal via modem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectado na porta %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Ligaçăo ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detectado %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "Ligaçăo ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectado no interface %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Ligaçăo por Cabo"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "ligaçăo por cabo detectada"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Ligaçăo ŕ Rede"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "placa(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "Escolha a ligaçăo que deseja configurar"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -6597,23 +6880,23 @@ msgstr ""
"Escolha a que deseja utilizar.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Ligaçăo ŕ Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Quer iniciar a sua ligaçăo ao iniciar?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuraçăo da Rede"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "A rede precisa de ser reiniciada"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6624,7 +6907,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -6634,7 +6917,7 @@ msgstr ""
"\n"
"A configuraçăo será agora aplicada ao seu sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -6642,7 +6925,7 @@ msgstr ""
"Depois de completado, recomendamos que reinicie o seu \n"
"ambiente X para evitar o problema da troca de nome do anfitriăo."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -6652,7 +6935,7 @@ msgstr ""
"Teste a sua ligaçăo com net_monitor ou mcc. Se a sua ligaçăo năo funciona, "
"pode desejar relançar a configuraçăo."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6663,7 +6946,7 @@ msgstr ""
"Apenas aceite manter este dispositivo configurado.\n"
"A modificaçăo dos campos abaixo irá sobrepor esta configuraçăo."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6673,42 +6956,42 @@ msgstr ""
"Cada item deve ser introduzido como endereço IP ponteado-decimal\n"
"(por exemplo, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "A configurar dispositivo de rede %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Endereço IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP Automático"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Iniciado ao arranque"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6720,42 +7003,50 @@ 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:368
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Porta de ligaçăo (ex. %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositivo de ponte"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "O endereço do servidor DNS deve ser no formato 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "O endereço do portăo deve ser no formato 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Configuraçăo de proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "Procurar o id da placa rede (útil para os portaveis)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "O Proxy deve ser http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "O Proxy deve ser ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "O Url deve começar com 'ftp:' ou 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7204,7 +7495,7 @@ msgstr "Configuraçăo automática de CUPS"
#: ../../printerdrake.pm_.c:3471 ../../printerdrake.pm_.c:3526
#: ../../printerdrake.pm_.c:3579 ../../standalone/printerdrake_.c:57
msgid "Printerdrake"
-msgstr "PrinterDrake"
+msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
msgid "Checking your system..."
@@ -7236,6 +7527,8 @@ msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"e uma impressora desconhecida está "
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -7243,6 +7536,8 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+"e %d impressoras desconhecidas estăo "
#: ../../printerdrake.pm_.c:207
msgid ""
@@ -7269,6 +7564,8 @@ msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"Há uma impressora desconhecida ligada directamente ao seu sistema"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -7276,6 +7573,8 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"Há %d impressoras desconhecidas ligadas directamente ao seu sistema"
#: ../../printerdrake.pm_.c:221
msgid " (Make sure that all your printers are connected and turned on).\n"
@@ -7307,6 +7606,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"NOTA : Seguinte o modelo de impressora e o sistema de impressăo até %d MB de "
+"programas adicionais văo ser instalados."
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -7332,7 +7633,7 @@ msgstr ""
"utilizar a partir desta maquina e também a partir doutras maquinas na rede.\n"
"\n"
"Vai-lhe pedir todas as informaçőes necessárias para configurar a impressora "
-"e dar-lhe acesso a todos os pilotos de impressoras disponiveis, todas as "
+"e dar-lhe acesso a todos os pilotos de impressoras disponíveis, todas as "
"opçőes, e tipos os tipos de ligaçăo."
#: ../../printerdrake.pm_.c:280
@@ -7969,7 +8270,7 @@ msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
-"Se a sua impressora năo está na lista, escolha uma compativel (veja no "
+"Se a sua impressora năo está na lista, escolha uma compatível (veja no "
"manual da impressora) ou uma parecida."
#: ../../printerdrake.pm_.c:1741
@@ -8031,7 +8332,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "Impressoras Laser GDI usando o formato de dados Zenographics ZJ-Stream"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8055,6 +8356,24 @@ msgid ""
"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 ""
+"A sua impressora pertence ao grupo de impressoras laser GDI (winimpressoras) "
+"vendidas por diferentes fabricantes que utilizam o formato Zenographics ZJ-"
+"stream para os dados enviados ŕ impressora. O piloto destas impressoras "
+"começa apenas a ser desenvolvido e talvez năo vai funcionar sempre bem. "
+"Particularmente é possível que a impressora so funcione se escolhe o tamanho "
+"de papel A4.\n"
+"\n"
+"Algumas destas impressoras, como a HP LaserJet 1000, para a qual este piloto "
+"foi criado, precisam que o firmware seja-lhes enviado depois de serem "
+"acendidas. No caso da HP LaserJet 1000 tem de procurar no CD dos pilotos "
+"Windows da impressora ou na sua partiçăo Windows pelo ficheiro \"sihp1000.img"
+"\" e enviar-lo ŕ impressora com um dos commandos seguintes :\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"O primeiro commando pode ser dado por um utilizador normal, enquanto que o "
+"segundo necessita ser root. Depois de fazer isto pode imprimir normalmente.\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -8068,7 +8387,7 @@ msgstr ""
"Configuraçăo por omissăo da Impressora\n"
"\n"
"Deveria assegurar-se que o tamanho do papel e o tipo de tinta/impressăo (se "
-"disponiveis) e também a configuraçăo material das impressoras laser "
+"disponíveis) e também a configuraçăo material das impressoras laser "
"(memoria, opçőes) estăo configurados correctamente. Pense que com uma muito "
"alta qualidade/resoluçăo a impressăo pode tornar-se bastante lenta."
@@ -8194,6 +8513,9 @@ msgid ""
"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 ""
+"Estes commandos também podem ser utilizados na zona \"Commando de impressăo"
+"\" dos dialogos de impressăo de muitas aplicaçőes. Mas neste caso năo "
+"indique o nome do ficheiro pois ele é indicado pela aplicaçăo.\n"
#: ../../printerdrake.pm_.c:2293 ../../printerdrake.pm_.c:2310
#: ../../printerdrake.pm_.c:2320
@@ -8204,6 +8526,10 @@ msgid ""
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
+"\n"
+"O commando \"%s\" também permite de modificar a configuraçăo de uma tarefa "
+"de impressăo particular. Basta adicionar os parametros desejados na linha de "
+"commando, ex. \"%s <ficheiro>\". "
#: ../../printerdrake.pm_.c:2296 ../../printerdrake.pm_.c:2336
#, c-format
@@ -8212,13 +8538,15 @@ msgid ""
"list shown below or click on the \"Print option list\" button.%s%s\n"
"\n"
msgstr ""
+"Para saber as opçőes disponíveis para a impressora actual pode ou ler a "
+"lista abaixo ou carregar no botăo \"Imprimir a lista das opçőes\".%s%s\n"
#: ../../printerdrake.pm_.c:2300
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
-"Aqui tem uma lista das opçőes disponiveis para a impressora actual :\n"
+"Aqui tem uma lista das opçőes disponíveis para a impressora actual :\n"
"\n"
#: ../../printerdrake.pm_.c:2305 ../../printerdrake.pm_.c:2315
@@ -8237,12 +8565,17 @@ msgid ""
"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 ""
+"Este commando também pode ser utilizado na zona \"Commando de impressăo\" "
+"dos dialogos de impressăo de muitas aplicaçőes. Mas neste caso năo indique o "
+"nome do ficheiro pois ele é indicado pela aplicaçăo.\n"
#: ../../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 ""
+"Para obter uma lista das opçőes disponíveis para a impressora actual "
+"carregue no botăo \"Imprimir a lista das opçőes\"."
#: ../../printerdrake.pm_.c:2325
#, c-format
@@ -8250,6 +8583,8 @@ msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
+"Para imprimir um ficheiro a partir da linha de commando (janela de terminal) "
+"utilize o commando \"%s <ficheiro>\" ou \"%s <ficheiro>\".\n"
#: ../../printerdrake.pm_.c:2329
msgid ""
@@ -8260,6 +8595,11 @@ msgid ""
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
+"Também pode utilizar o interface gráfico \"xpdq\" para definir as opçőes e "
+"gerir as tarefas de impressăo.\n"
+"Se utiliza KDE tem um \"botăo pânico\", uma ícone no ecră, chamada \"PARAR a "
+"Impressora!\", que pára todas as tarefas de impressăo imediatamente quando "
+"carrega nela. Isto é util por exemplo no caso de bloqueio do papel.\n"
#: ../../printerdrake.pm_.c:2333
#, c-format
@@ -8269,6 +8609,10 @@ msgid ""
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
+"\n"
+"Os commandos \"%s\" e \"%s\" também permitem de mudar a configuraçăo de uma "
+"tarefa de impressăo particular. Basta adicionar os parametros desejados na "
+"linha de comando, ex. \"%s <ficheiro>\".\n"
#: ../../printerdrake.pm_.c:2343
#, c-format
@@ -8293,7 +8637,7 @@ msgstr "A imprimir na impressora \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8316,6 +8660,15 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"O seu dispositivo multi-funçőes foi configurado automaticamente para poder "
+"digitalizar. Pode agora digitalizar com \"scanimage\" \"scanimage -d hp:%s\" "
+"para indicar o digitalizador se tem vários) a partir da linha de commando ou "
+"com os interfaces gráficos \"xscanimage\" ou \"xsane\". Se utiliza o GIMP, "
+"também pode digitalizar escolhendo a boa entrada no menu \"Ficheiro\"/"
+"\"Capturar\". Peça também \"man scanimage\" na linha de commando para obter "
+"mais informaçőes.\n"
+"\n"
+"Năo utilize \"scannerdrake\" para este dispositivo!"
#: ../../printerdrake.pm_.c:2394
msgid ""
@@ -8329,6 +8682,15 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"A sua impressora foi configurada automaticamente para lhe dar acesso aos "
+"leitores de cartas de fotos a partir do seu PC. Pode agora aceder ŕs suas "
+"cartas de fotos com o programa gráfico \"MtoolsFM\" (Menu: \"Aplicaçőes\" -> "
+"\"Ferramentas de ficheiros\" -> \"Gestor de Ficheiros MTools\") ou com os "
+"utilitários em linha de commando \"mtools\" (escreva \"man mtools\" na linha "
+"de commando para mais informaçőes). Vai encontrar o sistema de ficheiros da "
+"carta na letra \"p:\", ou nas letras seguintes se tem mais de uma impressora "
+"HP com leitores de cartas de fotos. Em \"MToolsFM\" pode mudar de letra de "
+"dispositivo com a zona no canto direito superior da lista de ficheiros."
#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
#: ../../printerdrake.pm_.c:3170
@@ -8349,7 +8711,7 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-"Vocę de copiar a configuraçăo de impressora que fez para a fila %s para %s, "
+"Vocę de copiar a configuraçăo de impressora que fez para a fila % s para %s, "
"a sua fila actual. Todos os dados de configuraçăo (nome da impressora, "
"descriçăo, localizaçăo, tipo de ligaçăo, e configuraçăo por omissăo) săo "
"copiados, mas a tarefas em fila năo văo ser transferidas.\n"
@@ -8483,6 +8845,10 @@ msgid ""
"configuration, you will not be able to use the printer which you are "
"configuring now. How do you want to proceed?"
msgstr ""
+"Vocę vai configurar uma impressora remota. Isto necessita uma ligaçăo ŕ rede "
+"funcional, mas a sua rede ainda năo está configurada. Se continua sem "
+"configurar a rede, năo vai poder utilizar a impressora que está a configurar "
+"agora. Como deseja proceder?"
#: ../../printerdrake.pm_.c:2559
msgid "Go on without configuring the network"
@@ -8497,6 +8863,12 @@ msgid ""
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
+"A configuraçăo de rede feita durante a instalaçăo năo pôde ser iniciada "
+"agora. Por favor verifique se a rede está acessível depois de iniciar o "
+"sistema e corriga a configuraçăo com o Centro de Controlo Mandrake, na "
+"secçăo \"Rede e Internet\"/\"Ligaçăo\", e depois configure a impressora, "
+"também com o Centro de Controlo Mandrake, na secçăo \"Material\"/\"Impressora"
+"\""
#: ../../printerdrake.pm_.c:2593
msgid ""
@@ -8504,6 +8876,9 @@ msgid ""
"your configuration and your hardware. Then try to configure your remote "
"printer again."
msgstr ""
+"O acesso ŕ rede năo estava lançado e năo pôde ser iniciado. Por favor "
+"verifique a sua configuraçăo e o seu material. Tente entăo de configurar a "
+"sua impressora remota outra vez."
#: ../../printerdrake.pm_.c:2603
msgid "Restarting printing system..."
@@ -8536,6 +8911,15 @@ msgid ""
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
+"Vocę vai instalar o sistema de impressăo %s num sistema que funciona no "
+"nível de segurança % s.\n"
+"Este sistema de impressăo lança um demónio (processo permanente) que espera "
+"por tarefas de impressăo para as tratar. Este demónio também é acessível "
+"pelas máquinas remotas através da rede e é portanto uma porta de entrada "
+"possível para ataques. De facto, so um numero limitado de demónios "
+"escolhidos săo iniciados por omissăo neste nível de segurança.\n"
+"\n"
+"Deseja mesmo configurar a impressăo nesta maquina?"
#: ../../printerdrake.pm_.c:2675
msgid "Starting the printing system at boot time"
@@ -8554,6 +8938,15 @@ msgid ""
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
+"O sistema de impressăo (%s) năo vai ser lançado automáticamente quando a "
+"máquina arranca.\n"
+"\n"
+"É possível que o arranque automático tenha sido desactivado ao mudar para um "
+"nível de segurança superior pois o sistema de impressăo é uma porta de "
+"ataque possível.\n"
+"\n"
+"Deseja que o arranque automático do sistema de impressăo seja activado de "
+"novo?"
#: ../../printerdrake.pm_.c:2700 ../../printerdrake.pm_.c:2741
#: ../../printerdrake.pm_.c:2780 ../../printerdrake.pm_.c:2822
@@ -8617,7 +9010,7 @@ 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 disponivel para Star Office/OpenOffice.org/GIMP."
+"remoto disponível para Star Office/OpenOffice.org/GIMP."
#: ../../printerdrake.pm_.c:3100
msgid ""
@@ -8633,7 +9026,7 @@ msgstr ""
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Refrescar a lista das impressoras (para ver todas as impressoras CUPS "
-"remotas disponiveis)"
+"remotas disponíveis)"
#: ../../printerdrake.pm_.c:3145
msgid "Change the printing system"
@@ -8814,10 +9207,6 @@ msgstr ""
"Por favor preencha as informaçőes da Proxy para ftp\n"
"Deixe em branco se năo deseja uma Proxy para ftp"
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "O Url deve começar com 'ftp:' ou 'http:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8865,6 +9254,38 @@ msgstr "mkraid falhou (talvez as raidtools estejam em falta?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Sem partiçőes suficientes para RAID nível %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "Nível de Segurança :"
+
+#: ../../security/main.pm_.c:74
+msgid "Security Alerts:"
+msgstr "Alertas de Segurança :"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "Administrador da Segurança :"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, c-format
+msgid " (default: %s)"
+msgstr " (por omissăo : %s)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+msgid "Please wait, setting security level..."
+msgstr "Por favor aguarde, configuraçăo do nível de segurança..."
+
+#: ../../security/main.pm_.c:262
+msgid "Please wait, setting security options..."
+msgstr "Por favor aguarde, configuraçăo das opçőes de segurança..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Inicia o sistema de som ALSA (Arquitectura Avançada de Som Linux) "
@@ -8919,7 +9340,7 @@ msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
-"O HardDrake sonda o hardware, e opcionalmente\n"
+"O Harddrake sonda o hardware, e opcionalmente\n"
"configura hardware novo ou alterado."
#: ../../services.pm_.c:28
@@ -9178,7 +9599,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Partilhar ficheiros"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistema"
@@ -9272,7 +9693,7 @@ msgstr "Aproveite o melhor do Internet"
#: ../../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"
msgstr ""
@@ -9326,7 +9747,7 @@ msgstr "Interfaces do utilizador"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.0 vem com 11 interfaces utilizador que podem "
@@ -9354,7 +9775,7 @@ msgstr "Transforme a sua máquina num servidor de confiança"
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Transforme a sua máquina num poderoso servidor Linux em alguns cliques do "
@@ -9374,10 +9795,10 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
-"Este pára-fogo inclui funçoes de rede que lhe permitem de responder a todas "
+"Este pára-fogo inclui funçőes de rede que lhe permitem de responder a todas "
"a suas necessidades de segurança"
#: ../../share/advertising/10-mnf.pl_.c:12
@@ -9391,14 +9812,14 @@ msgstr "A loja oficial da MandrakeSoft"
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"A nossa linha completa de soluçőes Linux, assim como ofertas especiais, "
-"estăo disponiveis em linha na nossa e-loja :"
+"estăo disponíveis em linha na nossa e-loja :"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "Colegas estratégicos"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -9451,8 +9872,8 @@ 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 your 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 ""
"Participe nas equipas de suporte da MandrakeSoft e da Comunidade Linux em "
"linha para partilhar o que sabe e ajudar os outros sendo um Perito "
@@ -9500,11 +9921,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "A instalar os pacotes..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Por favor saía e depois utilize Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Por favor volte a entrar no %s para activar a alteraçőes"
@@ -9545,16 +9966,6 @@ msgstr "Adicionar/Suprimir utilizadores"
msgid "Add/Del Clients"
msgstr "Adicionar/Suprimir Clientes"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Ajuda"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "Disquete de Arranque"
@@ -9603,48 +10014,62 @@ msgstr "Adicionar utilizador -->"
msgid "<-- Del User"
msgstr "<-- Suprimir Utilizador"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr "Nenhuma imagem de arranque na rede criada!"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Adicionar Cliente -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Suprimir Cliente"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Configuraçăo do dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+msgid "dhcpd Server Configuration"
+msgstr "Configuraçăo do Servidor dhcpd"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "Escrever a configuraçăo"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Insira uma disquete:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Năo consegui aceder ŕ disquete !"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "A disquete pode ser removida agora"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Nenhum leitor de disquete disponível !"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "A imagem ISO Etherboot é %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Algo errou ! - Estará mkisofs instalado ?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "É preciso criar /etc/dhcpd.conf primeiro !"
@@ -9713,7 +10138,7 @@ msgstr ""
"\n"
"Bemvindo.\n"
"\n"
-"Os parametros da auto-instalaçăo estăo disponiveis nas secçőes ŕ esquerda"
+"Os parametros da auto-instalaçăo estăo disponíveis nas secçőes ŕ esquerda"
#: ../../standalone/drakautoinst_.c:239 ../../standalone/drakgw_.c:484
#: ../../standalone/scannerdrake_.c:119
@@ -9790,12 +10215,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr "Progressăo total"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9808,41 +10233,41 @@ msgstr ""
"Cuidado : Se já fez isto vai provavelmente\n"
" ter que limpar a entrada das chaves autorizadas no servidor."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr "Pode tomar um momento a criar as chaves."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr "ERRO : Năo consigo semear %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr "Nenhum pedido de senha em %s na porta %s"
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, c-format
msgid "Bad password on %s"
msgstr "Senha errada em %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr "Permissăo recusada ao transferir %s para %s"
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, c-format
msgid "Can't find %s on %s"
msgstr "Năo consigo encontrar %s em %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr "%s năo responde"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9859,64 +10284,64 @@ msgstr ""
"\n"
"sem que lhe seja pedido uma senha."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr "O servidor WebDAV distante já está a sincronizar!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr "O transferimento WebDAV falhou!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr "Nenhum CDR/DVDR no dispositivo!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr "Năo parece ser um média que se pode gravar!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr "Năo é um média que se pode apagar!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr "Vai tomar um momento para apagar o média."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr "Problema de permissőes ao aceder ao CD."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr "Nenhuma cassete em %s!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "A arquivar os ficheiros do sistema..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "Cópia de segurança dos ficheiros do disco rígido..."
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Cópia de segurança dos ficheiros do utilizador..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "A arquivar o disco rígido..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Cópia de segurança d'outros ficheiros..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr "Nenhuma mudança nos arquivos!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9927,7 +10352,7 @@ msgstr ""
"Drakbackup trabalha com %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -9936,7 +10361,7 @@ msgstr ""
"lista dos ficheiros enviada por FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -9946,7 +10371,7 @@ msgstr ""
" Problema na ligaçăo FTP : Năo foi possível enviar o seus ficheiros de "
"arquivo por FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -9956,7 +10381,7 @@ msgstr ""
"Operaçőes Drakbackup por CD:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -9966,24 +10391,24 @@ msgstr ""
"Operaçőes Drakbackup por cassete:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Erro ao enviar o correio. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Năo consigo criar o catalogo!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selecçăo de Ficheiros"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "Escolha os ficheiros e pastas e carregue em 'Adicionar'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -9991,25 +10416,25 @@ msgstr ""
"\n"
"Por favor escolha todas as opçőes que precise.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"Estas opçőes podem arquivar e restaurar todos os ficheiros na pasta /etc.\n"
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr "Arquivar os ficheiros do sistema. (pasta /etc)"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr "Utilizar arquivos por incrementaçăo (năo esmaga os antigos arquivos)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "Năo incluir os ficheiros importantes (senhas, grupos, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10017,45 +10442,45 @@ msgstr ""
"Com esta opçăo vai poder restaurar qualquer versăo\n"
" da sua pasta /etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "Năo incluir o cache do navegador"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr "Utilizar arquivos por incrementaçăo (năo esmaga os antigos arquivos)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Remover selecçăo"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Utilizadores"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "Utilizar uma ligaçăo ŕ rede para a cópia de segurança"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr "Método de Rede :"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr "Utilizar Expect para SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
@@ -10063,7 +10488,7 @@ msgstr ""
"Criar/Transferir\n"
"senhas de arquivo para SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
@@ -10071,15 +10496,19 @@ msgstr ""
" Transferir \n"
"Agora"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
-msgstr "A senhas já estăo no sitio"
-
#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
+msgstr ""
+"Outras (năo do drakbackup)\n"
+"chaves já no sítio"
+
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "Por favor escreva o nome de anfitriăo ou o IP."
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
@@ -10087,27 +10516,27 @@ msgstr ""
"Por favor escreva a pasta (ou modulo) para\n"
" meter o arquivo neste anfitriăo."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "Por favor escreva a seu nome de utilizador"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Por favor escreva a senha"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Lembrar a senha"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr "Preciso do nome de anfitriăo, do nome do utilizador e da senha !"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "Utilizar CD/DVDROM para arquivar"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
msgid ""
"Please choose your CD/DVD device\n"
"(Press Enter to propogate settings to other fields.\n"
@@ -10118,35 +10547,35 @@ msgstr ""
"Esta zona năo é necessária, é só uma ferramenta para preencher este "
"formulario.)"
-#: ../../standalone/drakbackup_.c:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Por favor escolha o tamanho do CD/DVD"
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr "Por favor verifique se usa um CD multisessăo"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "Por favor escolha se usa um média CDRW"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
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:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Apagar Agora "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr "Por favor escolha se usa um média DVDR"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr "Por favor escolha se usa um média DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10154,32 +10583,32 @@ msgstr ""
"Por favor indique o nome do dispositivo gravador de CD\n"
" ex: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr "Nenhum periférico CD definido !"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "Utilizar um leitor de cassetes para arquivar"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
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:2055
+#: ../../standalone/drakbackup_.c:2059
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:2061
+#: ../../standalone/drakbackup_.c:2065
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:2067
+#: ../../standalone/drakbackup_.c:2071
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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10187,55 +10616,55 @@ msgstr ""
"Por favor indique o tamanho máximo\n"
" permitido parra Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "Por favor escreva a pasta onde gravar:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "Utilizar quotas para os ficheiros da cópia de segurança."
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Rede"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "Disco Rígido / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Cassete"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "todas as horas"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "todos os dias"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "todas as semanas"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "todos os meses"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Utilizar um demónio"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10243,7 +10672,7 @@ msgstr ""
"Por favor escolha o intervalo de\n"
"tempo entre cada cópia de segurança"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10251,7 +10680,7 @@ msgstr ""
"Por favor escolha o média\n"
"a utilizar para a cópia de segurança."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10261,72 +10690,72 @@ msgstr ""
"\n"
"Note que por agora todos os médias 'rede' também utilizam o disco rígido."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "Enviar um resumo por correio após cada operaçăo para :"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
"Apagar os ficheiros tar no disco rígido depois de arquivar noutro média."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "O quę"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Onde"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Quando"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Mais Opçőes"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Configuraçăo de Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "Por favor escolha onde quer fazer a cópia de segurança"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "no Disco Rígido"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "Através da Rede"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "no CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "no dispositivo Cassete"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "Por favor escolha o que quer na cópia de segurança"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "Cópia de segurança do sistema"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "Arquiva os Utilizadores"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "Escolher o utilizador manualmente"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10334,7 +10763,7 @@ msgstr ""
"\n"
"Fontes de Arquivo : \n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10342,7 +10771,7 @@ msgstr ""
"\n"
"- Ficheiros do sistema :\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10350,7 +10779,7 @@ msgstr ""
"\n"
"- Ficheiros dos Utilizadores :\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10358,7 +10787,7 @@ msgstr ""
"\n"
"- Outros Ficheiros:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10367,7 +10796,7 @@ msgstr ""
"\n"
"- Grava no Disco Rígido no caminho : %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
@@ -10375,7 +10804,7 @@ msgstr ""
"\n"
"- Apagar os ficheiros tar no disco rígido depois de arquivar.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -10383,20 +10812,20 @@ msgstr ""
"\n"
"- Grava no CD"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr "no dispositivo : %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr " (multi-sessăo)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -10405,12 +10834,12 @@ msgstr ""
"\n"
"- Grava na cassete no dispositivo : %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tApaga=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -10419,7 +10848,7 @@ msgstr ""
"\n"
"- Grava por %s no anfitriăo : %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10428,7 +10857,7 @@ msgstr ""
"\t\t nome do utilizador : %s\n"
"\t\t no caminho : %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -10436,19 +10865,19 @@ msgstr ""
"\n"
"- Opçőes:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tNăo incluir os ficheiros do sistema\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\tOs arquivos utilizam tar e bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\tOs arquivos utilizam tar e gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -10457,39 +10886,39 @@ msgstr ""
"\n"
"- O demónio (%s) inclui :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-Disco Rígido.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-CDROM.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-Cassete \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-Rede por FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-Rede por SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-Rede por rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-Rede por webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
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:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -10497,7 +10926,7 @@ msgstr ""
"Lista dos dados a restaurar :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10505,103 +10934,103 @@ msgstr ""
"Lista dos dados estragados :\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "Por favor desligue ou suprima-o na próxima vez."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "Os ficheiros arquivados estăo estragados"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr " Todos os dados seleccionados foram "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " Bem Restaurada em %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Restaurar Configuraçăo "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "OK para restaurar os outros ficheiros."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
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:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "Arquivar os ficheiros do sistema antes de:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "Por favor a data a restaurar"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "Utilizar o disco rígido para fazer a cópia de segurança"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr "Por favor escolha a pasta onde gravar:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Ligaçăo FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Ligaçăo Segura"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Restaurar a partir do Disco Rígido."
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
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:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "Escolha outro média de onde restaurar"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "Outro Média"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Restaurar o sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Restaurar os Utilizadores"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Restaurar os Outros"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr "escolha o caminho onde restaurar (no lugar de /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
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:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "Apagar as pastas do usuários antes de restaurar."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
@@ -10609,7 +11038,7 @@ msgstr ""
"Restaurar a Zona do\n"
"Catalogo Seleccionada"
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
@@ -10617,7 +11046,7 @@ msgstr ""
"Restaurar os Ficheiros\n"
"Seleccionados"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
@@ -10625,12 +11054,12 @@ msgstr ""
"Mudar o Caminho\n"
"de Restauraçăo"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr "Guardar o ficheiros năo encontrados em %s"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
@@ -10639,16 +11068,16 @@ msgstr ""
"Insira o CD cujo nome é %s\n"
" no leitor de CD montado em /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
msgstr "Restaurar a partir do CD"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr "Năo é o bom nome de CD. O disco chama-se %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
@@ -10657,102 +11086,102 @@ msgstr ""
"Insira a cassete cujo nome é %s\n"
" no dispositivo leitor %s"
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
msgstr "Restaurar a partir duma Cassete"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr "Năo é o bom nome de cassete. A cassete chama-se %s."
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
msgstr "Restaurar pela Rede"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr "Restaurar Pelo Protocolo de Rede : %s"
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
msgstr "Nome de Anfitriăo"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr "Caminho do Anfitriăo ou Modulo"
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
msgstr "Senha requisa"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
msgstr "Nome de utilizador requiso"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
msgstr "Anfitriăo requiso"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr "Caminho ou Modulo requisos"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr "Ficheiros Restaurados..."
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
msgstr "A restauraçăo falhou"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "Restaurar todos os arquivos"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Restauraçăo Personalizada"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr "CD no sitio - continue."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr "Navegar para um novo sitio de restauraçăo."
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
msgstr "Restaurar a partir do Catálogo"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
msgstr "Progressăo da Restauraçăo"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "Anterior"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Gravar"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "Construir a cópia de segurança"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restaurar"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
@@ -10762,7 +11191,7 @@ msgstr ""
" O seu correio de resumo năo foi enviado.\n"
" Por favor configure o envio do correio"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -10770,7 +11199,7 @@ msgstr ""
"Os seguintes pacotes precisam de ser instalados:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -10778,19 +11207,19 @@ msgstr ""
"Erro ao enviar os ficheiros por FTP.\n"
" Por favor veja a sua configuraçăo FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "Por favor escolha os dados a restaurar..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "Por favor escolha o média para a cópia de segurança..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "Por favor escolha os dados que quer na cópia de segurança..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -10798,60 +11227,60 @@ msgstr ""
"Nenhum ficheiro de configuraçăo encontrado \n"
"Por favor carregue em Assistente ou Avançado."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "Em Desenvolvimento ... por favor aguarde."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "Arquivar os ficheiros do sistema"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "Cópia de segurança dos ficheiros dos utilizadores"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "Cópia de segurança dos outros ficheiros"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "Progressăo Total"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "ficheiros a serem enviados por FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "A enviar os ficheiros..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
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:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "Ver a configuraçăo da cópia de segurança"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Assistente de Configuraçăo"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Configuraçăo Avançada"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "Arquivar agora"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10911,7 +11340,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10920,12 +11349,12 @@ msgid ""
"\n"
msgstr ""
"\n"
-" Alguns erros no envio do correio săo devidos a \n"
+" Alguns erros no envio do correisobrepor:o săo devidos a \n"
" uma má configuraçăo do postfix. Para resolver isto deve\n"
" definir meu_nome_de_anfitriăo ou meu_domínio em /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10965,8 +11394,45 @@ msgid ""
"\n"
"\n"
msgstr ""
+"descriçăo das opçőes :\n"
+"\n"
+" - Arquivar ficheiros sistemas :\n"
+" \n"
+"\tEsta opçăo permite-lhe de arquivar a pasta /etc,\n"
+"\tque contem todos os ficheiros de configuraçăo. Por\n"
+"\tfavor seja atento durante a restauraçăo a năo\n"
+"\tsobrepor :\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab\n"
+"\n"
+" - Arquivar ficheiros utilizador : \n"
+"\n"
+"\tEsta opçăo permite-lhe de seleccionar todos os\n"
+"\tutilizadores que deseja arquivar \n"
+"\tPara economizar o espaço no disco, é recomendado\n"
+"\tde năo incluir a pasta de cache dos navegadores web.\n"
+"\n"
+" - Arquivar os outros ficheiros : \n"
+"\n"
+"\tEsta opçăo permite-lhe de arquivar mais dados.\n"
+"\tCom os outros modos năo é possível por enquanto\n"
+"\tde arquivar por incrementaçăo.\t\t\n"
+" \n"
+" - Arquivar por incrementaçăo :\n"
+"\n"
+"\tArquivar por incrementaçăo é a opçăo mais\n"
+"\tpoderosa para arquivar. Permite-lhe de arquivar\n"
+"\ttodos os dados na primeira vez, e so as mudanças\n"
+"\tdepois.\n"
+"\tVai poder depois, na restauraçăo, escolher de\n"
+"\trestaurar os dados a uma data indicada.\n"
+"\tSe năo escolhe esta opçăo, todos os arquivos\n"
+"\tantigos săo apagados antes de cada operaçăo. \n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11017,20 +11483,20 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" actualizaçőes 2002 MandrakeSoft por Stew Benedict <sbenedict\\@mandrakesoft."
"com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11047,7 +11513,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11122,7 +11588,7 @@ msgstr ""
" \n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11140,7 +11606,7 @@ msgstr ""
"rígido antes de enviar para o servidor.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11162,7 +11628,7 @@ msgstr ""
"dados. É importante de ser cuidadoso e de năo modificar \n"
"os ficheiros de arquivo ŕ măo.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11289,8 +11755,8 @@ msgid "Synchronization tool"
msgstr "Ferramenta de sincronizaçăo"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Ferramentas exteriores"
@@ -11355,7 +11821,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -11364,27 +11830,28 @@ msgstr ""
"\n"
"\n"
"Para comunicar um erro, carregue no botăo erro.\n"
-"Isto vai abrir uma janela de navegador web em https://www.bugzilla.com\n"
+"Isto vai abrir uma janela de navegador web em https://drakbug.mandrakesoft."
+"com\n"
"onde vai encontrar um formulario a preencher. As informaçőes indicadas "
"acima \n"
"văo ser transferidas a este servidor\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Detalhes"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Năo instalado"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "a ligar-se ao assistente Bugzilla ..."
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
-msgstr "Nenhum navegador disponivel! Instale um por favor"
+msgstr "Nenhum navegador disponível! Instale um por favor"
#: ../../standalone/drakconnect_.c:79
#, c-format
@@ -11483,10 +11950,6 @@ msgstr "Assistente..."
msgid "Apply"
msgstr "Aplicar"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor aguarde... A aplicar a configuraçăo"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Ligado"
@@ -11607,7 +12070,7 @@ msgstr "Nome do Módulo"
msgid "Size"
msgstr "Tamanho"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -11672,12 +12135,12 @@ msgstr "Resultado"
msgid "Build the disk"
msgstr "Criar a disquete"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Verifique que há um média no dispositivo %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -11686,12 +12149,12 @@ msgstr ""
"Năo há nenhum média ou ele está protegido em escritura no dispositivo %s.\n"
"Por favor meta algum."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Incapaz de forcar : %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12179,47 +12642,47 @@ msgstr ""
"\n"
"Clique em Configurar para iniciar o assistente de configuraçăo."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "group"
msgstr "grupo"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr "caminho"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
msgstr "permissőes"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "user"
msgstr "utilizador"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr "Subir"
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr "apagar"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr "Editar"
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
msgid "Down"
msgstr "Descer"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
msgstr "Adicionar uma regra"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr "escolha o ficheiro de permissőes a ver/editar"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
@@ -12230,59 +12693,59 @@ msgstr ""
"Também pode editar as suas próprias regras que văo sobrepor as regras por "
"omissăo."
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
msgstr "Adicionar uma nova regra ao fim"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr "Editar a regra actual"
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr "Subir a regra seleccionada de um nível"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr "Descer a regra actual de um nível"
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
msgstr "Apagar a regra selecionada"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr "navegar"
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
msgstr "Utilizador actual"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
msgstr "Permissőes"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr "Caminho"
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
msgid "Property"
msgstr "Propriedades"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr "sticky-bit"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr "Definir UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr "Definir GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
@@ -12290,35 +12753,35 @@ msgstr ""
"Usado para as pastas :\n"
" so o proprietário da pasta ou dos ficheiros nela os pode apagar"
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr "Usar o id do proprietário para a execuçăo"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr "Usar o id do grupo para a execuçăo"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr "quando marcado, o utilizador e o grupo năo văo ser mudados"
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
msgstr "Selecçăo do caminho"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
msgid "user :"
msgstr "utilizador :"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
msgid "group :"
msgstr "grupo :"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
msgstr "Nenhuma Placa de Som detectada!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12338,123 +12801,145 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr "o pacote ImageMagick é necessário para funcionar bem"
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
msgstr "primeiro passo de criaçăo"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
msgstr "resoluçăo final"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
msgstr "escolha um ficheiro imagem"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
msgid "Theme name"
msgstr "Nome do tema"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr "criar uma imagem de arranque passo 2"
-
-#: ../../standalone/draksplash_.c:82
-msgid "go to lilosplash configuration"
-msgstr "ir ŕ configuraçăo do lilosplash"
-
-#: ../../standalone/draksplash_.c:83
-msgid "quit"
-msgstr "sair"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "Navegar"
-#: ../../standalone/draksplash_.c:84
-msgid "save theme"
-msgstr "gravar tema"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
msgstr "Configurar a imagem de início"
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr "posiçăo horizontal da caixa de texto em numero de letras"
-
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
-msgstr "posiçăo vertical da caixa de texto em numero de letras"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
+msgstr ""
+"posiçăo horizontal da caixa\n"
+"de texto em numero de letras"
#: ../../standalone/draksplash_.c:101
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
+msgstr ""
+"posiçăo vertical da caixa\n"
+"de texto em numero de letras"
+
+#: ../../standalone/draksplash_.c:102
msgid "text width"
msgstr "largura do texto"
-#: ../../standalone/draksplash_.c:102
+#: ../../standalone/draksplash_.c:103
msgid "text box height"
msgstr "altura da caixa de texto"
-#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr "a posiçăo horizontal do canto superior esquerdo da barra"
-
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
-msgstr "a posiçăo vertical do canto superior esquerdo da barra"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
+msgstr ""
+"a posiçăo horizontal do canto\n"
+"superior esquerdo da barra"
#: ../../standalone/draksplash_.c:105
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
+msgstr ""
+"a posiçăo vertical do canto\n"
+"superior esquerdo da barra"
+
+#: ../../standalone/draksplash_.c:106
msgid "the width of the progress bar"
msgstr "a largura da barra de progressăo"
-#: ../../standalone/draksplash_.c:106
+#: ../../standalone/draksplash_.c:107
msgid "the heigth of the progress bar"
msgstr "a altura da barra de progressăo"
-#: ../../standalone/draksplash_.c:107
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr "a cor da barra de progressăo"
-#: ../../standalone/draksplash_.c:119
-msgid "go back"
-msgstr "voltar"
-
-#: ../../standalone/draksplash_.c:120
-msgid "preview"
+#: ../../standalone/draksplash_.c:121
+msgid "Preview"
msgstr "pré-visualizaçăo"
-#: ../../standalone/draksplash_.c:121
-msgid "choose color"
-msgstr "escolha a cor"
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "gravar tema"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "escolha a cor"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr "Mostrar o logo na linha de commando"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr "Năo mostrar as mensagens do núcleo por omissăo"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr "Este tema ainda năo tem nenhuma imagem de arranque em %s !"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr "a gravar o tema de arranque..."
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
msgstr "Escolha da cor da Barra de Progressăo"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr "Vocę deve escolher um ficheiro imagem primeiro!"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
msgstr "A criar a pré-visualizaçăo"
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -12608,6 +13093,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"uso: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "uso: keyboarddrake [--expert] [teclado]\n"
@@ -12637,11 +13130,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Năo é possível iniciar actualizaçăo directa!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
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:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -12901,8 +13394,8 @@ msgid ""
"You can launch printerdrake from the Mandrake Control Center in Hardware "
"section."
msgstr ""
-"Este digitalizador %s deve ser configurado por PrinterDrake.\n"
-"Pode lançar PrinterDrake a partir do Centro de Controlo Mandrake na secçăo "
+"Este digitalizador %s deve ser configurado por Printerdrake.\n"
+"Pode lançar Printerdrake a partir do Centro de Controlo Mandrake na secçăo "
"material."
#: ../../standalone/scannerdrake_.c:120
@@ -12916,23 +13409,18 @@ msgstr ""
"Pode agora digitalizar documentos com XSane em Multimédia/Gráficos no menu "
"das aplicaçőes."
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, 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:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
-msgstr ""
-"\n"
-"Alguns dispositivos na classe %s foram adicionados :\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "Alguns dispositivos foram adicionados :\n"
#: ../../steps.pm_.c:14
msgid "Choose your language"
-msgstr "Escolha a seu idioma"
+msgstr "Escolha o seu idioma"
#: ../../steps.pm_.c:15
msgid "Select installation class"
@@ -13002,7 +13490,7 @@ msgstr "Instalar os pacotes mais recentes para o sistema"
msgid "Exit install"
msgstr "Sair da instalaçăo"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -13252,3 +13740,46 @@ msgstr "Multimédia - Gravaçăo de CDs"
#: ../../share/compssUsers:999
msgid "Scientific Workstation"
msgstr "Estaçăo de Trabalho Científica"
+
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "Para comunicar um erro, carregue no botăo erro.\n"
+#~ "Isto vai abrir uma janela de navegador web em https://www.bugzilla.com\n"
+#~ "onde vai encontrar um formulario a preencher. As informaçőes indicadas "
+#~ "acima \n"
+#~ "văo ser transferidas a este servidor\n"
+#~ "\n"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "criar uma imagem de arranque passo 2"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "ir ŕ configuraçăo do lilosplash"
+
+#~ msgid "Go back"
+#~ msgstr "voltar"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "Năo há nenhum piloto alternativo OSS/ALSA conhecido para a sua placa de "
+#~ "som (%s)"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "O Proxy deve ser ftp://..."
+
+#~ msgid "quit"
+#~ msgstr "sair"
diff --git a/perl-install/share/po/pt_BR.po b/perl-install/share/po/pt_BR.po
index 144b9721b..165274a93 100644
--- a/perl-install/share/po/pt_BR.po
+++ b/perl-install/share/po/pt_BR.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -91,24 +91,24 @@ msgstr "Configurar todas as cabeças independentemente"
msgid "Use Xinerama extension"
msgstr "Usar extensăo Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, fuzzy, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurar apenas placa \"%s\" (%s)"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s com aceleraçăo hardware 3D EXPERIMENTAL"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -147,12 +147,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (installation display driver)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalizada"
@@ -173,32 +173,32 @@ msgstr "Resoluçăo"
msgid "Test"
msgstr ""
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Sair"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -296,25 +296,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Cancelar"
@@ -391,11 +391,11 @@ msgstr "Server XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X ao iniciar"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -404,7 +404,7 @@ msgstr ""
"Eu posso fazer seu computador automaticamento iniciar no X após a\n"
"a inicializaçăo. Vocę gostaria de iniciar o X quando reiniciar?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -416,7 +416,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
#, fuzzy
msgid "What norm is your TV using?"
msgstr "De que tipo é sua conexăo ISDN?"
@@ -489,7 +489,7 @@ msgstr "Compacto"
msgid "compact"
msgstr "Compacto"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Modo de Vídeo"
@@ -497,17 +497,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Senha"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Senha (de novo)"
@@ -541,14 +541,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:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Favor tentar novamente"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "As senhas năo conferem"
@@ -585,7 +585,7 @@ msgid ""
"On which drive are you booting?"
msgstr ""
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -593,155 +593,155 @@ msgstr ""
"Aqui estăo as entradas diferentes.\n"
"Vocę pode adicionar mais ou modificar as existentes."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Adicionar"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Pronto"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modificar"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Outros SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Outros SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Outros SO (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Image"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Read-write"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Table"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Unsafe"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Rótulo"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Default"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Tamanho do Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Sem vídeo"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Remover entrada"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Năo é permitido rótulo vazio"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Vocę deve especificar uma imagem de kernel"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Vocę deve especificar uma partiçăo root"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Esse rótulo já está sendo utilizado"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interfaces %s %s encontradas"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Vocę tem alguma outra?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Vocę tem alguma interface %s?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Năo"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Sim"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Ver informaçăo do hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalando driver para placa %s %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(módulo %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -752,17 +752,17 @@ msgstr ""
"As opçőes estăo no formato ``nome=valor nome2=valor2 ...''\n"
"Para instância, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opçőes do módulo:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Qual driver %s eu deveria tentar?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -779,15 +779,15 @@ msgstr ""
"máquina as informaçőes que ele precisa? Ocasionalmente, isso poderá travar\n"
"o computador, mas năo deve causar nenhum dano."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Auto detectar"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Especificar opçőes"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -796,65 +796,65 @@ msgstr ""
"Falha carregando módulo %s.\n"
"Vocę quer tentar novamente com outros parâmentros?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "Acesso a programas X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "Acesso a ferramentas rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "Permitir \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "Acesso a arquivos administrativos"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "Acesso a ferramentas rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "Acesso a ferramentas rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(já adicionado %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Essa senha é muito simples"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Favor dar um nome de usuário"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
#, fuzzy
msgid "The user name is too long"
msgstr "Esse usuário já foi adicionado"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Esse usuário já foi adicionado"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Adicionar usuário"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -863,32 +863,32 @@ msgstr ""
"Entre com o usuário\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Aceitar usuário"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nome real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Nome do usuário"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ícone"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -896,19 +896,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:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Escolha o usuário:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Escolha o gerenciador de janelas para ele:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -916,35 +916,35 @@ msgid ""
msgstr ""
"Vocę pode escolher outros idiomas que estarăo disponíveis após a instalaçăo"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Tudo"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permite todos os usuários"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Sem compartilhamento"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pacote obrigatório %s faltando"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -953,11 +953,11 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Carregar Userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -965,32 +965,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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Bem-vindo ŕ Crackers"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Pobre"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Padrăo"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Alto"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
#, fuzzy
msgid "Higher"
msgstr "Alto"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranóico"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1002,7 @@ msgstr ""
"outros\n"
"ou ŕ internet. Năo existe acesso por senha."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1010,7 +1010,7 @@ msgstr ""
"As senhas agora estăo ativadas, mas o uso como computador de rede ainda năo "
"é recomendado."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
#, fuzzy
msgid ""
"This is the standard security recommended for a computer that will be used "
@@ -1020,13 +1020,13 @@ msgstr ""
"para se conectar ŕ Internet como um cliente. Agora existe checagens de "
"segurança. "
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
#, fuzzy
msgid ""
"With this security level, the use of this system as a server becomes "
@@ -1042,7 +1042,7 @@ msgstr ""
"servidor\n"
"que aceita conexăo de muitos clientes. "
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1050,36 +1050,36 @@ 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:1094
+#: ../../any.pm_.c:1095
#, fuzzy
msgid "DrakSec Basic Options"
msgstr "Opçőes"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
#, fuzzy
msgid "Please choose the desired security level"
msgstr "Escolha nível de segurança"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Nível de segurança"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Use lbsafe para servidores"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1092,7 +1092,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1117,60 +1117,60 @@ 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:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Menu Iniciar"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, 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:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "ajuda ainda năo implementada.\n"
@@ -1222,106 +1222,106 @@ msgstr "Modo lilo/grub"
msgid "Yaboot mode"
msgstr "Modo yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
#, fuzzy
msgid "Install themes"
msgstr "Instalar sistema"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Criar uma nova partiçăo"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Erro"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, fuzzy, c-format
msgid "Copy %s to %s"
msgstr "Copiando %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr ""
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, fuzzy, c-format
msgid "Write %s"
msgstr "XFree %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
#, fuzzy
msgid "Notice"
msgstr "Sem vídeo"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
#, fuzzy
msgid "Theme installation failed!"
msgstr "Selecione a classe da instalaçăo"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1330,22 +1330,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:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configurar"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
#, fuzzy
msgid "Splash selection"
msgstr "Salvar seleçăo de pacotes"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr ""
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1354,44 +1354,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Modo do sistema"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Executar o sistema X-Window na inicializaçăo"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Năo, eu năo quero autologin"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Sim, eu quero autologin com esse (usuário, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "năo foi possívek abrir /etc/inittb para leitura: %s"
@@ -1488,54 +1488,62 @@ msgstr "Áustria"
msgid "United States"
msgstr "Estados Unidos"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
#, fuzzy
msgid "New"
msgstr "novo"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montar"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "servidor"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
+#: ../../diskdrake/dav.pm_.c:85
#, fuzzy
msgid "Please enter the WebDAV server URL"
msgstr "Favor testar o mouse"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
#, fuzzy
msgid "The URL must begin with http:// or https://"
msgstr "O proxy deve ser http://..."
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
#, fuzzy
msgid "Server: "
msgstr "servidor"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../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:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opçőes: %s"
@@ -1624,7 +1632,7 @@ msgstr "Vazio"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Outro"
@@ -1768,7 +1776,7 @@ msgstr ""
"O backup da tabela de partiçăo năo tem o mesmo tamanho\n"
"Ainda continuar?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Aviso"
@@ -2324,7 +2332,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:3529
#, fuzzy
msgid "Username"
msgstr "Nome do usuário"
@@ -2338,23 +2346,23 @@ msgstr "Domínio NIS"
msgid "Search servers"
msgstr "Servidores de busca"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formataçăo de %s falhou"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "erro desmontando %s: %s"
@@ -2441,46 +2449,110 @@ msgstr "Nada a fazer"
msgid "Error opening %s for writing: %s"
msgstr "Erro abrindo %s para gravaçăo: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configuraçăo LAN"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Driver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+#, fuzzy
+msgid "Help"
+msgstr "/Aj_uda"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Por favor aguarde... Aplicando a configuraçăo"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Por favor aguarde"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2607,7 +2679,8 @@ msgid "/_Quit"
msgstr "Sair"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/Aj_uda"
@@ -2627,76 +2700,77 @@ msgid ""
msgstr ""
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Reportar erro"
+
+#: ../../harddrake/ui.pm_.c:73
#, fuzzy
msgid "/_About..."
msgstr "/Ajuda/_Sobre..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr ""
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
#, fuzzy
msgid "Author:"
msgstr "Auto detectar"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
#, fuzzy
msgid "Harddrake2 version "
msgstr "Detecçăo de discos rigidos"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
#, fuzzy
msgid "Detected hardware"
msgstr "Ver informaçăo do hardware"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
#, fuzzy
msgid "Information"
msgstr "Mostrar informaçăo"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
#, fuzzy
msgid "Configure module"
msgstr "Configurar mouse"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
#, fuzzy
msgid "Detection in progress"
msgstr "detectado na porta %s"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Por favor aguarde"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, fuzzy, c-format
msgid "Running \"%s\" ..."
msgstr "Lendo banco de dados de drivers do CUPS"
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
#, fuzzy
msgid "secondary"
msgstr "%d segundos"
@@ -4663,7 +4737,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4688,7 +4762,7 @@ msgstr ""
"\n"
"Vocę realmente quer instalar esses servidores?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4697,20 +4771,20 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Năo pode usar broadcast sem domínio NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Insira um disquete FAT formatado no drive %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Esse disquete năo está formatado como FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4718,12 +4792,12 @@ msgstr ""
"Para usar a seleçăo salva de pacotes, entre na instalaçăo com ``linux "
"defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Erro lendo arquivo %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4968,7 +5042,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Bem-vindo ŕ %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nenhum drive de disquete disponível"
@@ -4999,11 +5073,11 @@ 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:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Seleçăo individual de pacotes"
@@ -5081,7 +5155,7 @@ msgstr "Mostra automaticamente os pacotes selecionados"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalar"
@@ -5104,7 +5178,7 @@ msgstr "Sair da instalaçăo"
msgid "Choose the packages you want to install"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Instalando"
@@ -5131,17 +5205,17 @@ msgid "Installing package %s"
msgstr "Instalando pacote %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Aceitar"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Recusar"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5158,16 +5232,16 @@ msgstr ""
"Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Continuar mesmo assim?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Houve um erro ordenando os pacotes:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Houve um erro instalando os pacotes:"
@@ -5292,7 +5366,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5410,7 +5484,7 @@ msgstr ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5487,7 +5561,7 @@ msgid "Are you sure you refuse the licence?"
msgstr ""
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Teclado"
@@ -5700,29 +5774,29 @@ msgstr "Insira um disquete no drive %s"
msgid "Selected size is larger than available space"
msgstr "O tamanho escolhido é maior que o espaço disponível"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5732,16 +5806,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:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom rotualdo \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Preparando instalaçăo"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5750,21 +5824,21 @@ msgstr ""
"Instalando pacote %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuraçăo pós-instalaçăo"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, 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:826
+#: ../../install_steps_interactive.pm_.c:827
#, 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:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5838,7 +5912,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5850,166 +5924,166 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
#, 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:905
+#: ../../install_steps_interactive.pm_.c:906
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:914
+#: ../../install_steps_interactive.pm_.c:915
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:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Qual é o seu fuso horário?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid "Hardware clock set to GMT"
msgstr "O seu relógio do hardware está configurado como GMT?"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
#, fuzzy
msgid "NTP Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Sevidor CUPS remoto"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Nenhuma impressora"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
#, fuzzy
msgid "Do you have an ISA sound card?"
msgstr "Vocę tem alguma outra?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumário"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Fuso horário"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Placa ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Placa de som"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Placa de TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
#, fuzzy
msgid "NIS"
msgstr "Usar NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
#, fuzzy
msgid "Windows Domain"
msgstr "Domínio NIS"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
#, fuzzy
msgid "Local files"
msgstr "Impressora local"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Especificar senha do root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Nenhuma senha"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, 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:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
#, fuzzy
msgid "Authentication LDAP"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
#, fuzzy
msgid "LDAP Server"
msgstr "servidor"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
#, fuzzy
msgid "Authentication NIS"
msgstr "Autenticaçăo NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domínio NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -6025,21 +6099,21 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
#, fuzzy
msgid "Authentication Windows Domain"
msgstr "Autenticaçăo?"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
#, fuzzy
msgid "Domain Admin User Name"
msgstr "Nome do domínio"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -6071,19 +6145,19 @@ msgstr ""
"disquete\n"
"no drive e aperte em \"OK\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primeiro drive de disquete"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Segundo drive de disquete"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Pular"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -6110,7 +6184,7 @@ msgstr ""
"com danos severos. Vocę quer criar um disco de inicializaçăo?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -6119,30 +6193,30 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "Desculpe, nenhum drive de disquete disponível"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
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:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, fuzzy, c-format
msgid "Insert a floppy in %s"
msgstr "Insira um disquete no drive %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Criando disco de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Preparando gerenciador de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -6150,11 +6224,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Vocę quer usar o aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -6162,18 +6236,18 @@ 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:1242
+#: ../../install_steps_interactive.pm_.c:1243
#, fuzzy
msgid "Installing bootloader"
msgstr "Instalar gerenciador de inicializaçăo"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
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:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -6190,17 +6264,17 @@ msgstr ""
" 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:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../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:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Criando disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -6210,7 +6284,7 @@ msgstr ""
"\n"
"Vocę realmente quer sair agora?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, fuzzy, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -6238,15 +6312,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:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Criar disquete de auto instalaçăo"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -6260,15 +6334,15 @@ msgstr ""
"\n"
"Vocę pode preferir repetir a instalaçăo.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automático"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "Repetir"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Salvar seleçăo de pacotes"
@@ -6306,14 +6380,14 @@ msgstr "Avançado"
msgid "Basic"
msgstr ""
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
#, fuzzy
msgid "Next"
msgstr "Próximo ->"
@@ -6768,7 +6842,7 @@ msgstr ""
msgid "Circular mounts %s\n"
msgstr "Monts circulares %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "Remover os volumes lógicos primeiro\n"
@@ -6906,15 +6980,15 @@ msgstr "nenhum"
msgid "No mouse"
msgstr "Nenhum Mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Favor testar o mouse"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Para ativar o mouse,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MOVA SUA RODA!"
@@ -6950,11 +7024,11 @@ msgstr "Colapsar Árvore"
msgid "Toggle between flat and group sorted"
msgstr "Mudar entre organizaçăo plana ou em grupo"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectar ŕ Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6964,23 +7038,19 @@ msgstr ""
"Mas algumas conexőes usam pptp, umas poucas usam dhcp.\n"
"Se vocę năo sabe, escolha 'usar pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "usar dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "usar pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "usar pptp"
@@ -7083,7 +7153,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:362
msgid "Configuring network"
msgstr "Configurando rede"
@@ -7099,15 +7169,15 @@ 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:367
msgid "Host name"
msgstr "Host name (nome do host)"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Auxiliar de Configuraçăo da Rede"
@@ -7147,8 +7217,8 @@ msgid "Old configuration (isdn4net)"
msgstr "Configuraçăo de Firewall detectado!"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configuraçăo ISDN"
@@ -7188,23 +7258,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Qual protocolo vocę quer usar?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Qual tipo de placa vocę tem?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Eu năo sei"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -7217,19 +7292,19 @@ msgstr ""
"\n"
"Se vocę tiver uma placa PCMCIA, vocę tem que saber o irq e io de sua placa.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abortar"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continuar"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "Qual é a sua placa ISDN?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -7237,7 +7312,7 @@ msgstr ""
"Eu detectei um placa ISDN PCI, mas năo sei qual é o tipo. Favor selecionar "
"uma placa PCI na próxima tela."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nenhuma placa ISDN PCI encontrada. Favor selecionar uma na próxima tela"
@@ -7290,7 +7365,7 @@ msgstr "Primeiro Servidor DNS (opcional)"
msgid "Second DNS Server (optional)"
msgstr "Segundo Servidor DNS (opcional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -7298,7 +7373,7 @@ msgstr ""
"\n"
"Vocę pode se disconectar ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -7306,11 +7381,11 @@ msgstr ""
"\n"
"Vocę pode reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Vocę está conectado ŕ Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -7318,35 +7393,35 @@ msgstr ""
"\n"
"Vocę pode se conectar ŕ Internet ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Vocę năo está conectado ŕ Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Conectar"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Desconectar"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
#, fuzzy
msgid "Configure the connection"
msgstr "Configurar rede"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Conexăo e configuraçăo da Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, fuzzy, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
"\n"
"Vocę pode se disconectar ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, fuzzy, c-format
msgid ""
"\n"
@@ -7360,12 +7435,12 @@ msgstr ""
"\n"
"Vocę pode se disconectar ou reconfigurar sua conexăo."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraçăo da Rede"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -7377,7 +7452,7 @@ msgstr ""
"Clique em Ok para manter sua configuraçăo, ou cancelar para reconfigurar sua "
"conexăo de Internet & Rede.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -7389,99 +7464,99 @@ msgstr ""
"Estamos para configurar sua conexăo de rede/internet.\n"
"Se vocę năo quiser usar a auto detecçăo, desmarque a opçăo.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "Escolha o perfil a configurar:"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr "Usar auto detecçăo"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detectando dispositivos..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "Conexăo normal via modem"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectado na porta %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "Conexăo ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "detectado %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, fuzzy
msgid "ADSL connection"
msgstr "Coneçăo LAN"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectado na interface %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Conexăo via cabo"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
#, fuzzy
msgid "cable connection detected"
msgstr "Conexăo via cabo"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Coneçăo LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "placa(s) ethernet detectada(s)"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
#, fuzzy
msgid "Choose the connection you want to configure"
msgstr "Escolha a ferramente que vocę quer usar"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
#, fuzzy
msgid "Internet connection"
msgstr "Compartilhamento da Conexăo ŕ Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "Vocę quer iniciar sua conexăo ao iniciar?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuraçăo da Rede"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr ""
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7492,7 +7567,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7502,7 +7577,7 @@ msgstr ""
"\n"
"A configuraçăo agora será aplicada no seu sistema.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7510,14 +7585,14 @@ msgstr ""
"Quando isso terminar, nós recomendados vocę a reiniciar o seu\n"
"ambiente X para evitar o problema da mudança do nome do host."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7528,7 +7603,7 @@ msgstr ""
"Apenas aceite para manter esse dispositivo configurado.\n"
"A modificaçăo dos campos abaixo irá sobrepor essa configuraçăo."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7538,43 +7613,43 @@ msgstr ""
"Cada item deve ser entrando como endereço IP pontilhado-decimal\n"
"(por exemplo, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Configurando dispositivo de rede %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Endereço IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Netmask"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP Automático"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
#, fuzzy
msgid "Start at boot"
msgstr "Iniciado na inicializaçăo"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7586,42 +7661,53 @@ 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:368
msgid "DNS server"
msgstr "Servidor DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Dispositivo de gateway"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server 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:380
+#, fuzzy
+msgid "Gateway 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:394
msgid "Proxies configuration"
msgstr "Configuraçăo de proxies"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "O proxy deve ser http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "O proxy deve ser ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+#, fuzzy
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "O proxy deve ser http://..."
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -9021,7 +9107,7 @@ msgstr "Fechando (desconectando) a rede"
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -9532,11 +9618,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "O proxy deve ser http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9586,6 +9667,43 @@ msgstr "mkraid falhou (talvez o raidtools esteja faltando)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Sem partiçőes suficientes para RAID nível %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Nível de segurança"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Nível de segurança"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Opçőes da impressora lpd Remota"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Default)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Opçőes do nível de segurança"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Por favor aguarde, preparando instalaçăo"
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Iniciar o sistema de som ALSA (Arquitetura Avançada de Som Linux)"
@@ -9902,7 +10020,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr ""
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
#, fuzzy
msgid "System"
msgstr "Modo do sistema"
@@ -9998,7 +10116,7 @@ msgstr "Conectar ŕ Internet"
#: ../../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"
msgstr ""
@@ -10045,7 +10163,7 @@ msgstr "Interface de rede"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -10070,7 +10188,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
@@ -10086,7 +10204,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -10101,7 +10219,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -10150,8 +10268,8 @@ 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 your 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
@@ -10188,12 +10306,12 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalando pacote %s"
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
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:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Favor relogar em %s para ativar as mudanças"
@@ -10241,17 +10359,6 @@ msgstr "Adicionar usuário"
msgid "Add/Del Clients"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-#, fuzzy
-msgid "Help"
-msgstr "/Aj_uda"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -10304,53 +10411,68 @@ msgstr "Adicionar usuário"
msgid "<-- Del User"
msgstr ""
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr ""
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
#, fuzzy
msgid "<-- Del Client"
msgstr "Cliente DHCP"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
#, fuzzy
msgid "dhcpd Config..."
msgstr "Configurando..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configuraçăo LAN"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
#, fuzzy
msgid "Write Config"
msgstr "reconfigurar"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
#, fuzzy
msgid "Please insert floppy disk:"
msgstr "Insira um disquete no drive %s"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr ""
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr ""
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
#, fuzzy
msgid "No floppy drive available!"
msgstr "Nenhum drive de disquete disponível"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -10474,13 +10596,13 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
#, fuzzy
msgid "Total progess"
msgstr "Testar portas"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10489,41 +10611,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Nenhuma senha"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Năo foi possível abrir %s: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10534,68 +10656,68 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
#, fuzzy
msgid "Hard Disk Backup files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
#, fuzzy
msgid "Backup User files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
#, fuzzy
msgid "Backup Other files..."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
#, fuzzy
msgid "No changes to backup!"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10603,923 +10725,925 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
#, fuzzy
msgid " Error during mail sending. \n"
msgstr "Erro lendo arquivo %s"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
#, fuzzy
msgid "File Selection"
msgstr "Seleçăo de Grupo de Pacotes"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
#, fuzzy
msgid "Backup your System files. (/etc directory)"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
#, 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:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
#, fuzzy
msgid "Remove Selected"
msgstr "Fila remota"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
#, fuzzy
msgid "Windows (FAT32)"
msgstr "Remover Windows(TM)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
#, fuzzy
msgid "Users"
msgstr "Nome do usuário"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
#, fuzzy
msgid "Use network connection to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
#, fuzzy
msgid "Please enter the host name or IP."
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
#, fuzzy
msgid "Please enter your login"
msgstr "Favor tentar novamente"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
#, fuzzy
msgid "Please enter your password"
msgstr "Favor tentar novamente"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
#, fuzzy
msgid "Remember this password"
msgstr "Nenhuma senha"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
+#: ../../standalone/drakbackup_.c:1925
#, fuzzy
-msgid "Please choose your CD/DVD media size"
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr "Favor escolher o layout do seu teclado."
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
#, fuzzy
msgid "Please check for multisession CD"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
#, fuzzy
msgid "Please check if you are using CDRW media"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
#, fuzzy
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr ""
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
#, fuzzy
msgid "Please check if you are using a DVDR device"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
#, fuzzy
msgid "Please check if you are using a DVDRAM device"
msgstr "Favor clicar em uma partiçăo"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
#, fuzzy
msgid "No CD device defined!"
msgstr "Selecione arquivo"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
#, fuzzy
msgid "Use tape to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
#, fuzzy
msgid "Please check if you want to use the non-rewinding device."
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
#, 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:2067
+#: ../../standalone/drakbackup_.c:2071
#, 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:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
#, fuzzy
msgid "Please enter the directory to save to:"
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
#, fuzzy
msgid "Use quota for backup files."
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
#, fuzzy
msgid "Network"
msgstr "Interface de rede"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
#, fuzzy
msgid "Tape"
msgstr "Tipo"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr ""
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr ""
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
#, fuzzy
msgid "Use daemon"
msgstr "Nome do usuário"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
#, fuzzy
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
#, fuzzy
msgid ""
"Please choose the\n"
"media for backup."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr ""
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
#, fuzzy
msgid "Where"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
#, fuzzy
msgid "When"
msgstr "Roda"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
#, fuzzy
msgid "More Options"
msgstr "Opçőes do módulo:"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
#, fuzzy
msgid "Drakbackup Configuration"
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
#, fuzzy
msgid "Please choose where you want to backup"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr ""
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr ""
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr ""
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr ""
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
#, fuzzy
msgid "Please choose what you want to backup"
msgstr "Escolha os pacotes que vocę quer instalar"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
#, fuzzy
msgid "Backup system"
msgstr "Setup dos sistemas de arquivos"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, fuzzy, c-format
msgid " on device: %s"
msgstr "Dispositivo do mouse: %s\n"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
#, fuzzy
msgid ""
"\n"
"- Options:\n"
msgstr "Opçőes"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
#, fuzzy
msgid "Please uncheck or remove it on next time."
msgstr "Favor escolher em qual porta serial seu modem está conectado."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
#, fuzzy
msgid " Restore Configuration "
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
#, fuzzy
msgid "Backup the system files before:"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
#, fuzzy
msgid "please choose the date to restore"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
#, fuzzy
msgid "Use Hard Disk to backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
#, fuzzy
msgid "Please enter the directory to save:"
msgstr "Favor testar o mouse"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
#, fuzzy
msgid "FTP Connection"
msgstr "Coneçăo LAN"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
#, fuzzy
msgid "Secure Connection"
msgstr "Selecionar Coneçăo da Impressora"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
#, fuzzy
msgid "Restore from Hard Disk."
msgstr "Restaurar do disquete"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
#, fuzzy
msgid "Select another media to restore from"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
#, fuzzy
msgid "Other Media"
msgstr "Outro"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
#, fuzzy
msgid "Restore system"
msgstr "Instalar sistema"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
#, fuzzy
msgid "Restore Users"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
#, fuzzy
msgid "Restore Other"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
#, fuzzy
msgid "select path to restore (instead of /)"
msgstr "Favor escolher o tipo do seu mouse."
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Fila remota"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaurar do disquete"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Restaurar tabela de partiçăo"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Host name (nome do host)"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Senha"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nome do usuário"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Hostname:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
#, fuzzy
msgid "Custom Restore"
msgstr "Personalizada"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Restaurar tabela de partiçăo"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
#, fuzzy
msgid "Previous"
msgstr "<- Anterior"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
#, fuzzy
msgid "Save"
msgstr "Status:"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
#, fuzzy
msgid "Build Backup"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
#, fuzzy
msgid "Restore"
msgstr "Restaurar do arquivo"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
#, 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:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
#, fuzzy
msgid "Please select data to restore..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
#, fuzzy
msgid "Please select media for backup..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
#, fuzzy
msgid "Please select data to backup..."
msgstr "Favor escolher o idioma a ser utilizado."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
#, fuzzy
msgid "Backup system files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
#, fuzzy
msgid "Backup user files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
#, fuzzy
msgid "Backup other files"
msgstr "Arquivo de backup defeituoso"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
#, fuzzy
msgid "Sending files..."
msgstr "Salvar no arquivo"
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
#, fuzzy
msgid "Backup Now from configuration file"
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
#, fuzzy
msgid "View Backup Configuration."
msgstr "Configuraçăo da Rede"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
#, fuzzy
msgid "Wizard Configuration"
msgstr "Configuraçăo LAN"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
#, fuzzy
msgid "Advanced Configuration"
msgstr "Configuraçăo LAN"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
#, fuzzy
msgid "Backup Now"
msgstr "Setup dos sistemas de arquivos"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11551,7 +11675,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11560,7 +11684,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11601,7 +11725,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11629,17 +11753,17 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
msgid ""
" Copyright (C) 2001 MandrakeSoft by DUPONT Sebastien <dupont_s\\@epita.fr>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11656,7 +11780,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11696,7 +11820,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11707,7 +11831,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11720,7 +11844,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11802,8 +11926,8 @@ msgid "Synchronization tool"
msgstr ""
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
#, fuzzy
msgid "Standalone Tools"
msgstr "Ferramentas do Console"
@@ -11879,28 +12003,28 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
#, fuzzy
msgid "Report"
msgstr "Porta"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
#, fuzzy
msgid "Not installed"
msgstr "Sair da instalaçăo"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
#, fuzzy
msgid "No browser available! Please install one"
msgstr "Screenshots estarăo disponíveis depois da instalaçăo em %s"
@@ -12001,10 +12125,6 @@ msgstr "Ajudante..."
msgid "Apply"
msgstr "Aplicar"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Por favor aguarde... Aplicando a configuraçăo"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Conectado"
@@ -12124,7 +12244,7 @@ msgstr "Nome do módulo"
msgid "Size"
msgstr "Tamanho"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12189,12 +12309,12 @@ msgstr "Saída"
msgid "Build the disk"
msgstr "Criar o disco"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Certifique-se de que há um disco no dispositivo %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, fuzzy, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12203,12 +12323,12 @@ msgstr ""
"Năo há nenhum disco no dispositivo %s.\n"
"Por favor insira um disco."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Incapaz de dividir: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12692,157 +12812,157 @@ msgstr ""
"\n"
"Clique em ``Configurar'' se vocę quiser abrir o ajudante de configuraçăo."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Grupo de trabalho"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partiçăo %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Nome do usuário"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Deletar"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Pronto"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Adicionar um módulo"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Nenhuma impressora"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Fila remota"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Aceitar usuário"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versăo: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Porta"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
#, fuzzy
msgid "Use owner id for execution"
msgstr "Usar auto detecçăo"
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
#, fuzzy
msgid "Use group id for execution"
msgstr "Usar auto detecçăo"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Salvar seleçăo de pacotes"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Nome do usuário"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Grupo de trabalho"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Năo conectado"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12854,137 +12974,147 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
+msgstr ""
+
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "criaçăo de discos de boot"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Resoluçăo"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Escolher açăo"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Nome compartilhado"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
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:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, 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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispositivos"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispositivos"
+msgid "Save theme"
+msgstr "Instalar sistema"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Escolha um monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Conexăo da Impressora"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
#, fuzzy
msgid "You must choose an image file first!"
msgstr "Dispositivo de Impressăo URI"
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Detectando dispositivos..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -13125,6 +13255,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "utilizaçăo: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "utilizaçăo: keyboarddrake [--expert] [keyboard]\n"
@@ -13153,11 +13290,11 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Incapaz de iniciar a atualizaçăo on-line!!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
#, fuzzy
msgid "logdrake"
msgstr "draknet"
@@ -13439,16 +13576,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -13524,7 +13658,7 @@ msgstr "Instalar sistema"
msgid "Exit install"
msgstr "Sair da instalaçăo"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr ""
@@ -13775,6 +13909,21 @@ msgstr "Multimídia - Gravaçăo de CD"
msgid "Scientific Workstation"
msgstr "Estaçăo de Trabalho Científica"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configuraçăo pós-instalaçăo"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "O proxy deve ser ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Sair"
+
#~ msgid ""
#~ "The first time you try the X configuration, you may not be very "
#~ "satisfied\n"
@@ -14064,9 +14213,6 @@ msgstr "Estaçăo de Trabalho Científica"
#~ msgid "Test again"
#~ msgstr "Testar de novo"
-#~ msgid "Setting security level"
-#~ msgstr "Opçőes do nível de segurança"
-
#~ msgid "Select a graphics card"
#~ msgstr "Selecione uma placa gráfica"
diff --git a/perl-install/share/po/ro.po b/perl-install/share/po/ro.po
index 605f16356..6b4c0c3ea 100644
--- a/perl-install/share/po/ro.po
+++ b/perl-install/share/po/ro.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX 7.1\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+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"
@@ -92,24 +92,24 @@ msgstr "Configurează toate capetele (ieşirile) independent"
msgid "Use Xinerama extension"
msgstr "Foloseşte extensia Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Configurează numai cartela \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../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:413
+#: ../../Xconfig/card.pm_.c:414
#, 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:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, 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:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s cu accelerare 3D hardware EXPERIMENTALĂ"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, 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:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ 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:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (driver de instalare ecran)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Personalizat"
@@ -174,32 +174,32 @@ msgstr "Rezoluţie"
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "OK"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Ieşire"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -295,25 +295,25 @@ 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:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Renunţă"
@@ -389,11 +389,11 @@ msgstr "Server XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "Driver XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "Interfaţa grafică la demaraj"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -402,7 +402,7 @@ msgstr ""
"Pot să configurez calculatorul sa demareze automat X la demaraj.\n"
"Doriţi sa demaraţi X cînd redemaraţi ?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -414,7 +414,7 @@ msgid ""
"Do you have this feature?"
msgstr ""
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Ce normă foloseşte TV-ul dumneavoastră?"
@@ -486,7 +486,7 @@ msgstr "Compact"
msgid "compact"
msgstr "compact"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Mod video"
@@ -494,17 +494,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:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Parola"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Parola (din nou)"
@@ -539,14 +539,14 @@ msgid ""
msgstr ""
"Opţiunea ``Limitează opţiunile liniei de comandă'' e inutilă fără parolă"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Încercaţi din nou"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Parolele nu corespund"
@@ -588,7 +588,7 @@ msgstr ""
"\n"
"De pe ce unitate de disc demaraţi?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -596,155 +596,155 @@ 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:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Adaugă"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Gata"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifică"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
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:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Alt SO (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Alt SO (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Alt SO (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Imagine"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Append"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Citeşte-Scrie"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nesigur"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Etichetă"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Standard"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Dimensiune Initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Fără imagine video"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Şterge intrarea"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Eticheta goală nu e permisă"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Trebuie să specificaţi o imagine Kernel"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Trebuie să specificaţi o partiţie rădăcină (root)"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Această etichetă nu e permisă"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Am găsit interfaţele %s %s"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Aveţi o altă interfaţa?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Aveţi vreo interfaţă %s ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nu"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Da"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Vezi info hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instalarea pilotului pentru %s cartelăa %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, 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'"
msgstr ""
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -755,17 +755,17 @@ msgstr ""
"Opţiunile sunt în formatul ``nume=valoare nume2=valoare2 ...''.\n"
"de exemplu, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Opţiuni pentru module:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Care %s pilot să încerc?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -782,15 +782,15 @@ msgstr ""
"informaţiile necesare? Ocazional, interogarea poate bloca calculatorul,\n"
"dar n-ar trebui să produce nici o deteriorare."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Autoprobează"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Specificaţi opţiunile"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -799,65 +799,65 @@ msgstr ""
"Încăcarea modulului %s a eşuat.\n"
"Doriţi săîncercaţi cu alţi parametri ?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "acces la programele X"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "acces la uneltele rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "permite \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "acces la fişierele administrative"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
#, fuzzy
msgid "access to network tools"
msgstr "acces la uneltele rpm"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
#, fuzzy
msgid "access to compilation tools"
msgstr "acces la uneltele rpm"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(deja adăugat %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Aceasta parolă e prea simplă"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "Va rog înscrieţi numele utilizatorului"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
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:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Numele de utilizator este prea lung"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "Acest nume de utilizator e deja adăugat"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "Adăugaţi un utilizator"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -866,32 +866,32 @@ msgstr ""
"Intraţi un utilizator\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Acceptare utilizator"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Nume real"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Numele utilizatorului"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Shell"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Icoană"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologare"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -899,19 +899,19 @@ msgstr ""
"Pot să configurez calculatorul să logheze automat un utilizator.\n"
"Doriţi să folosiţi această facilitate?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "Alegeţi utilizatorul implicit:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Alegeţi managerul de ferestre:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "Vă rog să alegeţi limba folosită."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -921,36 +921,36 @@ msgstr ""
"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:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Toate"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "Permite tuturor utilizatorilor"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Fără partajare"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pachetul %s trebuie instalat. Doriţi să îl instalez?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
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:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pachetul obligatoriu %s lipseşte"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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,41 +959,41 @@ msgid ""
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Lansează userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
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:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Bun venit Piraţilor"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Slab"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Standard"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Ridicat"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Mai înaltă"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoică"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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 +1005,7 @@ msgstr ""
"calculator conectat cu altele de pe Internet. Nu există nici o parolă de\n"
"acces."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1013,7 +1013,7 @@ msgstr ""
"Parolele sunt acum activate, dar utilizarea lui ca un calculator într-o\n"
"reţea tot nu recomandată."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1021,13 +1021,13 @@ msgstr ""
"Acesta este nivelul de securitate standard recomandat pentru un calculator "
"care va fi conectat ca un client la Internet."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1041,7 +1041,7 @@ msgstr ""
"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:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1050,34 +1050,34 @@ msgstr ""
"e\n"
"complet închis şi securitatea e la maximum."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "Opţiuni de bază DrakSec"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Vă rog să alegeţi nivelul de securitate dorit"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Nivel de securitate"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Foloseşte libsafe pentru servere"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
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:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr ""
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1089,7 +1089,7 @@ msgstr ""
# 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:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1114,7 +1114,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:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Bun venit la gestionarul de sisteme de operare GRUB!"
@@ -1128,7 +1128,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:941
+#: ../../bootloader.pm_.c:992
#, 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."
@@ -1143,7 +1143,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:944
+#: ../../bootloader.pm_.c:995
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"
@@ -1157,7 +1157,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:947
+#: ../../bootloader.pm_.c:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "comandele inainte de a demara, sau 'c' pentru linia de comanda."
@@ -1171,33 +1171,33 @@ 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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Intrarea selectata va demara dupa %d secunde"
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Meniu de Start"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Nu puteţi instala Gestionarul de demarare într-o partiţie %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr ""
@@ -1249,103 +1249,103 @@ msgstr "Mod LILO/Grub"
msgid "Yaboot mode"
msgstr "Mod Yaboot"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Instalare teme"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr ""
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
#, fuzzy
msgid "Create new theme"
msgstr "Creează o nouă partiţie"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr ""
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Eroare"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr ""
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Copiez %s în %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "nu pot schimba mesajul LILO"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "nu găsesc mesajul LILO"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Nu pot scrie fişierul /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Scrie %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr ""
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr ""
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr ""
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Notificare"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Instalare teme eşuată!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1354,21 +1354,21 @@ msgstr ""
"În prezent folosiţi %s ca manager de pornire.\n"
"Clic pe Configurează pentru a lansa Asistentul de configurare."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Configurează"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Selectare imagine de pornire"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Teme"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1377,44 +1377,44 @@ msgid ""
"them separatly"
msgstr ""
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr ""
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr ""
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mod sistem"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr ""
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nu, nu vreau autologare"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Da, vreau autologare cu acest (utilizator, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr ""
@@ -1511,50 +1511,58 @@ msgstr "Austria"
msgid "United States"
msgstr "Statele Unite"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr ""
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Montare"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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 montare"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Vă rog să introduceţi URL-ul pentru serverul WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URL-ul trebuie să înceapă cu http:// sau https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Punct de montare: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Opţiuni: %s"
@@ -1642,7 +1650,7 @@ msgstr "Gol"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Alt tip"
@@ -1786,7 +1794,7 @@ msgstr ""
"Tabelul de partiţii salvat nu are aceeaşi mărime\n"
"Să continui totuşi ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Avertisment"
@@ -2334,7 +2342,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:3529
msgid "Username"
msgstr "Nume utilizator"
@@ -2346,23 +2354,23 @@ msgstr "Domeniu"
msgid "Search servers"
msgstr "Caută servere"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s Formatarea %s eşuată"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, 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:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr ""
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "eroare la demontarea %s: %s"
@@ -2444,47 +2452,110 @@ msgstr "Nimic de făcut"
msgid "Error opening %s for writing: %s"
msgstr "Eroare la citirea %s pentru a scrie: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
#, fuzzy
msgid "Sound configuration"
msgstr "Configurare CUPS"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:176
#, fuzzy
msgid "Driver:"
msgstr "Driver"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Ajutor"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Vă rog să aşteptaţi... Aplic configuraţia"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Vă rog să aşteptaţi"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr ""
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
#, fuzzy
msgid "Unkown driver"
msgstr "Model necunoscut"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2602,7 +2673,8 @@ msgid "/_Quit"
msgstr "/_Ieşire"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Ajutor"
@@ -2623,69 +2695,70 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Raportare eroare"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/Despre..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "Despre HardDrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
msgstr ""
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autor: "
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "HardDrake 2 versiunea "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Echipamente detectate"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informaţii"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Configurează module"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr ""
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Detecţia este în progres..."
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Vă rog să aşteptaţi"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr ""
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Rulează \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
msgstr ""
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "principal"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "secundar"
@@ -3742,7 +3815,7 @@ msgstr ""
msgid "You must also format %s"
msgstr ""
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -3757,7 +3830,7 @@ msgid ""
"Do you really want to install these servers?\n"
msgstr ""
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -3766,31 +3839,31 @@ msgid ""
"Do you really want to remove these packages?\n"
msgstr ""
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
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:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Introduceţi o dischetă formatată FAT în unitatea %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Acest floppy nu este formatat FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "Eroare la citirea fişierului %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4025,7 +4098,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Bine aţi venit la %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nici o unitate de dischetă nu este disponibilă"
@@ -4051,11 +4124,11 @@ msgstr "Clasa de instalare"
msgid "Please choose one of the following classes of installation:"
msgstr "Vă rog să alegeţi una din următoarele clase de instalare:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Selectarea grupurilor de pachete"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Selectare individuală a pachetelor"
@@ -4131,7 +4204,7 @@ msgstr ""
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Instalare"
@@ -4151,7 +4224,7 @@ msgstr "Instalare minimă"
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:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "În curs de instalare"
@@ -4178,17 +4251,17 @@ msgid "Installing package %s"
msgstr "Instalarea pachetului %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Acceptă"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Refuză"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4204,16 +4277,16 @@ msgstr ""
"Rom."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Să continui totuşi?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "O eroare a apărut la ordonarea pachetelor:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "A fost o eroare la instalarea pachetelor:"
@@ -4309,7 +4382,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -4387,7 +4460,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Chiar doriţi să refuzaţi licenţa?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Tastatură"
@@ -4589,29 +4662,29 @@ msgstr "Introduceţi o dischetă ce conţine selecţia pachetelor"
msgid "Selected size is larger than available space"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Tip instalare"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "Cu X"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalare cu adevărat minimă (în mod expres fără urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4622,16 +4695,16 @@ msgstr ""
"Dacă nu vă lispsesc decît cîteva CD-uri, deselectaţi-le şi faceţi click pe "
"Ok."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom etichetat \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Pregătesc instalarea"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -4640,21 +4713,21 @@ msgstr ""
"instalarea pachetului %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Configuraţie post-install"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Introduceţi discheta de pornire (de Boot) folosită în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Introduceţi discheta cu module actualizate în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -4721,7 +4794,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -4733,160 +4806,160 @@ msgid ""
"Do you want to install the updates ?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Contactez situl Mandrake Linux pentru obţinerea listei oglinzilor "
"disponibile..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Alegeţi o oglindă de la care să descărcaţi pachetele"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"Contactez serverul oglindă pentru preluarea listei pachetelor disponibile..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Care este zona dvs. de timp?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Ceas hardware fixat la GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "Server NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Coadă imprimare CUPS la distanţă:"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Fără imprimantă"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Aveţi o cartelă de sunet ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
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:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Sumar"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Mouse"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Zona de timp"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "Imprimantă"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "Cartelă ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Cartelă de sunet"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "Cartelă TV"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Domeniu Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Fişiere locale"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Alegeţi parola pentru root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Nici o parolă"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Această parolă e prea simplă (ar trebui să fie de cel puţin %d caractere)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentificare"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentificare prin LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "Server LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "Autentificare NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "Domeniu NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "Server NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -4902,19 +4975,19 @@ msgid ""
"good."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1122
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
msgstr "Autentificare în domeniu Windows"
-#: ../../install_steps_interactive.pm_.c:1124
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -4940,19 +5013,19 @@ msgstr ""
"severe.\n"
"Doriţi să creaţi o dischetă de demaraj pentru sistemul dumneavoastră ?"
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "Primul periferic de dischetă"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "Al doilea periferic de dischetă"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "Sari peste"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4977,7 +5050,7 @@ msgstr ""
"Doriţi să creaţi o dischetă de demaraj pentru sistemul dumneavoastră ?\n"
"%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -4986,29 +5059,29 @@ msgid ""
"because XFS needs a very large driver)."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
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:1201
+#: ../../install_steps_interactive.pm_.c:1202
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 demarare."
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "Introduceţi o dischetă în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "Crearea dischetei de demaraj..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "Pegătirea gestionalului de demaraj..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5016,11 +5089,11 @@ msgid ""
" need to use BootX to boot your machine"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "Vreţi să folosiţi aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5028,16 +5101,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:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "Instalare gestionar de demaraj"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalarea gestionarului de demaraj a eşuat. A apărut următoarea eroare :"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5048,17 +5121,17 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Introduceţi o dischetă goală în perifericul %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "Creez discheta de autoinstalare..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5068,7 +5141,7 @@ msgstr ""
"\n"
"Chiar vreţi să abandonaţi acum?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5101,15 +5174,15 @@ msgstr ""
"capitolul referitor la post instalare din \n"
"Official Mandrake Linux User's Guide."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "Generare dischetă de autoinstalare"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5118,15 +5191,15 @@ msgid ""
"You may prefer to replay the installation.\n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "Automatizat"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "Înregistrare selecţie pachete"
@@ -5162,14 +5235,14 @@ msgstr "Avansat(e)"
msgid "Basic"
msgstr "De bază"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../my_gtk.pm_.c:158
#: ../../printerdrake.pm_.c:2124
msgid "<- Previous"
msgstr "<- Precedentul"
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
-#: ../../standalone/drakbackup_.c:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "Următorul"
@@ -5608,7 +5681,7 @@ msgstr "Tasta \"Windows\" dreapta"
msgid "Circular mounts %s\n"
msgstr "Montaje circulare %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr ""
@@ -5744,15 +5817,15 @@ msgstr "nici unul"
msgid "No mouse"
msgstr "Fără mouse"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "Vă rog să testaţi mouse-ul"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "Pentru a activa mouse-ul,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "MIŞCAŢI ROTIŢA!"
@@ -5789,34 +5862,30 @@ msgstr "Restrângere arbore"
msgid "Toggle between flat and group sorted"
msgstr "Basculaţi între plat şi triere în funcţie de grup"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "Conectare la Internet"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr ""
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr "ECI Hi-Focus"
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "Foloseşte DHCP"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr ""
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr ""
@@ -5907,7 +5976,7 @@ msgstr ""
msgid "no network card found"
msgstr "Nu am găsit nici o cartelă de reţea"
-#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:365
+#: ../../network/ethernet.pm_.c:202 ../../network/network.pm_.c:362
msgid "Configuring network"
msgstr "Configurare reţea"
@@ -5919,15 +5988,15 @@ 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:367
msgid "Host name"
msgstr "Nume gazdă"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "Asistent configurare reţea"
@@ -5965,8 +6034,8 @@ msgid "Old configuration (isdn4net)"
msgstr ""
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "Configurare ISDN"
@@ -5998,23 +6067,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "Ce protocol doriţi să folosesc?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "Ce fel de cartelă aveţi?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "Nu ştiu"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6023,25 +6097,25 @@ msgid ""
"card.\n"
msgstr ""
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "Abandonează"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "Continuă"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr ""
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
@@ -6093,54 +6167,54 @@ msgstr "Primul server DNS (opţional)"
msgid "Second DNS Server (optional)"
msgstr "Al doilea server DNS (opţional)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "Acum sunteţi conectat(ă) la Internet."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "Acum NU sunteţi conectat(ă) la Internet."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "Conectează"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "Deconectează"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "Configurare conexiune"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "Configurare şi conectare la Internet"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
msgstr ""
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6152,12 +6226,12 @@ msgid ""
"Press OK to continue."
msgstr ""
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "Configuraţia reţelei"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6165,7 +6239,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6173,95 +6247,95 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
msgstr ""
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../printerdrake.pm_.c:3151
#: ../../standalone/drakconnect_.c:274 ../../standalone/drakconnect_.c:277
#: ../../standalone/drakfloppy_.c:145
msgid "Expert Mode"
msgstr "Mod expert"
-#: ../../network/netconnect.pm_.c:178 ../../printerdrake.pm_.c:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "Detecţia perifericelor..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "detectat la portul %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "Am detectat %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr ""
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "detectat pe interfaţa %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "Conexiune pe cablu"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "Am detectat o conexiune pe cablu"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "Conexiune LAN"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "Cartele Ethernet detectate"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr ""
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "Conexiune la Internet"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr ""
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "Configuraţia reţelei"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "Reţeaua trebuie repornită"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -6269,27 +6343,27 @@ msgid ""
"%s"
msgstr ""
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -6297,7 +6371,7 @@ msgid ""
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -6307,42 +6381,42 @@ msgstr ""
"Fiecare rubrica va trebui sa fie completată ca o adresă IP în format\n"
"zecimal-punctat (de exemplu 192.168.1.55)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "Configurez cartela de reţea %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr " (driver %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "Adresă IP"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "Mască de reţea:"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "IP automat"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "Pornire la demaraj"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../printerdrake.pm_.c:860
msgid "IP address should be in format 1.2.3.4"
msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"
-#: ../../network/network.pm_.c:366
+#: ../../network/network.pm_.c:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -6354,42 +6428,52 @@ msgstr ""
"ca de exemplu ``calculatorulmeu.laboratorulmeu.întreprindereamea.com''.\n"
"Puteţi de asemenea intra adresa IP a pasarelei dacă aveţi una"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "Server DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr ""
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "Periferic pasarelă"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+#, fuzzy
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+#, fuzzy
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "Adresa IP ar trebui să fie în formatul 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "Configurare Proxy-uri"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr ""
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "Proxy-ul ar trebui să fie http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "Proxy-ul ar trebui să fie ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "URL-ul trebuie să înceapă cu 'http:' sau 'ftp:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
@@ -7724,7 +7808,7 @@ msgstr ""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8198,10 +8282,6 @@ msgid ""
"Leave it blank if you don't want an ftp proxy"
msgstr ""
-#: ../../proxy.pm_.c:65
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "URL-ul trebuie să înceapă cu 'http:' sau 'ftp:'"
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -8247,6 +8327,43 @@ msgstr "mkraid a eşuat (poate vă lipsesc raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nu aveţi destule partiţii pentru nivelul RAID %d\n"
+#: ../../security/main.pm_.c:66
+#, fuzzy
+msgid "Security Level:"
+msgstr "Nivel de securitate"
+
+#: ../../security/main.pm_.c:74
+#, fuzzy
+msgid "Security Alerts:"
+msgstr "Nivel de securitate"
+
+#: ../../security/main.pm_.c:83
+#, fuzzy
+msgid "Security Administrator:"
+msgstr "Administrare de la distanţă"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, fuzzy, c-format
+msgid " (default: %s)"
+msgstr " (Implicit)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+
+#: ../../security/main.pm_.c:256
+#, fuzzy
+msgid "Please wait, setting security level..."
+msgstr "Vă rog să alegeţi nivelul de securitate dorit"
+
+#: ../../security/main.pm_.c:262
+#, fuzzy
+msgid "Please wait, setting security options..."
+msgstr "Vă rog să aşteptaţi, pregătesc instalarea..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -8541,7 +8658,7 @@ msgstr "Internet"
msgid "File sharing"
msgstr "Partajare fişiere"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "Sistem"
@@ -8629,7 +8746,7 @@ msgstr "Conectare la Internet"
#: ../../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"
msgstr ""
@@ -8674,7 +8791,7 @@ msgstr "Interfeţe utilizator"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
@@ -8700,7 +8817,7 @@ msgstr ""
#: ../../share/advertising/09-server.pl_.c:10
#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Transformaţi masina dvs. într-un server puternic cu doar câteva clicuri de "
@@ -8718,7 +8835,7 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:11
msgid ""
-"This firewall product includes network features which allow you to fulfill "
+"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
@@ -8733,7 +8850,7 @@ msgstr ""
#: ../../share/advertising/11-mdkstore.pl_.c:10
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
#: ../../share/advertising/12-mdkstore.pl_.c:9
@@ -8782,8 +8899,8 @@ 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 your 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
@@ -8819,11 +8936,11 @@ msgstr ""
msgid "Installing packages..."
msgstr "Instalare pachete..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Vă rog delogaţi-vă şi folosiţi Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Vă rog reconectaţi-vă ca %s pentru a activa schimbările"
@@ -8864,16 +8981,6 @@ msgstr "Adaugare/ştergere utilizatori"
msgid "Add/Del Clients"
msgstr "Adaugare/ştergere clienţi"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "Ajutor"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr ""
@@ -8922,48 +9029,63 @@ msgstr "Adăugă utilizator -->"
msgid "<-- Del User"
msgstr "<-- Şterge utilizator"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "Adaugă client -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- Şterge client"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "Configurare DHCPD"
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+#, fuzzy
+msgid "dhcpd Server Configuration"
+msgstr "Configurare avansată"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr ""
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "Introduceţi discheta :"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "Nu pot accesa discheta!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "Acum discheta poate fi scoasă"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "Nici o unitate de dischetă nu este disponibilă!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr ""
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr ""
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr ""
@@ -9079,12 +9201,12 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
msgstr ""
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -9093,41 +9215,41 @@ msgid ""
" need to purge the entry from authorized_keys on the server."
msgstr ""
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
msgstr ""
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:849
+#: ../../standalone/drakbackup_.c:852
#, fuzzy, c-format
msgid "Bad password on %s"
msgstr "Nici o parolă"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:851
+#: ../../standalone/drakbackup_.c:854
#, fuzzy, c-format
msgid "Can't find %s on %s"
msgstr "Nu pot deschide %s pentru scriere: %s\n"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
msgstr ""
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -9138,64 +9260,64 @@ msgid ""
"without being prompted for a password."
msgstr ""
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
msgstr ""
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
msgstr ""
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
msgstr ""
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
msgstr ""
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
msgstr ""
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
msgstr ""
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "Backup fişiere utilizator..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr ""
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "Backup fişiere diverse..."
-#: ../../standalone/drakbackup_.c:1319
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -9203,852 +9325,854 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
" "
msgstr ""
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
"FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr " Eroare la trimitere mail.\n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
msgstr "Nu se poate creea catalogul!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "Selectare fişiere"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr ""
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:1600
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
msgstr ""
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr ""
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "Şterge cele selectate"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "Utilizatori"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
msgstr ""
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr ""
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
msgstr ""
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr ""
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "Vă rog să introduceţi parola"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "Memorează parola"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
msgstr ""
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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:1921
-msgid "Please choose your CD/DVD media size"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1927
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr ""
-#: ../../standalone/drakbackup_.c:1939
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
msgstr " Şterge acum "
-#: ../../standalone/drakbackup_.c:1946
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
msgstr ""
-#: ../../standalone/drakbackup_.c:1952
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
msgstr ""
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
msgstr ""
-#: ../../standalone/drakbackup_.c:1998
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
msgstr ""
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2055
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
msgstr ""
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2067
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "Reţea"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr ""
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "Bandă"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "orar"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "zilnic"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "săptămânal"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "lunar"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "Utilizează daemonul"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
msgstr ""
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
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:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr ""
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "Ce"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "Unde"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "Când"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "Mai multe opţiuni"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "Configurare DrakBackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "pe disc fix"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "peste reţea"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
msgstr "pe CDROM"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
msgstr "pe bandă"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr ""
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr ""
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr ""
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
"- Save on Hard drive on path: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
msgstr ""
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr ""
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
msgstr ""
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
"- Save to Tape on device: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr ""
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
"- Save via %s on host: %s\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
"\t\t on path: %s \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
"- Daemon (%s) include:\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr ""
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr ""
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
msgstr ""
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr ""
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " Restaurează configuraţia "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr ""
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "?"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
msgstr ""
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "Conexiune FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "Conexiune securizată"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "Restaurează de pe Hard Disk"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr ""
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr ""
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr ""
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "Restaurare sistem"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "Restaurare utilizatori"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "Restaurare diverse"
-#: ../../standalone/drakbackup_.c:3263
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr ""
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
-#: ../../standalone/drakbackup_.c:3392
+#: ../../standalone/drakbackup_.c:3396
#, fuzzy
msgid ""
"Restore Selected\n"
"Files"
msgstr "Şterge cele selectate"
-#: ../../standalone/drakbackup_.c:3409
+#: ../../standalone/drakbackup_.c:3413
#, fuzzy
msgid ""
"Change\n"
"Restore Path"
msgstr "Restaurare diverse"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, 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:3492
#, fuzzy
msgid "Restore From CD"
msgstr "Restaurează de pe Hard Disk"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, 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:3504
#, fuzzy
msgid "Restore From Tape"
msgstr "Restaurează tabelul de partiţii"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
msgstr ""
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, fuzzy
msgid "Restore Via Network"
msgstr "Restaurare utilizatori"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
msgstr ""
-#: ../../standalone/drakbackup_.c:3523
+#: ../../standalone/drakbackup_.c:3527
#, fuzzy
msgid "Host Name"
msgstr "Nume gazdă"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
msgstr ""
-#: ../../standalone/drakbackup_.c:3531
+#: ../../standalone/drakbackup_.c:3535
#, fuzzy
msgid "Password required"
msgstr "Parola"
-#: ../../standalone/drakbackup_.c:3537
+#: ../../standalone/drakbackup_.c:3541
#, fuzzy
msgid "Username required"
msgstr "Nume utilizator"
-#: ../../standalone/drakbackup_.c:3540
+#: ../../standalone/drakbackup_.c:3544
#, fuzzy
msgid "Hostname required"
msgstr "Nume gazdă:"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
msgstr ""
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
msgstr ""
-#: ../../standalone/drakbackup_.c:3561
+#: ../../standalone/drakbackup_.c:3565
#, fuzzy
msgid "Restore Failed..."
msgstr "Restaurare diverse"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr ""
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "Restaurare personalizată"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
msgstr ""
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
msgstr ""
-#: ../../standalone/drakbackup_.c:3863
+#: ../../standalone/drakbackup_.c:3867
#, fuzzy
msgid "Restore From Catalog"
msgstr "Restaurează tabelul de partiţii"
-#: ../../standalone/drakbackup_.c:3891
+#: ../../standalone/drakbackup_.c:3895
#, fuzzy
msgid "Restore Progress"
msgstr "Restaurare utilizatori"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr ""
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "Salvează"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr ""
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "Restaurează"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
msgstr ""
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr ""
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
msgstr ""
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr ""
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr ""
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr ""
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr ""
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr ""
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr ""
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "Trimit fişierele..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr ""
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr ""
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "Configurare asistent"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "Configurare avansată"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr ""
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -10080,7 +10204,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -10089,7 +10213,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -10130,7 +10254,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -10158,18 +10282,18 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -10186,7 +10310,7 @@ msgid ""
" Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
msgstr ""
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -10226,7 +10350,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -10237,7 +10361,7 @@ msgid ""
"\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -10250,7 +10374,7 @@ msgid ""
"backup data files by hand.\n"
msgstr ""
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -10332,8 +10456,8 @@ msgid "Synchronization tool"
msgstr "Unealtă de sincronizare"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "Unelte de sine stătătoare"
@@ -10398,26 +10522,26 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
"\n"
msgstr ""
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "Raport"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "Nu este instalat"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr ""
-#: ../../standalone/drakbug_.c:190
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
msgstr ""
@@ -10516,10 +10640,6 @@ msgstr "Asistent"
msgid "Apply"
msgstr "Aplică"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "Vă rog să aşteptaţi... Aplic configuraţia"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "Conectat"
@@ -10639,7 +10759,7 @@ msgstr "Nume modul"
msgid "Size"
msgstr "Dimensiune"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -10704,12 +10824,12 @@ msgstr "Ieşire"
msgid "Build the disk"
msgstr "Construieşte discul"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "Asiguraţi-vă că există mediu (disketă) în dispozitivul: %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -10719,12 +10839,12 @@ msgstr ""
"scriere .\n"
"Introduceţi una!"
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "Nu pot executa fork: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -11157,156 +11277,156 @@ msgstr ""
"%s\n"
"Click pe Configurare pentru a lansa asistentul de configurare."
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "group"
msgstr "Numele de grup"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
msgstr ""
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "permissions"
msgstr "partiţia %s"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
#, fuzzy
msgid "user"
msgstr "Utilizator"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
msgstr ""
-#: ../../standalone/drakperm_.c:49
+#: ../../standalone/drakperm_.c:50
#, fuzzy
msgid "delete"
msgstr "Şterge"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
msgstr ""
-#: ../../standalone/drakperm_.c:51
+#: ../../standalone/drakperm_.c:52
#, fuzzy
msgid "Down"
msgstr "Gata"
-#: ../../standalone/drakperm_.c:52
+#: ../../standalone/drakperm_.c:53
#, fuzzy
msgid "add a rule"
msgstr "Adaugă un modul"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
msgstr ""
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
-#: ../../standalone/drakperm_.c:61
+#: ../../standalone/drakperm_.c:62
#, fuzzy
msgid "Add a new rule at the end"
msgstr "Adaugă o imprimantă nouă"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
msgstr ""
-#: ../../standalone/drakperm_.c:63
+#: ../../standalone/drakperm_.c:64
#, fuzzy
msgid "Up selected rule one level"
msgstr "Toate cele deselectate"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
msgstr ""
-#: ../../standalone/drakperm_.c:65
+#: ../../standalone/drakperm_.c:66
#, fuzzy
msgid "Delete selected rule"
msgstr "Şterge cele selectate"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
msgstr ""
-#: ../../standalone/drakperm_.c:248
+#: ../../standalone/drakperm_.c:244
#, fuzzy
msgid "Current user"
msgstr "Acceptare utilizator"
-#: ../../standalone/drakperm_.c:253
+#: ../../standalone/drakperm_.c:249
#, fuzzy
msgid "Permissions"
msgstr "Versiune: %s\n"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
msgstr ""
-#: ../../standalone/drakperm_.c:255
+#: ../../standalone/drakperm_.c:251
#, fuzzy
msgid "Property"
msgstr "Port"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
msgstr ""
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
msgstr ""
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
msgstr ""
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
-#: ../../standalone/drakperm_.c:315
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:316
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
msgstr ""
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
msgstr ""
-#: ../../standalone/drakperm_.c:322
+#: ../../standalone/drakperm_.c:318
#, fuzzy
msgid "Path selection"
msgstr "Selectare imagine de pornire"
-#: ../../standalone/drakperm_.c:368
+#: ../../standalone/drakperm_.c:364
#, fuzzy
msgid "user :"
msgstr "Utilizator"
-#: ../../standalone/drakperm_.c:370
+#: ../../standalone/drakperm_.c:366
#, fuzzy
msgid "group :"
msgstr "Numele de grup"
-#: ../../standalone/draksound_.c:46
+#: ../../standalone/draksound_.c:47
#, fuzzy
msgid "No Sound Card detected!"
msgstr "Nu am detectat nici o cartelă TV!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -11318,136 +11438,146 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
-#: ../../standalone/draksplash_.c:32
-msgid "package ImageMagick is required for correct working"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:78
#, fuzzy
msgid "first step creation"
msgstr "Creare disc boot (demaraj)"
-#: ../../standalone/draksplash_.c:77
+#: ../../standalone/draksplash_.c:79
#, fuzzy
msgid "final resolution"
msgstr "Rezoluţie"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
#, fuzzy
msgid "choose image file"
msgstr "Selectaţi un fişier"
-#: ../../standalone/draksplash_.c:79
+#: ../../standalone/draksplash_.c:81
#, fuzzy
msgid "Theme name"
msgstr "Numele de access"
-#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
msgstr ""
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "Configuraţie post-install"
-
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "Ieşire"
-
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "Instalare teme"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
#, fuzzy
msgid "Configure bootsplash picture"
msgstr "Configurare servicii"
-#: ../../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"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
+msgid "text width"
msgstr ""
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
+msgid "text box height"
msgstr ""
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
+msgid "the width of the progress bar"
msgstr ""
#: ../../standalone/draksplash_.c:107
+msgid "the heigth of the progress bar"
+msgstr ""
+
+#: ../../standalone/draksplash_.c:108
msgid "the color of the progress bar"
msgstr ""
-#: ../../standalone/draksplash_.c:119
+#: ../../standalone/draksplash_.c:121
#, fuzzy
-msgid "go back"
-msgstr "Loopback"
+msgid "Preview"
+msgstr "dispozitiv"
-#: ../../standalone/draksplash_.c:120
+#: ../../standalone/draksplash_.c:123
#, fuzzy
-msgid "preview"
-msgstr "dispozitiv"
+msgid "Save theme"
+msgstr "Instalare teme"
-#: ../../standalone/draksplash_.c:121
+#: ../../standalone/draksplash_.c:124
#, fuzzy
-msgid "choose color"
+msgid "Choose color"
msgstr "Alegeţi un monitor"
-#: ../../standalone/draksplash_.c:124
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
msgstr ""
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
msgstr ""
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
msgstr ""
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
msgstr ""
-#: ../../standalone/draksplash_.c:436
+#: ../../standalone/draksplash_.c:435
#, fuzzy
msgid "ProgressBar color selection"
msgstr "Selectare model imprimantă"
-#: ../../standalone/draksplash_.c:454
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
msgstr ""
-#: ../../standalone/draksplash_.c:463
+#: ../../standalone/draksplash_.c:465
#, fuzzy
msgid "Generating preview ..."
msgstr "Detecţia perifericelor..."
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr ""
+
#: ../../standalone/drakxtv_.c:49
msgid ""
"XawTV isn't installed!\n"
@@ -11583,6 +11713,13 @@ msgid ""
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+#: ../../standalone/harddrake2_.c:8
+#, fuzzy
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr "Utilizare: keyboarddrake [--expert] [keyboard]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "Utilizare: keyboarddrake [--expert] [keyboard]\n"
@@ -11609,13 +11746,13 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"Modificarea a fost făcută, dar pentru a intra în vigoare trebuie să vă "
"delogaţi"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -11884,16 +12021,13 @@ msgid ""
"applications menu."
msgstr ""
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr ""
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
msgstr ""
#: ../../steps.pm_.c:14
@@ -11968,7 +12102,7 @@ msgstr "Instalare actualizări pt. sistem"
msgid "Exit install"
msgstr "Ieşire din instalare"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
@@ -12208,6 +12342,24 @@ msgstr "Multimedia - Gravare CD-uri"
msgid "Scientific Workstation"
msgstr "Staţie de lucru ştiinţifică"
+#, fuzzy
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "Configuraţie post-install"
+
+#, fuzzy
+#~ msgid "Go back"
+#~ msgstr "Loopback"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "Proxy-ul ar trebui să fie ftp://..."
+
+#, fuzzy
+#~ msgid "quit"
+#~ msgstr "Ieşire"
+
#~ msgid "Internet and Messaging"
#~ msgstr "Internet şi mesagerie"
diff --git a/perl-install/share/po/ru.po b/perl-install/share/po/ru.po
index a51cbb78b..acdbca47d 100644
--- a/perl-install/share/po/ru.po
+++ b/perl-install/share/po/ru.po
@@ -1,14 +1,11 @@
# Russian translation of drakbootdisk messages
# Copyright (C) 2002 Free Software Foundation, Inc.
-# Aleksey Smirnov <smi@logic.ru>, 2000.
-# Vladimir Choundalov <choundalovvv@point.pwp.ru>, 2001
-# Vitaly Zubkov <habad@yandex.ru>, 2001
# Pavel Maryanov <acid_jack@ukr.net>, 2002
#
msgid ""
msgstr ""
"Project-Id-Version: drakfloppy 0.30\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
"PO-Revision-Date: 2000-08-01 16:24+0200\n"
"Last-Translator: Pavel Maryanov <acid_jack@ukr.net>\n"
"Language-Team: Russian \n"
@@ -92,24 +89,25 @@ msgstr "îÁÓÔŇĎÉÔŘ ×ÓĹ ÇĎĚĎ×ËÉ ÎĹÚÁ×ÉÓÉÍĎ"
msgid "Use Xinerama extension"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ŇÁÓŰÉŇĹÎÉĹ Xinerama"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "îÁÓÔŇĎÉÔŘ ÔĎĚŘËĎ ËÁŇÔŐ \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+# ../../Xconfig/various.pm_.c:23 #, c-format
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s Ó ÁĐĐÁŇÁÔÎŮÍ 3D-ŐÓËĎŇĹÎÉĹÍ"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -120,18 +118,18 @@ msgstr ""
"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ XFree %s, ËĎÔĎŇŮĘ ÍĎÖĹÔ ÉÍĹÔŘ ĚŐŢŰŐŔ "
"ĐĎÄÄĹŇÖËŐ× 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ÍĎÖĹÔ ÉÍĹÔŘ ÁĐĐÁŇÁÔÎŐŔ ĐĎÄÄĹŇÖËŐ 3D-ŐÓËĎŇĹÎÉŃ × XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s Ó üëóđĺňéíĺîôáěřîůí ÁĐĐÁŇÁÔÎŮÍ 3D-ŐÓËĎŇĹÎÉĹÍ"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -145,7 +143,7 @@ msgstr ""
"÷ÁŰÁ ×ÉÄĹĎËÁŇÔÁ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ XFree %s, ËĎÔĎŇŮĘ ÍĎÖĹÔ ÉÍĹÔŘ ĚŐŢŰŐŔ "
"ĐĎÄÄĹŇÖËŐ× 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -155,17 +153,16 @@ msgstr ""
"ĐĎÄÄĹŇÖÉ×ÁĹÍŐŔ XFree %s, đďíîéôĺ, üôď üëóđĺňéíĺîôáěřîáń đďääĺňöëá\n"
"é ÷ďúíďöîď úá÷éóáîéĺ ÷áűĺçď ëďíđřŕôĺňá."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ŐÓÔÁÎĎ×ËÁ ÄŇÁĘ×ĹŇÁ ÍĎÎÉÔĎŇÁ)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "÷ŮÂĎŇĎŢÎĎ"
#: ../../Xconfig/main.pm_.c:102
-#, fuzzy
msgid "Graphic Card"
msgstr "÷ÉÄĹĎËÁŇÔÁ"
@@ -179,34 +176,34 @@ msgstr "ňÁÚŇĹŰĹÎÉĹ"
#: ../../Xconfig/main.pm_.c:113
msgid "Test"
-msgstr ""
+msgstr "đŇĎ×ĹŇÉÔŘ"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "ďë"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "÷ŮČĎÄ"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -238,6 +235,8 @@ msgstr "đŇĎÉÚ×ĎÄÉÔĹĚŘ"
#: ../../Xconfig/monitor.pm_.c:109
msgid "Plug'n Play probing failed. Please choose a precise monitor"
msgstr ""
+"éÓÓĚĹÄĎ×ÁÎÉĹ Plug'n'Play ÚÁ×ĹŇŰÉĚĎÓŘ ÎĹŐÄÁŢĹĘ. đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ "
+"ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĘ ÍĎÎÉÔĎŇ"
#: ../../Xconfig/monitor.pm_.c:114
msgid ""
@@ -302,25 +301,25 @@ msgstr "÷ŮÂĹŇÉÔĹ ŇÁÚŇĹŰĹÎÉĹ É ÇĚŐÂÉÎŐ Ă×ĹÔÁ"
msgid "Graphics card: %s"
msgstr "÷ÉÄĹĎËÁŇÔÁ: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "ďÔÍĹÎÁ"
@@ -333,11 +332,9 @@ msgid "Do you want to test 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
@@ -399,11 +396,11 @@ msgstr "óĹŇ×ĹŇ XFree86: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "äŇÁĘ×ĹŇ XFree86: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "çŇÁĆÉŢĹÓËÉĘ ÉÎÔĹŇĆĹĘÓ ĐŇÉ ÚÁÇŇŐÚËĹ"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -413,7 +410,7 @@ msgstr ""
"ÉÎÔĹŇĆĹĘÓÁ (XFree) ×Ď ×ŇĹÍŃ ÚÁÇŇŐÚËĹ. čĎÔÉÔĹ, ŢÔĎÂŮ XFree ÚÁĐŐÓËÁĚÓŃ ĐŇÉ "
"ĐĹŇĹÚÁÇŇŐÚËĹ?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -424,11 +421,18 @@ msgid ""
"\n"
"Do you have this feature?"
msgstr ""
+"đĎČĎÖĹ, ŢÔĎ Ő ×ÁŰĹĘ ×ÉÄĹĎËÁŇÔŮ ÉÍĹĹÔÓŃ ËĎÎÎĹËÔĎŇ TV-OUT.\n"
+"ďÎÁ ÍĎÖĹÔ ÂŮÔŘ ÎÁÓÔŇĎĹÎÁ ÄĚŃ ŇÁÂĎÔŮ Ó ÉÓĐĎĚŘÚĎ×ÁÎÉĹÍ ÂŐĆĹŇÁ ËÁÄŇĎ×.\n"
+"\n"
+"äĚŃ ÜÔĎÇĎ ×Ů ÄĎĚÖÎŮ ĐĎÄËĚŔŢÉÔŘ Ó×ĎŔ ×ÉÄĹĎËÁŇÔŐ Ë ÔĹĚĹ×ÉÚĎŇŐ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ "
+"ËĎÍĐŘŔÔĹŇÁ.\n"
+"úÁÔĹÍ ×ŮÂĹŇÉÔĹ ĐŐÎËÔ \"TVout\" × ÎÁŢÁĚŘÎĎÍ ÚÁÇŇŐÚŢÉËĹ\n"
+"\n"
+"ő ×ÁÓ ĹÓÔŘ ÜÔĎÔ ŇÁÚßĹÍ?"
-#: ../../Xconfig/various.pm_.c:84
-#, fuzzy
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
-msgstr "ëÁËĎĘ Ő ×ÁÓ ×ÉÄ ISDN ÓĎĹÄÉÎĹÎÉŃ?"
+msgstr "ëÁËĎĘ ĆĎŇÍÁÔ ÉÓĐĎĚŘÚŐĹÔ ×ÁŰ ÔĹĚĹ×ÉÚŇ?"
#: ../../any.pm_.c:108 ../../any.pm_.c:133
msgid "First sector of boot partition"
@@ -498,25 +502,25 @@ msgstr "ëĎÍĐÁËÔÎĎ"
msgid "compact"
msgstr "ËĎÍĐÁËÔÎĎ"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
-msgstr "÷ÉÄĹĎ-ŇĹÖÉÍ"
+msgstr "÷ÉÄĹĎŇĹÖÉÍ"
#: ../../any.pm_.c:168
msgid "Delay before booting default image"
msgstr "úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "đÁŇĎĚŘ"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "đÁŇĎĚŘ (ĹÝĹ ŇÁÚ)"
@@ -551,14 +555,14 @@ msgid ""
msgstr ""
"ďĐĂÉŃ ``ďÇŇÁÎÉŢÉÔŘ ĐÁŇÁÍĹÔŇŮ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ'' ÎĹ ÉÓĐĎĚŘÚŐĹÔÓŃ ÂĹÚ ĐÁŇĎĚŃ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ, ĐĎÖÁĚŐĘÓÔÁ"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "đÁŇĎĚÉ ÎĹ ÓĎ×ĐÁÄÁŔÔ"
@@ -600,7 +604,7 @@ msgstr ""
"\n"
"ó ËÁËĎÇĎ ÄÉÓËÁ ×Ů ÚÁÇŇŐÖÁĹÔĹÓŘ?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -608,148 +612,148 @@ msgstr ""
"îÁ ÄÁÎÎŮĘ ÍĎÍĹÎÔ × ×ÁŰĹÍ ÍĹÎŔ ÚÁÇŇŐÚËÉ ÉÍĹŔÔÓŃ ÓĚĹÄŐŔÝÉĹ ĐŐÎËÔŮ.\n"
"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ĹÝĹ ÎĹÓËĎĚŘËĎ ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "äĎÂÁ×ÉÔŘ"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "çĎÔĎ×Ď"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "éÚÍĹÎÉÔŘ"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "ëÁËĎĘ ÔÉĐ ĐŐÎËÔÁ ×Ů ČĎÔÉÔĹ ÄĎÂÁ×ÉÔŘ?"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "äŇŐÇÁŃ ďó (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "äŇŐÇÁŃ ďó (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "äŇŐÇÁŃ ďó (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "ďÂŇÁÚ"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "äĎÂÁ×ÉÔŘ"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "ţÔĹÎÉĹ-ÚÁĐÉÓŘ"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "ôÁÂĚÉĂÁ"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "îĹÂĹÚĎĐÁÓÎŮĘ"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "íĹÔËÁ"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "đĎ ŐÍĎĚŢÁÎÉŔ"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "ňÁÚÍĹŇ initrd"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "âĹÚ ×ÉÄĹĎ"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "őÄÁĚÉÔŘ ĐŐÎËÔ"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "đŐÓÔÁŃ ÍĹÔËÁ ÎĹ ÄĎĐŐÓËÁĹÔÓŃ"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "÷Ů ÄĎĚÖÎŮ ŐËÁÚÁÔŘ ĎÂŇÁÚ ŃÄŇÁ"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "÷Ů ÄĎĚÖÎŮ ŐËÁÚÁÔŘ ËĎŇÎĹ×ĎĘ ŇÁÚÄĹĚ"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "üÔÁ ÍĹÔËÁ ŐÖĹ ÉÓĐĎĚŘÚŐĹÔÓŃ"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "îÁĘÄĹÎŮ %s %s ÉÎÔĹŇĆĹĘÓŮ"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ÄŇŐÇĎĘ?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ ËÁËÉĹ-ĚÉÂĎ %s ÉÎÔĹŇĆĹĘÓŮ?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "îĹÔ"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "äÁ"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "đŇĎÓÍĎÔŇĹÔŘ ÉÎĆĎŇÍÁĂÉŔ Ď ĎÂĎŇŐÄĎ×ÁÎÉÉ"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ ÄŇÁĘ×ĹŇ ÄĚŃ %s ËÁŇÔŮ %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(ÍĎÄŐĚŘ %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -758,7 +762,7 @@ msgstr ""
"ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ĐĹŇĹÄÁÔŘ ĹÇĎ ĐÁŇÁÍĹÔŇŮ × ÍĎÄŐĚŘ %s.\n"
"đĎÍÎÉÔĹ, ŢÔĎ ĚŔÂŮĹ ÁÄŇĹÓÁ ÄĎĚÖÎŮ ÂŮÔŘ ××ĹÄĹÎŮ Ó ĐŇĹĆÉËÓĎÍ 0x, ÎÁĐŇ., '0z123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -769,17 +773,17 @@ msgstr ""
"đÁŇÁÍĹÔŇŮ ÄĎĚÖÎŮ ÂŮÔŘ × ĆĎŇÍÁÔĹ ``ÉÍŃ=ÚÎÁŢĹÎÉĹ ÉÍŃ2=ÚÎÁŢĹÎÉĹ2 ...''.\n"
"îÁĐŇÉÍĹŇ, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "đÁŇÁÍĹÔŇŮ ÍĎÄŐĚŃ:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "ëÁËĎĘ %s ÄŇÁĘ×ĹŇ ÍÎĹ ĐĎĐŇĎÂĎ×ÁÔŘ?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -793,19 +797,18 @@ msgstr ""
"÷ ÎĹËĎÔĎŇŮČ ÓĚŐŢÁŃČ ÄŇÁĘ×ĹŇŐ %s ÎŐÖÎÁ ÎĹËĎÔĎŇÁŃ ÄĎĐĎĚÎÉÔĹĚŘÎÁŃ ÉÎĆĎŇÍÁĂÉŃ,\n"
"ČĎÔŃ ĎÂŮŢÎĎ ÜÔĎÇĎ ÎĹ ÔŇĹÂŐĹÔÓŃ. îĹ ČĎÔÉÔĹ ĚÉ ×Ů ĎĐŇĹÄĹĚÉÔŘ ÄĚŃ ÎĹÇĎ\n"
"ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐÁŇÁÍĹÔŇŮ ÉĚÉ ĐĎÚ×ĎĚÉÔĹ ÄŇÁĘ×ĹŇŐ ĐŇĎÚĎÎÄÉŇĎ×ÁÔŘ ×ÁŰŐ ÍÁŰÉÎŐ\n"
-"× ĐĎÉÓËÁČ ÎĹĎÂČĎÄÉÍĎĘ ÉÎĆĎŇÍÁĂÉÉ? ÷ĎÚÍĎÖÎĎ, ÚĎÎÄÉŇĎ×ÁÎÉĹ ĐĎÄ×ĹÓÉÔ "
-"ËĎÍĐŘŔÔĹŇ,\n"
-"ĎÄÎÁËĎ ÜÔĎ ÎĹ ÄĎĚÖÎĎ ×ŮÚ×ÁÔŘ ÎÉËÁËÉČ ÎĹÉÓĐŇÁ×ÎĎÓÔĹĘ."
+"× ĐĎÉÓËÁČ ÎĹĎÂČĎÄÉÍĎĘ ÉÎĆĎŇÍÁĂÉÉ? ÷ĎÚÍĎÖÎĎ, ÉÓÓĚĹÄĎ×ÁÎÉĹ ĐĎÄ×ĹÓÉÔ\n"
+"ËĎÍĐŘŔÔĹŇ, ĎÄÎÁËĎ ÜÔĎ ÎĹ ÄĎĚÖÎĎ ×ŮÚ×ÁÔŘ ÎÉËÁËÉČ ÎĹÉÓĐŇÁ×ÎĎÓÔĹĘ."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
-msgstr "á×ÔĎÚĎÎÄÉŇĎ×ÁÎÉĹ"
+msgstr "á×ÔĎÍÁÔÉŢĹÓËĎĹ ÉÓÓĚĹÄĎ×ÁÎÉĹ"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "őËÁÖÉÔĹ ĐÁŇÁÍĹÔŇŮ"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -814,63 +817,63 @@ msgstr ""
"úÁÇŇŐÚËÁ ÍĎÄŐĚŃ %s ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢÎĎ.\n"
"čĎÔÉÔĹ ĐĎĐŇĎÂĎ×ÁÔŘ ÓÎĎ×Á Ó ÄŇŐÇÉÍÉ ĐÁŇÁÍĹÔŇÁÍÉ?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "ÄĎÓÔŐĐ Ë č-ĐŇĎÇŇÁÍÍÁÍ"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "ÄĎÓÔŐĐ Ë ÉÎÓÔŇŐÍĹÎÔÁÍ rpm"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "ŇÁÚŇĹŰÉÔŘ \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "ÄĎÓÔŐĐ Ë ÁÄÍÉÎÉÓÔŇÁÔÉ×ÎŮÍ ĆÁĘĚÁÍ"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
-msgstr ""
+msgstr "ÄĎÓÔŐĐ Ë ÓĹÔĹ×ŮÍ ÓĹŇ×ÉÓÎŮÍ ĐŇĎÇŇÁÍÍÁÍ"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
-msgstr ""
+msgstr "ÄĎÓÔŐĐ Ë ÓĹŇ×ÉÓÎŮÍ ĐŇĎÇŇÁÍÍÁÍ-ËĎÍĐÉĚŃÔĎŇÁÍ"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(ŐÖĹ ÄĎÂÁ×ĚĹÎĎ %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
msgstr "őËÁÖÉÔĹ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ, ĐĎÖÁĚŐĘÓÔÁ"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ÄĎĚÖÎĎ ÓĎÄĹŇÖÁÔŘ ÔĎĚŘËĎ ÂŐË×Ů × ÎÉÖÎĹÍ ŇĹÇÉÓÔŇĹ, \n"
"ĂÉĆŇŮ , `-' É `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ÓĚÉŰËĎÍ ÄĚÉÎÎĎĹ"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
msgstr "üÔĎ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ ŐÖĹ ÄĎÂÁ×ĚĹÎĎ"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -879,32 +882,32 @@ msgstr ""
"÷×ĹÄÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "đŇÉÎŃÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "îÁÓÔĎŃÝĹĹ ÉÍŃ"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "ëĎÍÁÎÄÎŮĘ ĐŇĎĂĹÓÓĎŇ"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "úÎÁŢĎË"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "á×ÔĎÍÁÔÉŢĹÓËÉĘ ×ČĎÄ"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -913,19 +916,19 @@ msgstr ""
"ĎÄÎĎÇĎ ĐĎĚŘÚĎ×ÁÔĹĚŃ.\n"
"čĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔŐ ×ĎÚÍĎÖÎĎÓÔŘ?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
msgstr "÷ŮÂĹŇÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĎ ŐÍĎĚŢÁÎÉŔ:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "÷ŮÂĹŇÉÔĹ ÚÁĐŐÓËÁĹÍŮĘ ĎËĎÎÎŮĘ ÍĹÎĹÄÖĹŇ:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
msgstr "÷ŮÂĹŇÉÔĹ ÉÓĐĎĚŘÚŐĹÍŮĘ ŃÚŮË, ĐĎÖÁĚŐĘÓÔÁ."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
msgid ""
"Mandrake Linux can support multiple languages. Select\n"
"the languages you would like to install. They will be available\n"
@@ -935,37 +938,37 @@ msgstr ""
"ŃÚŮËÉ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ. ďÎÉ ÂŐÄŐÔ ÄĎÓÔŐĐÎŮ, ËĎÇÄÁ\n"
"ÚÁ×ĹŇŰÉÔÓŃ ŐÓÔÁÎĎ×ËÁ, É ×Ů ĐĹŇĹÚÁĐŐÓÔÉÔĹ Ó×ĎŔ ÓÉÓÔĹÍŐ."
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "÷ÓĹ"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
msgstr "ňÁÚŇĹŰÉÔŘ ×ÓĹČ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "âĹÚ ÓĎ×ÍĹÓÔÎĎÇĎ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../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:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"÷Ů ÍĎÖĹÔĹ ÜËÓĐĎŇÔÉŇĎ×ÁÔŘ ĐŇÉ ĐĎÍĎÝÉ NFS ÉĚÉ Samba. đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ, "
"ËĎÔĎŇŮĘ ÉÚ ÎÉČ ×Ů ÖĹĚÁĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "ďÂŃÚÁÔĹĚŘÎŮĘ ĐÁËĹÔ %s ĎÔÓŐÔÓÔ×ŐĹÔ"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 "
@@ -978,11 +981,11 @@ msgstr ""
"ÉÓĐĎĚŘÚĎ×ÁÎÉĹ\" × konqueror É nautilus.\n"
"\"÷ŮÂĎŇĎŢÎĎ\" ŇÁÚŇĹŰÉÔ ÎÁÓÔŇĎÉÔŘ ÄĎÓÔŐĐ ĎÔÄĹĚŘÎŮÍ ĐĎĚŘÚĎ×ÁÔĹĚŃÍ.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "úÁĐŐÓÔÉÔŘ userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -990,31 +993,31 @@ msgstr ""
"óĎ×ÍĹÓÔÎĎĹ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ĐĎĚŘÚĎ×ÁÔĹĚŃÍÉ ÉÓĐĎĚŘÚŐĹÔ ÇŇŐĐĐŐ \"fileshare\". \n"
"÷Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ userdrake ÄĚŃ ÄĎÂÁ×ĚĹÎÉŃ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ × ÜÔŐ ÇŇŐĐĐŐ."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ, ×ÚĚĎÍÝÉËÉ"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "îÉÚËÉĘ"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "óÔÁÎÄÁŇÔÎŮĘ"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "÷ŮÓĎËÉĘ"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "đĎ×ŮŰĹÎÎŮĘ"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "đÁŇÁÎĎÉÄÁĚŘÎĎĘ"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1026,7 +1029,7 @@ msgstr ""
"ÎÁ ÍÁŰÉÎÁČ, ÓĎĹÄÉÎĹÎÎŮČ Ó ÄŇŐÇÉÍÉ ÉĚÉ Ó éÎÔĹŇÎĹÔĎÍ. óŐÝĹÓÔ×ŐĹÔ ÄĎÓÔŐĐ ÂĹÚ "
"ĐÁŇĎĚŃ."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1034,7 +1037,7 @@ msgstr ""
"đÁŇĎĚÉ ÔĹĐĹŇŘ ×ËĚŔŢĹÎŮ, ÎĎ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ × ËÁŢĹÓÔ×Ĺ ÓĹÔĹ×ĎÇĎ ËĎÍĐŘŔÔĹŇÁ ĐĎ-"
"ĐŇĹÖÎĹÍŐ ÎĹ ŇĹËĎÍĹÎÄŐĹÔÓŃ."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1042,7 +1045,7 @@ msgstr ""
"üÔĎ ÓÔÁÎÄÁŇÔÎŮĘ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ, ŇĹËĎÍĹÎÄŐĹÍŮĘ ÄĚŃ ËĎÍĐŘŔÔĹŇÁ,\n"
"ËĎÔĎŇŮĘ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ÄĚŃ ĐĎÄËĚŔŢĹÎÉŃ Ë éÎÔĹŇÎĹÔŐ × ËÁŢĹÓÔ×Ĺ ËĚÉĹÎÔÁ."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1050,7 +1053,7 @@ msgstr ""
"őÖĹ ĐŇÉÓŐÔÓÔ×ŐĹÔ ŇŃÄ ĎÇŇÁÎÉŢĹÎÉĘ É ËÁÖÄŐŔ ÎĎŢŘ ÚÁĐŐÓËÁŔÔÓŃ ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ "
"Á×ÔĎÍÁÔÉŢĹÓËÉĹ ĐŇĎ×ĹŇËÉ."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1064,7 +1067,7 @@ msgstr ""
"ÍÁŰÉÎÁ Ń×ĚŃĹÔÓŃ ÔĎĚŘËĎ ËĚÉĹÎÔĎÍ éÎÔĹŇÎĹÔÁ, ×Ů ÄĎĚÖÎŮ ×ŮÂŇÁÔŘ ÂĎĚĹĹ ÎÉÚËÉĘ "
"ŐŇĎ×ĹÎŘ."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1072,42 +1075,43 @@ msgstr ""
"üÔĎÔ ŐŇĎ×ĹÎŘ ĐĎČĎÖ ÎÁ ĐŇĹÄŮÄŐÝÉĘ, ÎĎ ÓÉÓÔĹÍÁ ĐĎĚÎĎÓÔŘŔ ÚÁËŇŮÔÁ É ĐÁŇÁÍĹÔŇŮ "
"ÂĹÚĎĐÁÓÎĎÓÔÉ ŐÓÔÁÎĎ×ĚĹÎŮ × ÉČ ÍÁËÓÉÍÁĚŘÎŮĹ ÚÎÁŢĹÎÉŃ."
-#: ../../any.pm_.c:1094
-#, fuzzy
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
-msgstr "đÁŇÁÍĹÔŇŮ"
+msgstr "ďÓÎĎ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ DrakSec"
-#: ../../any.pm_.c:1095
-#, fuzzy
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
-msgstr "őŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ÖĹĚÁĹÍŮĘ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "őŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ libsafe ÄĚŃ ÓĹŇ×ĹŇÁ"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "âÉÂĚÉĎÔĹËÁ, ÚÁÝÉÝÁŔÝÁŃ ĎÔ ÁÔÁË ĐĹŇĹĐĎĚÎĹÎÉŃ ÂŐĆĹŇÁ É ĆĎŇÍÁÔÁ ÓÔŇĎËÉ."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "áÄÍÉÎÉÓÔŇÁÔĎŇ ÂĹÚĎĐÁÓÎĎÓÔÉ (ĚĎÇÉÎ ÉĚÉ email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
"(eg: latin and non latin)"
msgstr ""
+"ÚÄĹÓŘ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ËĚÁ×ÉŰŐ ÉĚÉ ËĎÍÂÉÎÁĂÉŔ ËĚÁ×ÉŰ, ËĎÔĎŇŮĹ\n"
+"ĐĎÚ×ĎĚŃÔ ĐĹŇĹËĚŔŢÁÔŘÓŃ ÍĹÖÄŐ ŇÁÚĚÉŢÎŮÍÉ ŇÁÓËĚÄËÁÍÉ ËĚÁ×ÍÁÔŐŇŮ\n"
+"(ÎÁĐŇÉÍĹŇ: ĚÁÔÉÎÓËÁŃ É ŇŐÓÓËÁŃ)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1124,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:938
+#: ../../bootloader.pm_.c:989
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:941
+#: ../../bootloader.pm_.c:992
#, 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:944
+#: ../../bootloader.pm_.c:995
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:947
+#: ../../bootloader.pm_.c:998
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:950
+#: ../../bootloader.pm_.c:1001
#, 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:954
+#: ../../bootloader.pm_.c:1005
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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "ňÁÂĎŢÉĘ ÓÔĎĚ"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "çĚÁ×ÎĎĹ ÍĹÎŔ"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "÷Ů ÎĹ ÍĎÖĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË ÎÁ ŇÁÚÄĹĚ %s\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "ÓĐŇÁ×ËÁ ĐĎËÁ ÎĹ ÓĎÚÄÁÎÁ.\n"
@@ -1227,106 +1231,107 @@ msgstr "ňĹÖÉÍ Lilo/grub"
msgid "Yaboot mode"
msgstr "ňĹÖÉÍ Yaboot"
-#: ../../bootlook.pm_.c:148
-#, fuzzy
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
-msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
+msgstr "őÓÔÁÎĎ×ÉÔŘ ÔĹÍŮ"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
-msgstr ""
+msgstr "đĎËÁÚŮ×ÁÔŘ ÔĹÍŮ × ËĎÎÓĎĚÉ"
-#: ../../bootlook.pm_.c:150
-#, fuzzy
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
-msgstr "óĎÚÄÁÔŘ ÎĎ×ŮĘ ŇÁÚÄĹĚ"
+msgstr "óĎÚÄÁÔŘ ÎĎ×ŐŔ ÔĹÍŐ"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
-msgstr ""
+msgstr "ňĹÚĹŇ×ÉŇĎ×ÁÔŘ %s × %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "ďŰÉÂËÁ"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
-msgstr ""
+msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÚÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ÓĎĎÂÝĹÎÉĹ lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
-msgstr ""
+msgstr "ëĎĐÉŇĎ×ÁÔŘ %s × %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
-msgstr ""
+msgstr "ÎĹ×ĎÚÍĎÖÎĎ ÉÚÍĹÎÉÔŘ ÓĎĎÂÝĹÎÉĹ lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
-msgstr ""
+msgstr "óĎĎÂÝĹÎÉĹ lilo ÎĹ ÎÁĘÄĹÎĎ"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
-msgstr ""
+msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ × /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
-#, fuzzy, c-format
+#: ../../bootlook.pm_.c:229
+#, c-format
msgid "Write %s"
-msgstr "XFree86 %s"
+msgstr "úÁĐÉÓÁÔŘ %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
+"îĹ×ĎÚÍĎÖÎĎ ÚÁĐÉÓÁÔŘ × /etc/sysconfig/bootsplash\n"
+"ćÁĘĚ ÎĹ ÎÁĘÄĹÎ."
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
-msgstr ""
+msgstr "îĹ×ĎÚÍĎÖÎĎ ÚÁĐŐÓÔÉÔŘ mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-msgstr ""
+msgstr "óĎÚÄÁÔŘ initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
+"îĹ×ĎÚÍĎÖÎĎ ĐĹŇĹÁÚĐŐÓÔÉÔŘ LiLo!\n"
+"úÁĐŐÓÔÉÔĹ \"lilo\" ĐĎÄ root'ĎÍ ÉÚ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ, ŢÔĎÂŮ ÚÁ×ĹŇŰÉÔŘ "
+"ŐÓÔÁÎĎ×ËŐ ÔĹÍŮ LiLo."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
-msgstr ""
+msgstr "đĹŇĹÚÁĐŐÓÔÉÔŘ 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
-msgstr "âĹÚ ÇŇÁĆÉËÉ"
+msgstr "ő×ĹÄĎÍĚĹÎÉĹ"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
-msgstr ""
+msgstr "őÓÔÁÎĎ×ËÁ ÔĹÍ LiLo É Bootsplash ŐÓĐĹŰÎĎ ÚÁ×ĹŇŰĹÎÁ"
-#: ../../bootlook.pm_.c:259
-#, fuzzy
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
-msgstr "÷ŮÂĹŇÉÔĹ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ"
+msgstr "őÓÔÁÎĎ×ËÁ ÔĹÍŮ ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢĹĘ!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1335,22 +1340,21 @@ msgstr ""
"÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ %s × ËÁŢĹÓÔ×Ĺ ÍĹÎĹÄÖĹŇÁ ÚÁÇŇŐÚËÉ.\n"
"ýĹĚËÎÉÔĹ ÎÁ îÁÓÔŇĎĘËŐ ÄĚŃ ÚÁĐŐÓËÁ ÍÁÓÔĹŇÁ ŐÓÔÁÎĎ×ËÉ."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "îÁÓÔŇĎĘËÁ"
-#: ../../bootlook.pm_.c:277
-#, fuzzy
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
-msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
+msgstr "÷ŮÂĎŇ ÚÁÓÔÁ×ËÉ"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
-msgstr ""
+msgstr "ôĹÍŮ"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1358,47 +1362,52 @@ msgid ""
"you can choose\n"
"them separatly"
msgstr ""
+"\n"
+"÷ŮÂĹŇÉÔĹ ÔĹÍŐ ÄĚŃ\n"
+"lilo É bootsplash,\n"
+"×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ\n"
+"ÉČ ĐĎ-ĎÔÄĹĚŘÎĎÓÔÉ"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
-msgstr ""
+msgstr "üËŇÁÎ Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
-msgstr ""
+msgstr "Bootsplash"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "óÉÓÔĹÍÎŮĘ ŇĹÖÉÍ"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "úÁĐŐÓËÁÔŘ ÇŇÁĆÉŢĹÓËŐŔ ĎÂĎĚĎŢËŐ ĐŇÉ ÚÁÇŇŐÚËĹ ÓÉÓÔĹÍŮ"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "îĹÔ, Ń ÎĹ ČĎŢŐ ÉÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉĘ ×ČĎÄ"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"äÁ, Ń ČĎŢŐ ÉÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉĘ ×ČĎÄ Ó ÜÔÉÍÉ (ĐĎĚŘÚĎ×ÁÔĹĚŘ,\n"
"ŇÁÂĎŢÉÍ ÓÔĎĚĎÍ)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "ÎĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ ÄĚŃ ŢÔĹÎÉŃ /etc/inittab : %s"
@@ -1495,54 +1504,62 @@ msgstr "á×ÓÔŇÉŃ"
msgid "United States"
msgstr "óĎĹÄÉÎĹÎÎŮĹ űÔÁÔŮ"
-#: ../../diskdrake/dav.pm_.c:23
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+"WebDAV Ń×ĚŃĹÔÓŃ ĐŇĎÔĎËĎĚĎÍ, ËĎÔĎŇŮĘ ĐĎÚ×ĎĚŃĹÔ ×ÁÍ ĚĎËÁĚŘÎĎ ÍĎÎÔÉŇĎ×ÁÔŘ "
+"ÄÉŇĹËÔĎŇÉŔ ×ĹÂ-ÓĹŇ×ĹŇÁ, ÉÎÔĹŇĐŇĹÔÉŇŐŃ ĹĹ ËÁË ĚĎËÁĚŘÎŐŔ ĆÁĘĚĎ×ŐŔ ÓÉÓÔĹÍŐ (ĐŇÉ "
+"ŐÓĚĎ×ÉÉ, ŢÔĎ ×ĹÂ-ÓĹŇ×ĹŇ ÎÁÓÔŇĎĹÎ ËÁË ÓĹŇ×ĹŇ WebDAV). ĺÓĚÉ ×Ů ÚÁČĎÔÉÔĹ "
+"ÄĎÂÁ×ÉÔŘ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ WebDAV, ×ŮÂĹŇÉÔĹ \"îĎ×ÁŃ\"."
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
-msgstr "ÎĎ×ŮĘ"
+msgstr "îĎ×ÁŃ"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../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/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "íĎÎÔÉŇĎ×ÁÔŘ"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "óĹŇ×ĹŇ"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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:81
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
-msgstr "đŇĎ×ĹŇŘÔĹ ×ÁŰŐ ÍŮŰŘ"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ URL ÓĹŇ×ĹŇÁ WebDAV"
-#: ../../diskdrake/dav.pm_.c:84
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
-msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ http://..."
+msgstr "URL ÄĎĚÖĹÎ ÎÁŢÉÎÁÔŘÓŃ Ó http:// ÉĚÉ https://"
-#: ../../diskdrake/dav.pm_.c:105
-#, fuzzy
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
-msgstr "óĹŇ×ĹŇ"
+msgstr "óĹŇ×ĹŇ: "
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "ôĎŢËÁ ÍĎÎÔÉŇĎ×ÁÎÉŃ:"
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "đÁŇÁÍĹÔŇŮ: %s"
@@ -1597,9 +1614,8 @@ msgid "Details"
msgstr "đĎÄŇĎÂÎĎÓÔÉ"
#: ../../diskdrake/hd_gtk.pm_.c:252
-#, fuzzy
msgid "No hard drives found"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
+msgstr "öĹÓÔËÉĹ ÄÉÓËŮ ÎĹ ÎÁĘÄĹÎŮ"
#: ../../diskdrake/hd_gtk.pm_.c:323
msgid "Ext2"
@@ -1631,7 +1647,7 @@ msgstr "đŐÓÔĎ"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "äŇŐÇÉĹ"
@@ -1774,7 +1790,7 @@ msgstr ""
"ňĹÚĹŇ×ÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ÄÉÓËÁ ÉÍĹĹÔ ÄŇŐÇĎĘ ŇÁÚÍĹŇ\n"
"÷ÓĹ-ÔÁËÉ ĐŇĎÄĎĚÖÉÔŘ?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "÷ÎÉÍÁÎÉĹ"
@@ -1856,6 +1872,9 @@ msgid ""
"(since you reached the maximal number of primary partitions).\n"
"First remove a primary partition and create an extended partition."
msgstr ""
+"÷Ů ÎĹ ÍĎÖĹÔĹ ÓĎÚÄÁÔŘ ÎĎ×ŮĘ ŇÁÚÄĹĚ\n"
+"(×Ů ÄĎÓÔÉÇÎŐĚÉ ÍÁËÓÉÍÁĚŘÎĎÇĎ ËĎĚÉŢĹÓÔ×Á ĐĹŇ×ÉŢÎŮČ ŇÁÚÄĹĚĎ×).\n"
+"óÎÁŢÁĚÁ ŐÄÁĚÉÔĹ ĐĹŇ×ÉŢÎŮĘ ŇÁÚÄĹĚ É ÓĎÚÄÁĘÔĹ ŇÁÓŰÉŇĹÎÎŮĘ ŇÁÚÄĹĚ."
#: ../../diskdrake/interactive.pm_.c:499
msgid "Remove the loopback file?"
@@ -1892,9 +1911,9 @@ msgstr ""
"loop back. őÄÁĚÉÔĹ ÓÎÁŢÁĚÁ loopback"
#: ../../diskdrake/interactive.pm_.c:594
-#, fuzzy, c-format
+#, c-format
msgid "Where do you want to mount %s?"
-msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ĐŇÉÍĎÎÔÉŇĎ×ÁÔŘ ŐÓÔŇĎĘÓÔ×Ď %s?"
+msgstr "ëŐÄÁ ×Ů ČĎÔÉÔĹ ĐŇÉÍĎÎÔÉŇĎ×ÁÔŘ %s?"
#: ../../diskdrake/interactive.pm_.c:618
msgid "Computing FAT filesystem bounds"
@@ -2242,7 +2261,7 @@ msgstr ""
#: ../../diskdrake/interactive.pm_.c:1150
msgid "Read-only"
-msgstr ""
+msgstr "ôĎĚŘËĎ ÄĚŃ ŢÔĹÎÉŃ"
#: ../../diskdrake/interactive.pm_.c:1151
#, c-format
@@ -2332,7 +2351,7 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ Ó×ĎÉ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ, ĐÁŇĎĚŘ É ÉÍŃ ÄĎÍĹÎÁ, ŢÔĎÂŮ "
"ĐĎĚŐŢÉÔŘ ÄĎÓÔŐĐ Ë ČĎÓÔŐ"
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
@@ -2344,23 +2363,23 @@ msgstr "äĎÍĹÎ"
msgid "Search servers"
msgstr "đĎÉÓË ÓĹŇ×ĹŇĎ×"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "ÓĎÚÄÁÎÉĹ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ %s ÎÁ %s ÚÁ×ĹŇŰÉĚĎÓŘ ÎĹŐÄÁŢÎĎ"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "îĹ ÚÎÁŔ ËÁË ĆĎŇÍÁÔÉŇĎ×ÁÔŘ %s Ó ÔÉĐĎÍ %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "ÍĎÎÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚÁ %s Ë ÄÉŇĹËÔĎŇÉÉ %s ÚÁ×ĹŇŰÉĚĎÓŘ ÎĹŐÄÁŢÎĎ"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "ĎŰÉÂËÁ ŇÁÚÍĎÎÔÉŇĎ×ÁÎÉŃ %s: %s"
@@ -2378,7 +2397,7 @@ msgid "server"
msgstr "ÓĹŇ×ĹŇ"
#: ../../fsedit.pm_.c:240
-#, fuzzy, c-format
+#, 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"
@@ -2387,12 +2406,13 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"îĹ ÍĎÇŐ ĐŇĎŢÉÔÁÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×, ĎÎÁ ÓĚÉŰËĎÍ ĐĎ×ŇĹÖÄĹÎÁ ÄĚŃ ÍĹÎŃ :(\n"
-"íĎÖÎĎ ĐĎĐŇĎÂĎ×ÁÔŘ ĎŢÉÓÔÉÔŘ ĐĚĎČÉĹ ŇÁÚÄĹĚŮ (÷óń éîćďňíáăéń ÂŐÄĹÔ ĐĎÔŇĹŃÎÁ!).\n"
-"äŇŐÇĎĘ ×ÁŇÉÁÎÔ - ÎĹ ŇÁÚŇĹŰÁÔŘ DrakX ÉÚÍĹÎŃÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×.\n"
+"îĹ ÍĎÇŐ ĐŇĎŢÉÔÁÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ× ÎÁ ŐÓÔŇĎĘÓÔ×Ĺ %s, ĎÎÁ ÓĚÉŰËĎÍ ĐĎ×ŇĹÖÄĹÎÁ\n"
+"ÄĚŃ ÍĹÎŃ :( ń ÍĎÇŐ ĐĎĐŇĎÂĎ×ÁÔŘ ĐŇĎÄĎĚÖÉÔŘ, ĎŢÉÓÔÉ× ĐĚĎČÉĹ ŇÁÚÄĹĚŮ (÷óń \n"
+"éîćďňíáăéń ÂŐÄĹÔ ĐĎÔĹŇŃÎÁ!). äŇŐÇĎĘ ×ÁŇÉÁÎÔ - ÎĹ ŇÁÚŇĹŰÁÔŘ DrakX ÉÚÍĹÎŃÔŘ\n"
+"ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×.\n"
"(ĎŰÉÂËÁ %s)\n"
"\n"
-"÷Ů ÓĎÇĚÁÓÎŮ ĐĎÔĹŇŃÔŘ ×ÓĹ ×ÁŰÉ ŇÁÚÄĹĚŮ?\n"
+"÷Ů ÓĎÇĚÁÓÎŮ ĐĎÔĹŇŃÔŘ ×ÓĹ Ó×ĎÉ ŇÁÚÄĹĚŮ?\n"
#: ../../fsedit.pm_.c:501
msgid "You can't use JFS for partitions smaller than 16MB"
@@ -2448,45 +2468,121 @@ msgstr "îĹŢĹÇĎ ×ŮĐĎĚÎŃÔŘ"
msgid "Error opening %s for writing: %s"
msgstr "ďŰÉÂËÁ ĎÔËŇŮÔÉŃ %s ÄĚŃ ÚÁĐÉÓÉ: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
-msgstr ""
+msgstr "áĚŘÔĹŇÎÁÔÉ×ÎŮĘ ÄŇÁĘ×ĹŇ ĎÔÓŐÔÓÔ×ŐĹÔ"
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
msgstr ""
+"äĚŃ ×ÁŰĹĘ Ú×ŐËĎ×ĎĘ ËÁŇÔŮ (%s) ĎÔÓŐÔÓÔ×ŐĹÔ ÁĚŘÔĹŇÎÁÔÉ×ÎŮĘ ÄŇÁĘ×ĹŇ OSS/ALSA, "
+"ËĎÔĎŇÁŃ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ÉÓĐĎĚŘÚŐĹÔ \"%s\""
-#: ../../harddrake/sound.pm_.c:158
-#, fuzzy
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
+msgstr "îÁÓÔŇĎĘËÁ Ú×ŐËÁ"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
+"úÄĹÓŘ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÁĚŘÔĹŇÎÁÔÉ×ÎŮĘ ÄŇÁĘ×ĹŇ (OSS ÉĚÉ ALSA) ÄĚŃ Ó×ĎĹĘ "
+"Ú×ŐËĎ×ĎĘ ËÁŇÔŮ (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+"\n"
+"\n"
+"÷ ÎÁÓÔĎŃÝÉĘ ÍĎÍĹÎÔ ×ÁŰÁ ËÁŇÔÁ ÉÓĐĎĚŘÚŐĹÔ ÄŇÁĘ×ĹŇ %s\"%s\" (ÄŇÁĘ×ĹŇĎÍ ĐĎ "
+"ŐÍĎĚŢÁÎÉŔ ÄĚŃ ×ÁŰĹĘ ËÁŇÔŮ Ń×ĚŃĹÔÓŃ \"%s\")"
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "äŇÁĘ×ĹŇ:"
-#: ../../harddrake/sound.pm_.c:173
-msgid "No known driver"
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "óĐŇÁ×ËÁ"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr "đĹŇĹËĚŔŢĹÎÉĹ ÍĹÖÄŐ ÓĐŇÁ×ËÁÍÉ ALSA É OSS"
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
msgstr ""
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:200
#, c-format
-msgid "There's no known driver for your sound card (%s)"
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
+"óÔÁŇŮĘ ÄŇÁĘ×ĹŇ \"%s\" ÚÁÎĹÓĹÎ × ŢĹŇÎŮĘ ÓĐÉÓĎË.\n"
+"\n"
+"ď ÎĹÍ ÂŮĚ ÓĎÚÄÁÎ ĎÔŢĹÔ, ŢÔĎÂŮ ĐŇĹÄŐĐŇĹÄÉÔŘ ŃÄŇĎ ĐŇÉ ×ŮÇŇŐÚËĹ.\n"
+"\n"
+"îĎ×ŮĘ ÄŇÁĘ×ĹŇ \"%s\" ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÎ ÔĎĚŘËĎ ĐŇÉ ÓĚĹÄŐŔÝĹĘ ÎÁŢÁĚŘÎĎĘ\n"
+"ÚÁÇŇŐÚËĹ."
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ... đŇÉÍĹÎŃŔÔÓŃ ÎÁÓÔŇĎĘËÉ"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ"
+
+#: ../../harddrake/sound.pm_.c:208
+msgid "No known driver"
+msgstr "ďÔÓŐÔÓÔ×ŐĹÔ ÉÚ×ĹÓÔÎŮĘ ÄŇÁĘ×ĹŇ"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:209
+#, c-format
+msgid "There's no known driver for your sound card (%s)"
+msgstr "äĚŃ ×ÁŰĹĘ Ú×ŐËĎ×ĎĘ ËÁŇÔŮ ĎÔÓŐÔÓÔ×ŐĹÔ ÉÚ×ĹÓÔÎŮĘ ÄŇÁĘ×ĹŇ (%s)"
+
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
-msgstr ""
+msgstr "îĹÉÚ×ĹÓÔÎŮĘ ÄŇÁĘ×ĹŇ "
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2495,6 +2591,11 @@ msgid ""
"<install at mandrakesoft dot com>\n"
"with subject: unlisted sound driver \"%s\""
msgstr ""
+"äŇÁĘ×ĹŇÁ \"%s\" ÄĚŃ ×ÁŰĹĘ Ú×ŐËĎ×ĎĘ ËÁŇÔŮ ÎĹÔ × ÓĐÉÓËĹ\n"
+"\n"
+"đĎÖÁĚŐĘÓÔÁ, ĎÔĐŇÁ×ŘÔĹ ĆÁĘĚ Ó ×ŮČĎÄÎŮÍÉ ÄÁÎÎŮÍÉ ËĎÍÁÎÄŮ\n"
+"\"lspcidrake -v\" ÎÁ <install at mandrakesoft dot com>\n"
+"Ó ÔĹÍĎĘ: unlisted sound driver \"%s\""
#: ../../harddrake/ui.pm_.c:16
msgid "Model"
@@ -2597,20 +2698,20 @@ msgid "the vendor name of the device"
msgstr "ÉÍŃ ĐŇĎÉÚ×ĎÄÉÔĹĚŃ ŐÓÔŇĎĘÓÔ×Á"
#: ../../harddrake/ui.pm_.c:38
-#, fuzzy
msgid "Alternative drivers"
-msgstr "áĚŘÔĹŇÎÁÔÉ×ÎÁŃ ÔĹÓÔĎ×ÁŃ ÓÔŇÁÎÉĂÁ (ĆĎŇÍÁÔ á4)"
+msgstr "áĚŘÔĹŇÎÁÔÉ×ÎŮĹ ÄŇÁĘ×ĹŇŮ"
#: ../../harddrake/ui.pm_.c:39
msgid "the list of alternative drivers for this sound card"
-msgstr ""
+msgstr "ÓĐÉÓĎË ÁĚŘÔĹŇÎÁÔÉ×ÎŮČ ÄŇÁĘ×ĹŇĎ× ÄĚŃ ÜÔĎĘ Ú×ŐËĎ×ĎĘ ËÁŇÔŮ"
#: ../../harddrake/ui.pm_.c:63
msgid "/_Quit"
msgstr "/_÷ŮČĎÄ"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_óĐŇÁ×ËÁ"
@@ -2631,14 +2732,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_ďÔŢĹÔ ĎÂ ĎŰÉÂËĹ"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_ď ĐŇĎÇŇÁÍÍĹ..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "ď Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2646,63 +2751,59 @@ msgstr ""
"üÔĎ HardDrake - ÉÎÓÔŇŐÍĹÎÔÁĚŘÎĎĹ ÓŇĹÄÓÔ×Ď Mandrake ÎÁÓÔŇĎĘËÉ ĎÂĎŇŐÄĎ×ÁÎÉŃ.\n"
"÷ĹŇÓÉŃ:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "á×ÔĎŇ:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 ×ĹŇÓÉŃ "
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "ďÂÎÁŇŐÖĹÎÎĎĹ ĎÂĎŇŐÄĎ×ÁÎÉĹ"
-#: ../../harddrake/ui.pm_.c:101
-#, fuzzy
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
-msgstr "đĎËÁÚÁÔŘ ÉÎĆĎŇÍÁĂÉŔ"
+msgstr "éÎĆĎŇÍÁĂÉŃ"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "îÁÓÔŇĎÉÔŘ ÍĎÄŐĚŘ"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "úÁĐŐÓÔÉÔŘ ÓŇĹÄÓÔ×Ď ÎÁÓÔŇĎĘËÉ"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "÷ŮĐĎĚÎŃĹÔÓŃ ĎĐŇĹÄĹĚĹÎÉĹ"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
-msgstr ""
+msgstr "úÄĹÓŘ ×Ů ÍĎÖĹÔĹ ÎÁÓÔŇĎÉÔŘ ËÁÖÄŮĘ ĐÁŇÁÍĹÔŇ ÍĎÄŐĚŃ"
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "úÁĐŐÓËÁĹÔÓŃ \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr ""
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "éÓÓĚĹÄŐĹÔÓŃ ËĚÁÓÓ %s\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "ĐĹŇ×ÉŢÎŮĘ"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "×ÔĎŇÉŢÎŮĘ"
#: ../../harddrake/v4l.pm_.c:15 ../../harddrake/v4l.pm_.c:65
msgid "Auto-detect"
-msgstr "á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
+msgstr "á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ"
#: ../../harddrake/v4l.pm_.c:66 ../../harddrake/v4l.pm_.c:186
msgid "Unknown|Generic"
@@ -2786,6 +2887,36 @@ msgid ""
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default)."
msgstr ""
+"GNU/Linux Ń×ĚŃĹÔÓŃ ÍÎĎÇĎĐĎĚŘÚĎ×ÁÔĹĚŘÓËĎĘ ÓÉÓÔĹÍĎĘ, Á ÜÔĎ ĎÚÎÁŢÁĹÔ, ŢÔĎ\n"
+"ËÁÖÄŮĘ ĐĎĚŘÚĎ×ÁÔĹĚŘ ÍĎÖĹÔ ÉÍĹÔŘ Ó×ĎÉ ÓĎÂÓÔ×ĹÎÎŮĹ ÎÁÓÔŇĎĘËÉ, Ó×ĎÉ\n"
+"ÓĎÂÓÔ×ĹÎÎŮĹ ĆÁĘĚŮ É ÔÁË ÄÁĚĹĹ. ÷Ů ÍĎÖĹÔĹ ĐŇĎŢÉÔÁÔŘ ``ňŐËĎ×ĎÄÓÔ×Ď\n"
+"ĐĎĚŘÚĎ×ÁÔĹĚŃ'', ŢÔĎÂŮ ŐÚÎÁÔŘ ÂĎĚŘŰĹ. îĎ × ĎÔĚÉŢÉĹ ĎÔ \"root'Á\", ËĎÔĎŇŮĘ\n"
+"Ń×ĚŃĹÔÓŃ ÁÄÍÉÎÉÓÔŇÁÔĎŇĎÍ, ĐĎĚŘÚĎ×ÁÔĹĚÉ, ËĎÔĎŇŮČ ×Ů ÚÄĹÓŘ ÄĎÂÁ×ÉÔĹ, ÎĹ ÂŐÄŐÔ\n"
+"ÉÍĹÔŘ ĐŇÁ×Á ÉÚÍĹÎŃÔŘ ŢÔĎ-ĚÉÂĎ, ËŇĎÍĹ ÉČ ÓĎÂÓÔ×ĹÎÎŮČ ĆÁĘĚĎ× É ÉČ ÓĎÂÓÔ×ĹÎÎĎĘ\n"
+"ËĎÎĆÉÇŐŇÁĂÉÉ. ÷Ů ÄĎĚÖÎŮ ÂŐÄĹÔĹ ÓĎÚÄÁÔŘ ĐĎ ËŇÁĘÎĹĘ ÍĹŇĹ ĎÄÎĎÇĎ ĐĎÓÔĎŃÎÎĎÇĎ\n"
+"ĐĎĚŘÚĎ×ÁÔĹĚŃ ÄĚŃ ÓÁÍĎÇĎ ÓĹÂŃ. üÔÁ ŐŢĹÔÎÁŃ ÚÁĐÉÓŘ ĐŇĹÄÎÁÚÎÁŢĹÎÁ ÄĚŃ ÔĎÇĎ,\n"
+"ŢÔĎÂŮ ×Ů ×ČĎÄÉĚÉ × ÓÉÓÔĹÍŐ ÄĚŃ ĐĎ×ÓĹÄÎĹ×ÎĎÇĎ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ. îĹÓÍĎÔŇŃ ÎÁ ÔĎ,\n"
+"ŢÔĎ ĎŢĹÎŘ ŐÄĎÂÎĎ ËÁÖÄŮĘ ÄĹÎŘ ×ČĎÄÉÔŘ × ÓÉÓÔĹÍŐ ĐĎÄ \"root'ĎÍ\", ÜÔĎ ÍĎÖĹÔ\n"
+"ÂŮÔŘ ĎŢĹÎŘ ĎĐÁÓÎĎ! đŇĎÓÔĹĘŰÁŃ ĎŰÉÂËÁ ÍĎÖĹÔ ĐŇÉ×ĹÓÔÉ Ë ÔĎÍŐ, ŢÔĎ ÓÉÓÔĹÍÁ\n"
+"ÂĎĚŘŰĹ ÎĹ ÚÁŇÁÂĎÔÁĹÔ. á ĹÓĚÉ ×Ů ÓĎ×ĹŇŰÉÔĹ ÓĹŇŘĹÚÎŐŔ ĎŰÉÂËŐ ĐĎÄ ĎÂŮŢÎŮÍ\n"
+"ĐĎĚŘÚĎ×ÁÔĹĚĹÍ, ÔĎ, ×ĎÚÍĎÖÎĎ, ŢÔĎ ×Ů ÔĎĚŘËĎ ĐĎÔĹŇŃĹÔĹ ŢÁÓÔŘ ÉÎĆĎŇÍÁĂÉÉ, Á ÎĹ\n"
+"×ÓŔ ÓÉÓÔĹÍŐ.\n"
+"óÎÁŢÁĚÁ, ×Ů ÄĎĚÖÎŮ ××ĹÓÔÉ ÎÁÓÔĎŃÝĹĹ ÉÍŃ. üÔĎ, ËĎÎĹŢÎĎ, ÎĹĎÂŃÚÁÔĹĚŘÎĎ, -\n"
+"ÔÁË ÎÁ ÓÁÍĎÍ ÄĹĚĹ ×Ů ÍĎÖĹÔĹ ××ĹÓÔÉ ×ÓĹ ŢÔĎ ŐÇĎÄÎĎ. úÁÔĹÍ DrakX ×ĎÚŘÍĹÔ\n"
+"ĐĹŇ×ĎĹ ÓĚĎ×Ď, ××ĹÄĹÎÎĎĹ ×ÁÍÉ × ĆĎŇÍŐ, É ÓËĎĐÉŇŐĹÔ ĹÇĎ × ĐĎĚĹ \"éÍŃ\n"
+"ĐĎĚŘÚĎ×ÁÔĹĚŃ\". üÔĎ ÉÍŃ, ËĎÔĎŇĎĹ ÄÁÎÎŮĘ ĎÔÄĹĚŘÎĎ ×ÚŃÔŮĘ ĐĎĚŘÚĎ×ÁÔĹĚŘ ÂŐÄĹÔ\n"
+"ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ×ČĎÄÁ × ÓÉÓÔĹÍŐ. ÷Ů ÍĎÖĹÔĹ ÉÚÍĹÎÉÔŘ ĹÇĎ. äÁĚĹĹ ×Ů ÄĎĚÖÎŮ\n"
+"××ĹÓÔÉ ĐÁŇĎĚŘ. đÁŇĎĚŘ ÎĹĐŇÉ×ÉĚĹÇÉŇĎ×ÁÎÎĎÇĎ (ĎÂŮŢÎĎÇĎ) ĐĎĚŘÚĎ×ÁÔĹĚŃ ÎĹ\n"
+"ÎÁÓÔĎĚŘËĎ ×ÁÖĹÎ ËÁË ĐÁŇĎĚŘ \"root'Á\" Ó ÔĎŢËÉ ÚŇĹÎÉŃ ÂĹÚĎĐÁÓÎĎÓÔÉ, ĎÄÎÁËĎ\n"
+"ÜÔĎ ÎĹ ĐĎ×ĎÄ, ŢÔĎÂŮ ĐŇĹÎĹÂŇĹÇÁÔŘ ÉÍ: ËÁË-ÎÉËÁË, ×Ů ŇÉÓËŐĹÔĹ Ó×ĎÉÍÉ ĆÁĘĚÁÍÉ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ÝĹĚËÎÉÔĹ ÎÁ \"đŇÉÎŃÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ\", ÔĎÇÄÁ ×Ů ÓÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÉČ\n"
+"ÓÔĎĚŘËĎ, ÓËĎĚŘËĎ ×ÁÍ ÎŐÖÎĎ. äĎÂÁ×ŘÔĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ ÄĚŃ ËÁÖÄĎÇĎ ÉÚ Ó×ĎÉČ\n"
+"ÄŇŐÚĹĘ: Ó×ĎĹÇĎ ĎÔĂÁ ÉĚÉ ÓĹÓÔŇŮ, ÎÁĐŇÉÍĹŇ. ëĎÇÄÁ ×Ů ÚÁËĎÎŢÉÔĹ ÄĎÂÁ×ĚĹÎÉĹ\n"
+"×ÓĹČ ÎŐÖÎŮČ ×ÁÍ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ, ×ŮÂĹŇÉÔĹ \"çĎÔĎ×Ď\"./nýĹĚËÎŐ× ĐĎ ËÎĎĐËĹ "
+"\"äĎĐĎĚÎÉÔĹĚŘÎĎ\", ×ÁÍ ÂŐÄĹÔ ĐĎÚ×ĎĚĹÎĎ ÉÚÍĹÎÉÔŘ\n"
+"\"ËĎÍÁÎÄÎŮĘ ĐŇĎĂĹÓÓĎŇ\", ÉĐĎĚŘÚŐĹÍŮĘ ĐĎ ŐÍĎĚŢÁÎÉŔ ÄĚŃ ÜÔĎÇĎ ĐĎĚŘÚĎ×ÁÔĹĚŃ\n"
+"(ĐĎ ŐÍĎĚŢÁÎÉŔ ÜÔĎ bash)."
#: ../../help.pm_.c:41
msgid ""
@@ -2859,9 +2990,10 @@ msgid ""
"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 ""
-"äÉÓÔŇÉÂŐÔÉ× Mandrake Linux ĐĎÓÔÁ×ĚŃĹÔÓŃ ÎÁ ÎĹÓËĎĚŘËÉČ CD-ROM'ÁČ. DrakX\n"
-"ÓÁÍ ĎĐŇĹÄĹĚÉÔ, ĹÓĚÉ ×ŮÂŇÁÎÎŮĘ ĐÁËĹÔ ÎÁČĎÄÉÔÓŃ ÎÁ ÄŇŐÇĎÍ CD-ROM'Ĺ, ÉÚ×ĚĹŢĹÔ\n"
-"ÔĹËŐÝÉĘ CD É ĐĎĐŇĎÓÉÔ ×ÁÓ ×ÓÔÁ×ÉÔŘ ÔŇĹÂŐĹÍŮĘ ÄÉÓË."
+"äÉÓÔŇÉÂŐÔÉ× Mandrake Linux ĐĎÓÔÁ×ĚŃĹÔÓŃ ÎÁ ÎĹÓËĎĚŘËÉČ ËĎÍĐÁËÔ-ÄÉÓËÁČ. DrakX\n"
+"ÓÁÍ ĎĐŇĹÄĹĚÉÔ, ĹÓĚÉ ×ŮÂŇÁÎÎŮĘ ĐÁËĹÔ ÎÁČĎÄÉÔÓŃ ÎÁ ÄŇŐÇĎÍ ËĎÍĐÁËÔ-ÄÉÓËĹ, "
+"ÉÚ×ĚĹŢĹÔ\n"
+"ÔĹËŐÝÉĘ ÄÉÓË É ĐĎĐŇĎÓÉÔ ×ÁÓ ×ÓÔÁ×ÉÔŘ ÔŇĹÂŐĹÍŮĘ."
#: ../../help.pm_.c:77
msgid ""
@@ -2915,6 +3047,56 @@ msgid ""
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
+"ôĹĐĹŇŘ ÎÁÓÔÁĚĎ ×ŇĹÍŃ ×ŮÂŇÁÔŘ ĐŇĎÇŇÁÍÍŮ, ËĎÔĎŇŮĹ ×Ů ÖĹĚÁĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ × \n"
+"Ó×ĎŔ ÓÉÓÔĹÍŐ. óŐÝĹÓÔ×ŐŔÔ ÔŮÓŃŢÉ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ× ÄĚŃ Mandrake Linux É ×ÁÍ\n"
+"×Ď×ÓĹ ÎĹĎÂŃÚÁÔĹĚŘÎĎ ÚÎÁÔŘ ÉČ ×ÓĹ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ×ŮĐĎĚÎŃĹÔĹ ÓÔÁÎÄÁŇÔÎŐŔ ŐÓÔÁÎĎ×ËŐ Ó ËĎÍĐÁËÔ-ÄÉÓËÁ, ĎÔ ×ÁÓ ÓÎÁŢÁĚÁ\n"
+"ĐĎÔŇĹÂŐĹÔÓŃ ŐËÁÚÁÔŘ ËĎÍĐÁËÔ-ÄÉÓËÉ, ËĎÔĎŇŮĹ ĹÓÔŘ Ő ÉÍĹŔÔÓŃ (ÔĎĚŘËĎ × ŇĹÖÉÍĹ\n"
+"üËÓĐĹŇÔÁ). đŇĎ×ĹŇŘÔĹ ÍĹÔËÉ ÎÁ ÄÉÓËÁČ É ĎÔÍĹÔŘÔĹ ÇÁĚĎŢËÁÍÉ ĐŐÎËÔŮ,\n"
+"ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĹ ÉÍĹŔÝÉÍÓŃ Ő ×ÁÓ ŐÓÔÁÎĎ×ĎŢÎŮÍÉ ËĎÍĐÁËÔ-ÄÉÓËÁÍ. ëĎÇÄÁ ×Ů\n"
+"ÂŐÄĹÔĹ ÇĎÔĎ×Ů ĐŇĎÄĎĚÖÁÔŘ, ÎÁÖÍÉÔĹ \"ďë\".\n"
+"\n"
+"đÁËĹÔŮ ĎÔÓĎŇÔÉŇĎ×ÁÎŮ ĐĎ ÇŇŐĐĐÁÍ ÓĎÇĚÁÓÎĎ ĐĎ×ÓĹÄÎĹ×ÎĎÍŐ ÉÓĐĎĚŘÚĎ×ÁÎÉŔ\n"
+"×ÁŰĹĘ ÍÁŰÉÎŮ. óÁÍÉ ÇŇŐĐĐŮ ÄĹĚŃÔÓŃ ÎÁ ŢĹÔŮŇĹ ŇÁÚÄĹĚÁ:\n"
+"\n"
+" * \"ňÁÂĎŢÁŃ ÓÔÁÎĂÉŃ\": ĹÓĚÉ ×Ů ĐĚÁÎÉŇŐĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎŔ ÍÁŰÉÎŐ\n"
+"× ËÁŢĹÓÔ×Ĺ ŇÁÂĎŢĹĘ ÓÔÁÎĂÉÉ, ×ŮÂĹŇÉÔĹ ĎÄÎŐ ÉĚÉ ÎĹÓËĎĚŘËĎ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉČ\n"
+"ÇŇŐĐĐ;\n"
+"\n"
+" * \"ňÁÚŇÁÂĎÔËÁ\": ĹÓĚÉ ×ÁŰÁ ÍÁŰÉÎÁ ÉÓĐĎĚŘÚŐĹÔÓŃ ÄĚŃ ĐŇĎÇŇÁÍÍÉŇĎ×ÁÎÉŃ,\n"
+"×ŮÂĹŇÉÔĹ ÎŐÖÎŮĹ ÇŇŐĐĐŮ;\n"
+"\n"
+" * \"óĹŇ×ĹŇ\": ĹÓĚÉ ×ÁŰÁ ÍÁŰÉÎÁ ĐŇĹÄÎÁÚÎÁŢĹÎÁ ÉÓĐĎĚÎŃÔŘ ŇĎĚŘ ÓĹŇ×ĹŇÁ,\n"
+"×Ů ÓÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄĚŃ ŐÓÔÁÎĎ×ËÉ ÎÁ Ó×ĎŔ ÍÁŰÉÎŐ ÎÁÉÂĎĚĹĹ ĎÂÝÉĹ ÓĹŇ×ÉÓŮ;\n"
+"\n"
+" * \"çŇÁĆÉŢĹÓËÁŃ ĎÂĎĚĎŢËÁ\": ÚÄĹÓŘ, ÎÁËĎÎĹĂ, ×Ů ÓÍĎÖĹÔĹ ×ŮÂŇÁÔŘ\n"
+"ÖĹĚÁĹÍŐŔ ÇŇÁĆÉŢĹÓËŐŔ ĎÂĎĚĎŢËŐ. äĎĚÖÎÁ ÂŮÔŘ ×ŮÂŇÁÎÁ ĐĎ ËŇÁĘÎĹĘ ÍĹŇĹ ĎÄÎÁ,\n"
+"ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉÍĹÔŘ ŇÁÂĎŢŐŔ ÓÔÁÎĂÉŔ Ó ÇŇÁĆÉŢĹÓËÉÍ ÉÎÔĹŇĆĹĘÓĎÍ!\n"
+"\n"
+"đŇÉ ÎÁ×ĹÄĹÎÉÉ ÍŮŰÉ ÎÁ ÎÁÚ×ÁÎÉĹ ÇŇŐĐĐŮ ĐĎŃ×ÉÔÓŃ ËĎŇĎÔËÉĘ ĐĎŃÓÎÉÔĹĚŘÎŮĘ ÔĹËÓÔ\n"
+"Ď ÜÔĎĘ ÇŇŐĐĐĹ. ĺÓĚÉ ÓÎÉÍĹÔĹ ×ŮÄĹĚĹÎÉĹ ÓĎ ×ÓĹČ ÇŇŐĐĐ ĐŇÉ ×ŮĐĎĚÎĹÎÉÉ\n"
+"ĎŢĹŇĹÄÎĎĘ ŐÓÔÁÎĎ×ËÉ (× ĎÔĚÉŢÉĹ ĎÔ ĎÂÎĎ×ĚĹÎÉŃ), ×ÓĐĚŮ×ĹÔ ÄÉÁĚĎÇ,\n"
+"ĐŇĹÄĚÁÇÁŔÝÉĘ ŇÁÚĚÉŢÎŮĹ ×ÁŇÉÁÎÔŮ ÍÉÎÉÍÁĚŘÎĎĘ ŐÓÔÁÎĎ×ËÉ:\n"
+"\n"
+" * \"÷ÍĹÓÔĹ Ó č\": ŐÓÔÁÎĎ×ÉÔ ÍÉÎÉÍŐÍ ĐÁËĹÔĎ×, ÎĹĎÂČĎÄÉÍŮČ ÄĚŃ ŇÁÂĎÔŮ\n"
+"ÇŇÁĆÉŢĹÓËĎÇĎ ŇÁÂĎŢĹÇĎ ÓÔĎĚÁ;\n"
+"\n"
+" * \"ó ĎÓÎĎ×ÎĎĘ ÄĎËŐÍĹÎÔÁĂÉĹĘ\": ŐÓÔÁÎÁ×ĚÉ×ÁĹÔ ÂÁÚĎ×ŐŔ ÓÉÓÔĹÍŐ ĐĚŔÓ\n"
+"ĎÓÎĎ×ÎŮĹ ŐÔÉĚÉÔŮ É ÄĎËŐÍĹÎÔÁĂÉŔ Ë ÎÉÍ. üÔĎÔ ×ÁŇÉÁÎÔ ĐĎÄČĎÄÉÔ ÄĚŃ\n"
+"ŐÓÔÁÎĎ×ËÉ ÓĹŇ×ĹŇÁ;\n"
+"\n"
+" * \"äĹĘÓÔ×ÉÔĹĚŘÎĎ ÍÉÎÉÍÁĚŘÎÁŃ ŐÓÔÁÎĎ×ËÁ\": ŐÓÔÁÎĎ×ÉÔ ÄĎ ĐŇĹÄĹĚÁ ÍÉÎÉÍÁĚŘÎĎ\n"
+"ÎĹĎÂČĎÄÉÍĎĹ, ŢÔĎÂŮ ĐĎĚŐŢÉÔŘ ŇÁÂĎŢŐŔ ÓÉÓÔĹÍŐ Linux Ó ËĎÍÁÎÄÎĎĘ ÓÔŇĎËĎĘ.\n"
+"üÔÁ ŐÓÔÁÎĎ×ËÁ ÔŇĹÂŐĹÔ ĎËĎĚĎ 65 í ÄÉÓËĎ×ĎÇĎ ĐŇĎÓÔŇÁÎÓÔ×Á.\n"
+"\n"
+"÷Ů ÍĎÖĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĆĚÁÖĎË \"óÁÍĎÓÔĎŃÔĹĚŘÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×\", ËĎÔĎŇŮĘ\n"
+"ĐĎĚĹÚĹÎ, ĹÓĚÉ ÚÎÁËĎÍŮ Ó ĐŇĹÄĚÁÇÁĹÍŮÍÉ ĐÁËĹÔÁÍÉ, ÉĚÉ, ĹÓĚÉ ×Ů ÖĹĚÁĹÔĹ\n"
+"ĐĎĚŐŢÉÔŘ ĐĎĚÎŮĘ ËĎÎÔŇĎĚŘ ÎÁÄ ÔĹÍ, ŢÔĎ ÂŐÄĹÔ ŐÓÔÁÎÁ×ĚĹÎĎ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ÎÁŢÁĚÉ ŐÓÔÁÎĎ×ËŐ × ŇĹÖÉÍĹ \"ďÂÎĎ×ĚĹÎÉĹ\", ×Ů ÍĎÖĹÔĹ ÓÎŃÔŘ ×ŮÄĹĚĹÎÉĹ\n"
+"ÓĎ ×ÓĹČ ÇŇŐĐĐ, ŢÔĎÂŮ ÉÚÂĹÖÁÔŘ ŐÓÔÁÎĎ×ËÉ ËÁËÉČ-ĚÉÂĎ ÎĎ×ŮČ ĐÁËĹÔĎ×.\n"
+"üÔĎ ĐĎĚĹÚÎĎ ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ ÉĚÉ ĎÂÎĎ×ĚĹÎÉŃ ÓŐÝĹÓÔ×ŐŔÝĹĘ ÓÉÓÔĹÍŮ."
#: ../../help.pm_.c:128
msgid ""
@@ -2953,6 +3135,41 @@ msgid ""
"another installation. See the second tip of last step on how to create such\n"
"a floppy."
msgstr ""
+"îÁËĎÎĹĂ, × ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ÔĎÇĎ, ÓÁÍĎÓÔĎŃÔĹĚŘÎĎ ×Ů ×ŮÂÉŇÁĹÔĹ ĐÁËĹÔŮ ÉĚÉ ÎĹÔ,\n"
+"×ÁÍ ÂŐÄĹÔ ĐŇĹÄÓÔÁ×ĚĹÎĎ ÄĹŇĹ×Ď, ÓĎÄĹŇÖÁÝĹĹ ×ÓĹ ĐÁËĹÔŮ, ËĚÁÓÓÉĆÉĂÉŇĎ×ÁÎÎŮĹ ĐĎ\n"
+"ÇŇŐĐĐÁÍ É ĐĎÄÇŇŐĐĐÁÍ. đŇĎÓÍÁÔŇÉ×ÁŃ ÄĹŇĹ×Ď, ×Ů ÍĎÖĹÔĹ ×ŮÂÉŇÁÔŘ ĂĹĚŮĹ ÇŇŐĐĐŮ,\n"
+"ĐĎÄÇŇŐĐĐŮ ÉĚÉ ĎÔÄĹĚŘÎŮĹ ĐÁËĹÔŮ.\n"
+"\n"
+"÷ÓŃËÉĘ ŇÁÚ, ËĎÇÄÁ ×Ů ×ŮÂÉŇÁĹÔĹ × ÄĹŇĹ×Ĺ ĐÁËĹÔ, ÓĐŇÁ×Á ĐĎŃ×ĚŃĹÔÓŃ ĎĐÉÓÁÎÉĹ.\n"
+"ëĎÇÄÁ ×Ů ÚÁËĎÎŢÉÔĹ ×ŮÂĎŇ, ÝĹĚËÎÉÔĹ ÎÁ ËÎĎĐËŐ \"őÓÔÁÎĎ×ÉÔŘ\", ËĎÔĎŇÁŃ\n"
+"ÚÁĐŐÓÔÉÔ ĐŇĎĂĹÓÓ ŐÓÔÁÎĎ×ËÉ. ÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ÂŮÓÔŇĎÄĹĘÓÔ×ÉŃ ×ÁŰĹÇĎ\n"
+"ÁĐĐÁŇÁÔÎĎÇĎ ĎÂĹÓĐĹŢĹÎÉŃ É ËĎĚÉŢĹÓÔ×Á ŐÓÔÁÎÁ×ĚÉ×ÁĹÍŮČ ĐÁËĹÔĎ× ĐŇĎĂĹÓÓ ÍĎÖĹÔ\n"
+"ÚÁÎŃÔŘ ÚÎÁŢÉÔĹĚŘÎŮĘ ĐŇĎÍĹÖŐÔĎË ×ŇĹÍĹÎÉ. đŇĹÄĐĎĚÁÇÁĹÍĎĹ ×ŇĹÍŃ, ÎĹĎÂČĎÄÉÍĎĹ\n"
+"ÄĚŃ ĐĎĚÎĎĘ ŐÓÔÁÎĎ×ËÉ, ĎÔĎÂŇÁÖÁĹÔÓŃ ÎÁ ÜËŇÁÎĹ, ŢÔĎÂŮ ĐĎÍĎŢŘ ×ÁÍ ĐŇÉËÉÎŐÔŘ:\n"
+"\"á ÎĹ ÓÔĎÉÔ ĚÉ ÓČĎÄÉÔŘ ×ŮĐÉÔŘ ŢÁŰĹŢËŐ ËĎĆĹ?\"\n"
+"\n"
+"!! ĺÓĚÉ ÂŮĚ ×ŮÂŇÁÎ ĐÁËĹÔ ÓĹŇ×ĹŇÁ, ÎÁÍĹŇĹÎÎĎ ÉĚÉ ĐĎÔĎÍŐ, ŢÔĎ ĎÎ ÂŮĚ ŢÁÓÔŘŔ\n"
+"×ÓĹĘ ÇŇŐĐĐŮ, ×ÁÍ ĐĎÔŇĹÂŐĹÔÓŃ ĐĎÄÔ×ĹŇÄÉÔŘ, ŢÔĎ ×Ů ÄĹĘÓÔ×ÉÔĹĚŘÎĎ ČĎÔÉÔĹ\n"
+"ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔÉ ŐÓÔÁÎÁ×ĚÉ×ÁĹÍŮĹ ÓĹŇ×ĹŇŮ. ÷ Mandrake Linux ×ÓĹ\n"
+"ŐÓÔÁÎÁ×ĚÉ×ÁĹÍŮĹ ÓĹŇ×ĹŇŮ ĐĎ ŐÍĎĚŢÁÎÉŔ ÚÁĐŐÓËÁŔÔÓŃ ×Ď ×ŇĹÍŃ ÚÁÇŇŐÚËÉ. äÁÖĹ,\n"
+"ĹÓĚÉ ĎÎÉ ÂĹÚĎĐÁÓÎŮ É ÎĹ ÓĎÄĹŇÖÁÔ ÉÚ×ĹÓÔÎŮČ ÎÁ ×ŇĹÍŃ ×ËĚŔŢĹÎÉŃ × ÄÉÓÔŇÉÂŐÔÉ×\n"
+"ĐŇĎÂĚĹÍ, ÍĎÖĹÔ ÓĚŐŢÉÔŘÓŃ, ŢÔĎ ÂŐÄŐÔ ĎÂÎÁŇŐÖĹÎŮ ÄŮŇŮ × ÂĹÚĎĐÁÓÎĎÓÔÉ ĐĎÓĚĹ\n"
+"×ŮĐŐÓËÁ ĆÉÎÁĚŘÎĎĘ ×ĹŇÓÉÉ Mandrake Linux. ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ÄĚŃ ŢĹÇĎ\n"
+"ĐŇĹÄÎÁÚÎÁŢĹÎ ÔĎÔ ÉĚÉ ÉÎĎĘ ÓĹŇ×ÉÓ, ÉĚÉ ÚÁŢĹÍ ĎÎ ŐÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ, ÔĎÇÄÁ ÖÍÉÔĹ\n"
+"\"îĹÔ\". ýĹĚËÎŐ× ÎÁ \"äÁ\", ×Ů ŐÓÔÁÎĎ×ÉÔĹ ĐĹŇĹŢÉÓĚĹÎÎŮĹ ÓĹŇ×ÉÓŮ É ĎÎÉ ĐĎ\n"
+"ŐÍĎĚŢÁÎÉŔ ÚÁĐŐÓÔŃÔÓŃ Á×ÔĎÍÁÔÉŢĹÓËÉ. !!\n"
+"\n"
+"ďĐĂÉŃ \"á×ÔĎÍÁÔÉŢĹÓËÉĹ ÚÁ×ÉÓÉÍĎÓÔÉ\" ĐŇĎÓÔĎ ĎÔËĚŔŢÁĹÔ ÓĎĎÂÝĹÎÉĹ\n"
+"Ó ĐŇĹÄŐĐŇĹÖÄĹÎÉĹÍ, ËĎÔĎŇĎĹ ĐĎŃ×ĚŃĹÔÓŃ ×ÓŃËÉĘ ŇÁÚ, ËĎÇÄÁ ÉÎÓÔÁĚĚŃÔĎŇ\n"
+"Á×ÔĎÍÁÔÉŢĹÓËÉ ×ŮÂÉŇÁĹÔ ĐÁËĹÔ. üÔĎ ĐŇĎÉÓČĎÄÉÔ ĐĎÔĎÍŐ, ŢÔĎ ĎÎ ĎĐŇĹÄĹĚÉĚ,\n"
+"ŢÔĎ ÄĚŃ ŐÓĐĹŰÎĎÇĎ ÚÁ×ĹŇŰĹÎÉŃ ŐÓÔÁÎĎ×ËÉ ÔŇĹÂŐĹÔÓŃ ŐÄĎ×ĚĹÔ×ĎŇÉÔŘ ÚÁ×ÉÓÉÍĎÓÔÉ\n"
+"ĐÁËĹÔÁ.\n"
+"\n"
+"íÁĚĹÎŘËÉĘ ÚÎÁŢĎË ÄÉÓËĹÔŮ × ËĎÎĂĹ ÓĐÉÓËÁ ĐĎÚ×ĎĚÉÔ ÚÁÇŇŐÚÉÔŘ ÓĐÉÓĎË ĐÁËĹÔĎ×,\n"
+"×ŮÂŇÁÎÎŮČ ×Ď ×ŇĹÍŃ ĐŇĹÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ. đĎÓĚĹ ÎÁÖÁÔÉŃ ÎÁ ÜÔĎÔ ÚÎÁŢĎË,\n"
+"×ÁÓ ĐĎĐŇĎÓŃÔ ×ÓÔÁ×ÉÔŘ ÄÉÓËĹÔŐ, ÓĎÚÄÁÎÎŐŔ ŇÁÎĹĹ × ËĎÎĂĹ ÄŇŐÇĎĘ ŐÓÔÁÎĎ×ËÉ.\n"
+"óÍĎÔŇÉÔĹ ×ÔĎŇŐŔ ĐĎÄÓËÁÚËŐ Ë ĐĎÓĚĹÄÎĹÍŐ ÜÔÁĐŐ Ď ÔĎÍ, ËÁË ÓĎÚÄÁÔŘ ÔÁËŐŔ\n"
+"ÄÉÓËĹÔŐ."
#: ../../help.pm_.c:164
msgid ""
@@ -2977,6 +3194,28 @@ msgid ""
"If you wish to configure the network later after installation, or if you\n"
"are finished configuring your network connection, click \"Cancel\"."
msgstr ""
+"ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÎÁÓÔŇĎÉÔŘ Ó×ĎĹ ĐĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ/ÓĹÔÉ. ĺÓĚÉ\n"
+"×Ů ČĎÔÉÔĹ ĐĎÄËĚŔŢÉÔŘ Ó×ĎĘ ËĎÍĐŘŔÔĹŇ Ë éÎÔĹŇÎĹÔŐ ÉĚÉ Ë ĚĎËÁĚŘÎĎĘ ÓĹÔÉ,\n"
+"ÎÁÖÍÉÔĹ \"ďë\". âŐÄĹÔ ÚÁĐŐÝĹÎĎ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ÓĹÔĹ×ŮČ ŐÓÔŇĎĘÓÔ×\n"
+"É ÍĎÄĹÍÁ. ĺÓĚÉ ÜÔĎ ĎĐŇĹÄĹĚĹÎÉĹ ÚÁ×ĹŇŰÉÔÓŃ ÎĹŐÄÁŢÎĎ, × ÓĚĹÄŐŔÝÉĘ ŇÁÚ ÓÎÉÍÉÔĹ\n"
+"ÇÁĚĎŢËŐ \"éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ\". ÷Ů ÍĎÖĹÔĹ ÔÁËÖĹ ÎĹ\n"
+"ÎÁÓÔŇÁÉ×ÁÔŘ ÓĹÔŘ ÉĚÉ ÓÄĹĚÁÔŘ ÜÔĎ ĐĎÚÖĹ; × ÜÔĎÍ ÓĚŐŢÁĹ, ĐŇĎÓÔĎ ÎÁÖÍÉÔĹ ÎÁ\n"
+"ËÎĎĐËŐ \"ďÔÍĹÎÁ\".\n"
+"\n"
+"äĎÓÔŐĐÎŮĹ ÓĎĹÄÉÎĹÎÉŃ: ÔŇÁÄÉĂÉĎÎÎŮĘ ÍĎÄĹÍ, ISDN-ÍĎÄĹÍ, ADSL-ÓĎĹÄÉÎĹÎÉĹ,\n"
+"ËÁÂĹĚŘÎŮĘ ÍĎÄĹÍ É, ÎÁËĎÎĹĂ, ĐŇĎÓÔĎĹ ĐĎÄËĚŔŢĹÎÉĹ Ë ě÷ó (Ethernet).\n"
+"\n"
+"úÄĹÓŘ ÍŮ ÎĹ ÂŐÄĹÍ ĐĎÄŇĎÂÎĎ ĎĐÉÓŮ×ÁÔŘ ËÁÖÄŐŔ ÎÁÓÔŇĎĘËŐ. đŇĎÓÔĎ ŐÂĹÄÉÔĹÓŘ,\n"
+"ŢÔĎ ×Ů ĐĎĚŐŢÉĚÉ ×ÓĹ ÎĹĎÂČĎÄÉÍŮĹ ÄÁÎÎŮĹ Ő ĐŇĎ×ÁĘÄĹŇÁ ŐÓĚŐÇ éÎÔĹŇÎĹÔÁ ÉĚÉ\n"
+"ÓÉÓÔĹÍÎĎÇĎ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ.\n"
+"\n"
+"÷Ů ÍĎÖĹÔĹ ĎÂŇÁÔÉÔŘÓŃ ÚÁ ÓĐŇÁ×ËĎĘ Ë ÇĚÁ×Ĺ ``ňŐËĎ×ĎÄÓÔ×Á ĐĎĚŘÚĎ×ÁÔĹĚŃ''\n"
+"Ď ĐĎÄËĚŔŢĹÎÉÉ Ë éÎÔĹŇÎĹÔŐ Ó ĐĎÄŇĎÂÎŮÍ ĎĐÉÓÁÎÉĹÍ ÎÁÓÔŇĎĘËÉ, ÉĚÉ ĐŇĎÓÔĎ\n"
+"ĐĎÄĎÖÄÁÔŘ, ĐĎËÁ ÓÉÓÔĹÍÁ ŐÓÔÁÎĎ×ÉÔÓŃ, É ÉÓĐĎĚŘÚĎ×ÁÔŘ ĎĐÉÓÁÎÎŐŔ ÔÁÍ\n"
+"ĐŇĎÇŇÁÍÍŐ, ŢÔĎÂŮ ÎÁÓÔŇĎÉÔŘ Ó×ĎĹ ĐĎÄËĚŔŢĹÎÉĹ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ČĎÔÉÔĹ ÎÁÓÔŇĎÉÔŘ ÓĹÔŘ ĐĎÚÖĹ, ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ, ÉĚÉ, ĹÓĚÉ ×Ů\n"
+"ÚÁËĎÎŢÉĚÉ ÎÁÓÔŇÁÉ×ÁÔŘ Ó×ĎĹ ÓĹÔĹ×ĎĹ ÓĎĹÄÉÎĹÎÉĹ, ÎÁÖÍÉÔĹ \"ďÔÍĹÎÁ\"."
#: ../../help.pm_.c:186
msgid ""
@@ -3028,6 +3267,19 @@ 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 ŐĐŇÁ×ĚŃĹÔ ×ŇĹÍĹÎĹÍ ĐĎ çŇÉÎ×ÉŢŐ (GMT) É ĐĹŇĹ×ĎÄÉÔ ĹÇĎ × ÍĹÓÔÎĎĹ\n"
+"×ŇĹÍŃ, ÓĎĎÔ×ĹÔÓÔ×ŐŔÝĹĹ ×ŮÂŇÁÎÎĎÍŐ ×ÁÍÉ ×ŇĹÍĹÎÎĎÍŐ ĐĎŃÓŐ. ôĹÍ ÎĹ ÍĹÎĹĹ,nÍĎÖÎĎ "
+"ĎÔËĚŔŢÉÔŘ ÜÔŐ ĎĐĂÉŔ, ÓÎŃ× ĆĚÁÖĎË Ó \"áĐĐÁŇÁÔÎŮĹ ŢÁÓŮ ×ŮÓÔÁ×ĚĹÎŮ\n"
+"ĐĎ çŇÉÎ×ÉŢŐ\", ÔĎÇÄÁ ÁĐĐÁŇÁÔÎŮĹ ŢÁÓŮ ÂŐÄŐÔ ÓĎ×ĐÁÄÁÔŘ Ó ÓÉÓÔĹÍÎŮÍÉ. üÔĎ\n"
+"ĐĎĚĹÚÎĎ, ËĎÇÄÁ ÍÁŰÉÎÁ Ń×ĚŃĹÔÓŃ ×ĹÄŐÝÉÍ ÓĹŇ×ĹŇĎÍ ÄĚŃ ÄŇŐÇĎĘ ĎĐĹŇÁĂÉĎÎÎĎĘ\n"
+"ÓÉÓÔĹÍŮ ÔÉĐÁ Windows.\n"
+"\n"
+"ďĐĂÉŃ \"á×ÔĎÍÁÔÉŢĹÓËÁŃ ÓÉÎČŇĎÎÉÚÁĂÉŃ ×ŇĹÍĹÎÉ\" ÂŐÄĹÔ Á×ÔĎÍÁÔÉŢĹÓËÉ\n"
+"ŇĹÇŐĚÉŇĎ×ÁÔŘ ŢÁÓŮ, ĐĎÄËĚŔŢÁŃÓŘ Ë ŐÄÁĚĹÎÎĎÍŐ ÓĹŇ×ĹŇŐ ×ŇĹÍĹÎÉ × éÎÔĹŇÎĹÔĹ.néÚ "
+"ĐŇĹÄĚĎÖĹÎÎĎÇĎ ÓĐÉÓËÁ ×ŮÂĹŇÉÔĹ ÂĚÉÖÁĘŰÉĘ Ë ×ÁÍ ÓĹŇ×ĹŇ. ĺÓÔĹÓÔ×ĹÎÎĎ,\n"
+"Ő ×ÁÓ ÄĎĚÖÎĎ ÂŮÔŘ ÁËÔÉ×ÉÚÉŇĎ×ÁÎĎ ĐĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ ÄĚŃ ŇÁÂĎÔŮ ÜÔĎĘ\n"
+"ĎĐĂÉÉ. îÁ ÓÁÍĎÍ ÄĹĚĹ ĎÎÁ ŐÓÔÁÎĎ×ÉÔ ÎÁ ×ÁŰŐ ÍÁŰÉÎŐ ÓĹŇ×ĹŇ ×ŇĹÍĹÎÉ, ËĎÔĎŇŮĘ\n"
+"ÍĎÖĹÔ ÂŮÔŘ ĐĎ ÖĹĚÁÎÉŔ ÉÓĐĎĚŘÚĎ×ÁÎ ÄŇŐÇÉÍÉ ÍÁŰÉÎÁÍÉ × ×ÁŰĹĘ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ."
#: ../../help.pm_.c:217
msgid ""
@@ -3052,6 +3304,25 @@ msgid ""
"configuration section of the user guide for more information on how to\n"
"configure your display."
msgstr ""
+"č (ÓÉÓÔĹÍÁ X Window, éËÓŮ) Ń×ĚŃĹÔÓŃ ÓĹŇÄĂĹÍ ÇŇÁĆÉŢĹÓËĎÇĎ ÉÎÔĹŇĆĹĘÓÁ\n"
+"GNU/Linux, ŢĹŇĹÚ ËĎÔĎŇĎĹ ×ÓĹ ÇŇÁĆÉŢĹÓËÉĹ ĎÂĎĚĎŢËÉ (KDE, Gnome, AfterStep,\n"
+"WindowMaker É ÄŇ.) ÚÁ×ŃÚÁÎŮ Ó Mandrake Linux. ÷ ÜÔĎÍ ŇÁÚÄĹĚĹ DrakX\n"
+"ĐĎĐŮÔÁĹÔÓŃ ÎÁÓÔŇĎÉÔŘ éËÓŮ Á×ÔĎÍÁÔÉŢĹÓËÉ.\n"
+"\n"
+"ďÎ ÄĎ×ĎĚŘÎĎ ŇĹÄËĎ ÚÁ×ĹŇŰÁĹÔÓŃ ÎĹŐÄÁŢĹĘ, ÚÁ ÉÓËĚŔŢĹÎÉĹÍ ÓĚŐŢÁĹ× Ó ĎŢĹÎŘ\n"
+"ÓÔÁŇŮÍ ĎÂĎŇŐÄĎ×ÁÎÉĹÍ (ÉĚÉ ĎŢĹÎŘ ÎĎ×ŮÍ). ĺÓĚÉ ×ÓĹ ĐŇĎĘÄĹÔ ŐÄÁŢÎĎ, ĎÎ\n"
+"Á×ÔĎÍÁÔÉŢĹÓËÉ ÚÁĐŐÓÔÉÔ éËÓŮ Ó ÎÁÉĚŐŢŰÉÍ ŇÁÚŇĹŰĹÎÉĹÍ ÉÚ ×ĎÚÍĎÖÎŮČ\n"
+"× ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ŇÁÚÍĹŇÁ ÍĎÎÉÔĎŇÁ. úÁÔĹÍ ĐĎŃ×ÉÔÓŃ ĎËÎĎ Ó ×ĎĐŇĎÓĎÍ, ĹÓĚÉ\n"
+"×Ů ĹÇĎ Ő×ÉÄÉÔĹ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ×ŮĐĎĚÎŃĹÔĹ ŐÓÔÁÎĎ×ËŐ \"üËÓĐĹŇÔ\", ×Ů ×ĎĘÄĹÔĹ × ÍÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ\n"
+"éËÓĎ×. âĎĚĹĹ ĐĎÄŇĎÂÎŐŔ ÉÎĆĎŇÍÁĂÉŔ Ď ÜÔĎÍ ÍÁÓÔĹŇĹ ÓÍĎÔŇÉÔĹ\n"
+"× ÓĎĎÔ×ĹÔÓÔ×ŐŔÝĹÍ ŇÁÚÄĹĚĹ ŇŐËĎ×ĎÄÓÔ×Á.\n"
+"\n"
+"ĺÓĚÉ ×Ů ÓÍĎÖĹÔĹ Ő×ÉÄĹÔŘ ÓĎĎÂÝĹÎÉĹ ×Ď ×ŇĹÍŃ ÔĹÓÔÁ É ĎÔ×ĹÔÉÔĹ \"äÁ\", DrakX\n"
+"ĐĹŇĹĘÄĹÔ ÎÁ ÓĚĹÄŐŔÝÉĘ ÜÔÁĐ. ĺÓĚÉ ×Ů ÎĹ ÓÍĎÖĹÔĹ Ő×ÉÄĹÔŘ ÓĎĎÂÝĹÎÉĹ,\n"
+"ÜÔĎ ĐŇĎÓÔĎ ĎÚÎÁŢÁĹÔ, ŢÔĎ ÎÁÓÔŇĎĘËÁ ÂŮĚÁ ÎĹËĎŇŇĹËÔÎĎĘ É ÔĹÓÔ Á×ÔĎÍÁÔÉŢĹÓËÉ "
+"ÚÁËĎÎŢÉÔÓŃ ŢĹŇĹÚ 10 ÓĹËŐÎÄ, ×ĎÓÓÔÁÎĎ×É× ÜËŇÁÎ."
#: ../../help.pm_.c:239
msgid ""
@@ -3092,9 +3363,31 @@ msgid ""
"need. You will not have to format it since DrakX will rewrite the whole\n"
"disk."
msgstr ""
+"îÁ ŐÓÔÁÎĎ×ĎŢÎĎÍ ËĎÍĐÁËÔ-ÄÉÓËĹ Mandrake Linux ÉÍĹĹÔÓŃ Á×ÁŇÉĘÎŮĘ ŇĹÖÉÍ. ÷Ů\n"
+"ÍĎÖĹÔĹ ĐĎĚŐŢÉÔŘ Ë ÎĹÍŐ ÄĎÓÔŐĐ, ÚÁÇŇŐÚÉ×ŰÉÓŘ Ó ËĎÍĐÁËÔ-ÄÉÓËÁ, ÎÁÖÍÉÔĹ\n"
+"ËĚÁ×ÉŰŐ >>F1<< ĐŇÉ ÚÁÇŇŐÚËĹ É ××ĹÄÉÔĹ × ÓÔŇĎËĹ ĐŇÉÇĚÁŰĹÎÉŃ >>rescue<<.\n"
+"îĎ × ÜÔĎÍ ÓĚŐŢÁĹ ×ÁŰ ËĎÍĐŘŔÔĹŇ ÎĹ ÍĎÖĹÔ ÚÁÇŇŐÚÉÔŘÓŃ Ó ËĎÍĐÁËÔ-ÄÉÓËÁ, ×Ů\n"
+"ÄĎĚÖÎŮ ×ĹŇÎŐÔŘÓŃ ÎÁ ÜÔĎÔ ÜÔÁĐ ÚÁ ÓĐŇÁ×ËĎĘ, ĐĎ ËŇÁĘÎĹĘ ÍĹŇĹ, × Ä×ŐČ\n"
+"ÓÉÔŐÁĂÉŃČ:\n"
+"\n"
+" * ĐŇÉ ŐÓÔÁÎĎ×ËĹ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ, DrakX ĐĹŇĹÚÁĐÉŰĹÔ ÚÁÇŇŐÚĎŢÎŮĘ\n"
+"ÓĹËÔĎŇ (MBR) ×ÁŰĹÇĎ ÇĚÁ×ÎĎÇĎ ÄÉÓËÁ (ĐĎËÁ ×Ů ÎĹ ÂŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄŇŐÇĎĘ\n"
+"ÍĹÎĹÄÖĹŇ ÚÁÇŇŐÚËÉ), ŢÔĎÂŮ ĐĎÚ×ĎĚÉÔŘ ×ÁÍ ÚÁÇŇŐÚÉÔŘ Windows ÉĚÉ GNU/Linux\n"
+"(ĐĎÄŇÁÚŐÍĹ×ÁĹÔÓŃ, ŢÔĎ × ×ÁŰĹĘ ÓÉÓÔĹÍĹ ĹÓÔŘ Windows). ĺÓĚÉ ×ÁÍ ĐĎÎÁÄĎÂÉÔÓŃ\n"
+"ĐĹŇĹŐÓÔÁÎĎ×ÉÔŘ Windows, ĐŇĎĂĹÓÓ ŐÓÔÁÎĎ×ËÉ Microsoft ĐĹŇĹÚÁĐÉŰĹÔ ÚÁÇŇŐÚĎŢÎŮĘ\n"
+"ÓĹËÔĎŇ, É ÔĎÇÄÁ ×Ů ÎĹ ÓÍĎÖĹÔĹ ÚÁÇŇŐÚÉÔŘ GNU/Linux!\n"
+"\n"
+" * ĹÓĚÉ ×ĎÚÎÉËÎĹÔ ĐŇĎÂĚĹÍÁ É ×Ů ÎĹ ÓÍĎÖĹÔĹ ÚÁÇŇŐÚÉÔŘ GNU/Linux Ó ÖĹÓÔËĎÇĎ\n"
+"ÄÉÓËÁ, ÜÔÁ ÄÉÓËĹÔÁ ÂŐÄĹÔ ĐĎÄŇÁÚŐÍĹ×ÁÔŘ ÔĎĚŘËĎ ÚÁÇŇŐÚËŐ GNU/Linux. îÁ ÎĹĘ\n"
+"ÓĎÄĹŇÖÉÔÓŃ ÍÉÎÉÍÁĚŘÎĎĹ ËĎĚÉŢĹÓÔ×Ď ÓÉÓÔĹÍÎŮČ ŐÔÉĚÉÔ ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ\n"
+"ÓÉÓÔĹÍŮ, ÚÁ×ÁĚÉ×ŰĹĘÓŃ × ŇĹÚŐĚŘÔÁÔĹ ĎÔËĚŔŢĹÎÉŃ ĐÉÔÁÎÉŃ, ÎĹŐÄÁŢÎĎĘ ĎŰÉÂËÉ\n"
+"ĐŇÉ ××ĎÄĹ, ĎŰÉÂËÉ ĐÁŇĎĚŃ É ĚŔÂĎĘ ÄŇŐÇĎĘ ĐŇÉŢÉÎŮ.\n"
+"\n"
+"ëĎÇÄÁ ×Ů ĐĹŇĹĘÄĹÔĹ ÎÁ ÜÔĎÔ ÜÔÁĐ, ×ÁÍ ÂŐÄĹÔ ĐŇĹÄĚĎÖĹÎĎ ×ÓÔÁ×ÉÔŘ × ÄÉÓËĎ×ĎÄ\n"
+"ÄÉÓËĹÔŐ. äÉÓËĹÔÁ ÄĎĚÖÎÁ ÂŮÔŘ ŢÉÓÔĎĘ É ÎĹ ÓĎÄĹŇÖÁÔŘ ÎŐÖÎĎĘ ×ÁÍ ÉÎĆĎŇÍÁĂÉÉ.\n"
+"÷Ů ÎĹ ÄĎĚÖÎŮ ĹĹ ĆĎŇÍÁÔÉŇĎ×ÁÔŘ, DrakX ĐĎĚÎĎÓÔŘŔ ĐĹŇĹÚÁĐÉŰĹÔ ×ÓŔ ÄÉÓËĹÔŐ."
#: ../../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"
@@ -3166,77 +3459,76 @@ msgid ""
"here, refer to the section ``Managing Your Partitions'' of the ````User\n"
"Guide''''"
msgstr ""
-"÷ ÜÔĎÍ ĐŐÎËÔĹ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ ÍĹÓÔĎ ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ\n"
-"× ËĎÔĎŇĎĹ ×Ů ÂŐÄĹÔĹ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ Mandrake Linux. ĺÓĚÉ ĎÎ ĐŐÓÔ ÉĚÉ\n"
-"ÓŐÝĹÓÔ×ŐŔÝÁŃ ĎĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ ÚÁÎÉÍÁĹÔ ×ÓĹ ÄĎÓÔŐĐÎĎĹ ÍĹÓÔĎ, ×ÁÍ "
-"ĐĎÔŇĹÂŐĹÔÓŃ\n"
-"ŇÁÚÂÉÔŘ ÄÉÓË ÎÁ ŇÁÚÄĹĚŮ. đĎ ÓŐÔÉ ŇÁÚÂÉĹÎÉĹ ÎÁ ŇÁÚÄĹĚŮ ÚÁËĚŔŢÁĹÔÓŃ × "
-"ĚĎÇÉŢĹÓËĎÍ\n"
-"ŇÁÚÄĹĚĹÎÉÉ ÄÉÓËĎ×ĎÇĎ ĐŇĎÓÔŇÁÎÓÔ×Á É ÓĎÚÄÁÎÉĹ ÍĹÓÔÁ ÄĚŃ ŐÓÔÁÎĎ×ËÉ Mandrake "
-"Linux.\n"
-"\n"
-"\n"
-"đĎÓËĎĚŘËŐ ĐĎÓĚĹ ŇÁÚÂÉĹÎÉŃ ĎÂŮŢÎĎ ÎĹĚŘÚŃ ×ŮĐĎĚÎÉÔŘ ĎÂŇÁÔÎŐŔ ĐŇĎĂĹÄŐŇŐ,\n"
-"ŇÁÚÂÉĹÎÉĹ ÍĎÖĹÔ ĎËÁÚÁÔŘÓŃ ÎĹĐĎÎŃÔÎŮÍ É ÔŇŐÄÎŮÍ, ĹÓĚÉ Ő ×ÁÓ ÎĹÄĎÓÔÁÔĎŢÎĎ "
-"ĎĐŮÔÁ.\n"
-"üÔĎÔ ÍÁÓÔĹŇ ŐĐŇĎÝÁĹÔ ĐŇĎĂĹÓÓ ŇÁÚÂÉĹÎÉŃ. đŇĹÖÄĹ ŢĹÍ ÎÁŢÁÔŘ, ÉÚŐŢÉÔĹ "
-"ŇŐËĎ×ĎÄÓÔ×Ď\n"
-"É ÚÁĐÁÓÉÔĹÓŘ ×ŇĹÍĹÎĹÍ.\n"
-"\n"
-"\n"
-"÷ÁÍ ÎŐÖÎĎ ÎĹ ÍĹÎĹĹ Ä×ŐČ ŇÁÚÄĹĚĎ×. ďÄÉÎ - ÓĎÂÓÔ×ĹÎÎĎ ÄĚŃ ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍŮ "
-"É ×ÔĎŇĎĘ\n"
-"ÄĚŃ ×ÉŇÔŐÁĚŘÎĎĘ ĐÁÍŃÔÉ (ÎÁÚŮ×ÁĹÍĎĘ ÔÁËÖĹ ĆÁĘĚĎÍ ĐĎÄËÁŢËÉ - Swap).\n"
-"\n"
-"\n"
-"ĺÓĚÉ ŇÁÚÄĹĚŮ ŐÖĹ ÓÄĹĚÁÎŮ (ÉÚ ĐŇĹÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ ÉĚÉ ÄŇŐÇĎĘ\n"
-"ĐŇĎÇŇÁÍÍĎĘ ŇÁÚÂÉĹÎÉŃ), ÔĎÇÄÁ ×ÁÍ ĐŇĎÓÔĎ ÎŐÖÎĎ ÉČ ×ŮÂŇÁÔŘ ÄĚŃ ŐÓÔÁÎĎ×ËÉ "
-"×ÁŰĹĘ\n"
-"Linux ÓÉÓÔĹÍŮ.\n"
-"\n"
-"\n"
-"ĺÓĚÉ ŇÁÚÄĹĚŮ ĹÝĹ ÎĹ ÓÄĹĚÁÎŮ, ×ÁÍ ĐĎÔŇĹÂŐĹÔÓŃ ÉČ ÓĎÚÄÁÔŘ. \n"
-"ţÔĎÂŮ ÜÔĎ ÓÄĹĚÁÔŘ, ÉÓĐĎĚŘÚŐĘÔĹ ×ŮŰĹŐËÁÚÁÎÎŮĘ ÍÁÓÔĹŇ. ÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ "
-"ËĎÎĆÉÇŐŇÁĂÉÉ ×ÁŰĹÇĎ ÖĹÓÔËĎÇĎ \n"
-"ÄÉÓËÁ, ×ĎÚÍĎÖÎŮ ÎĹÓËĎĚŘËĎ ŇĹŰĹÎÉĘ:\n"
-"\n"
-"* éÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝĹĹ ŇÁÚÂÉĹÎÉĹ: ÍÁÓÔĹŇ ĎÂÎÁŇŐÖÉĚ ĎÄÉÎ ÉĚÉ ÎĹÓËĎĚŘËĎ "
-"ÓŐÝĹÓÔ×ŐŔÝÉČ ŇÁÚÄĹĚĎ× Linux ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ. ÷ŮÂĹŇÉÔĹ\n"
-" ÜÔĎÔ ĐŐÎËÔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉČ ÉÓĐĎĚŘÚĎ×ÁÔŘ. \n"
-"\n"
-"\n"
-"* ďŢÉÓÔÉÔŘ ×ĹÓŘ ÄÉÓË: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ĐŐÎËÔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ŐÄÁĚÉÔŘ ×ÓŔ "
-"ÉÎĆĎŇÍÁĂÉŔ É ×ÓĹ ŇÁÚÄĹĚŮ, ÓŐÝĹÓÔ×ŐŔÝÉĹ ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ É ÚÁÍĹÎÉÔŘ "
-"ÉČ \n"
-" ×ÁŰĹĘ ÎĎ×ĎĘ Mandrake Linux ÓÉÓÔĹÍĎĘ. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ ĐŇÉÎÉÍÁŃ ÔÁËĎĹ "
-"ŇĹŰĹÎÉĹ - ×ĎÓÓÔÁÎĎ×ÉÔŘ ÄÁÎÎŮĹ ĐĎÓĚĹ ĐĎÔÄ×ĹŇÖÄĹÎÉŃ ×ŮĐĎĚÎĹÎÉŃ ÜÔĎĘ ĎĐĹŇÁĂÉÉ\n"
-" ×Ů ŐÖĹ ÎĹ ÓÍĎÖĹÔĹ.\n"
-"\n"
-"\n"
-"* éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ÍĹÓÔĎ × ŇÁÚÄĹĚĹ Windows: ĹÓĚÉ Ő ×ÁÓ ŐÓÔÁÎĎ×ĚĹÎÁ "
-"Microsoft Windows É ÚÁÎÉÍÁĹÔ ×ÓĹ ÍĹÓÔĎ ÎÁ ÖĹÓÔËĎÍ ÄÉÓËĹ, ÔĎ ×ÁÍ ĐŇÉÄĹÔÓŃ\n"
-" ÓĎÚÄÁÔŘ Ó×ĎÂĎÄÎĎĹ ĐŇĎÓÔŇÁÎÓÔ×Ď ÄĚŃ Linux. ţÔĎÂŮ ÜÔĎ ÓÄĹĚÁÔŘ, ×Ů ÍĎÖĹÔĹ "
-"ŐÄÁĚÉÔŘ ×ÁŰ\n"
-" ŇÁÚÄĹĚ Microsoft Windows É ×ÓĹ ÄÁÎÎŮĹ (ÓÍĎÔŇÉÔĹ ĐŐÎËÔŮ \"ďŢÉÓÔÉÔŘ ×ĹÓŘ ÄÉÓË"
-"\" ÉĚÉ \"ňĹÖÉÍ üËÓĐĹŇÔ\" ) ÉĚÉ ÉÚÍĹÎÉÔŘ ŇÁÚÍĹŇ\n"
-" ×ÁŰĹÇĎ ŇÁÚÄĹĚÁ Microsoft Windows. üÔĎ ÉÚÍĹÎĹÎÉĹ ÍĎÖĹÔ ÂŮÔŘ ×ŮĐĎĚÎĹÎĎ ÂĹÚ "
-"ĐĎÔĹŇÉ ÄÁÎÎŮČ. üÔĎ ŇĹŰĹÎÉĹ ŇĹËĎÍĹÎÄŐĹÔÓŃ\n"
-" ĹÓĚÉ ×ŮČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ É Mandrake Linux É Microsoft Windows ÎÁ ĎÄÎĎÍ É "
-"ÔĎÍ ÖĹ ËĎÍĐŘŔÔĹŇĹ.\n"
-"\n"
-"\n"
-" đĹŇĹÄ ×ŮÂĎŇĎÍ ÜÔĎÇĎ ×ÁŇÉÁÎÔÁ, ×ÁÍ ÎŐÖÎĎ ĐĎÎŃÔŘ, ŢÔĎ ŇÁÚÍĹŇ ŇÁÚÄĹĚÁ "
-"Microsoft\n"
-" Windows ÂŐÄĹÔ ÍĹÎŘŰĹ, ŢĹÍ ÓŐÝĹÓÔ×ŐŔÝÉĘ. üÔĎ ĎÚÎÁŢÁĹÔ, ŢÔĎ Ő ×ÁÓ ÂŐÄĹÔ "
-"ÍĹÎŘŰĹ ÍĹÓÔÁ ĐĎÄ \n"
-" Microsoft Windows ÄĚŃ ČŇÁÎĹÎÉŃ ÉÎĆĎŇÍÁĂÉÉ É ŐÓÔÁÎĎ×ËÉ ÎĎ×ŮČ ĐŇĎÇŇÁÍÍ.\n"
-"\n"
-"\n"
-"* ňĹÖÉÍ üËÓĐĹŇÔ: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ×ÁŇÉÁÎÔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ×ŇŐŢÎŐŔ ŇÁÚÂÉÔŘ ×ÁŰ "
-"ÖĹÓÔËÉĘ ÄÉÓË. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ\n"
-" . üÔĎÔ ×ÁŇÉÁÎÔ ĎŢĹÎŘ ÍĎÝÎŮĘ, ÎĎ ĎŢĹÎŘ ĎĐÁÓÎŮĘ. ÷Ů ÍĎÖĹÔĹ ĚĹÇËĎ ĐĎÔĹŇŃÔŘ "
-"×ÓĹ ×ÁŰÉ ÄÁÎÎŮĹ. đĎÜÔĎÍŐ\n"
-" ÎĹ ×ŮÂÉŇÁĘÔĹ ÜÔĎÔ ×ÁŇÉÁÎÔ, ĹÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÄĹĚÁĹÔĹ."
+"÷ ÜÔĎÍ ĐŐÎËÔĹ ×ÁÍ ÎĹĎÂČĎÄÉÍĎ ×ŮÂŇÁÔŘ, ËŐÄÁ ÎÁ Ó×ĎĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ ×Ů ČĎÔÉÔĹ\n"
+"ŐÓÔÁÎĎ×ÉÔŘ ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ Mandrake Linux. ĺÓĚÉ ×ÁŰ ÖĹÓÔËÉĘ ÄÉÓË ĐŐÓÔ\n"
+"ÉĚÉ ĹÓĚÉ ÓŐÝĹÓÔ×ŐŔÝÁŃ ĎĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ ÉÓĐĎĚŘÚŐĹÔ ×ÓĹ ÄĎÓÔŐĐÎĎĹ\n"
+"ĐŇĎÓÔŇÁÎÓÔ×Ď, ×ÁÍ ĐĎÎÁÄĎÂÉÔÓŃ ŇÁÚÍĹÔÉÔŘ ĹÇĎ. đĎ ÓŐÔÉ, ŇÁÚÍĹÔËÁ ÖĹÓÔËĎÇĎ\n"
+"ÄÉÓËÁ ÚÁËĚŔŢÁĹÔÓŃ × ĹÇĎ ĚĎÇÉŢĹÓËĎÍ ÄĹĚĹÎÉÉ, ŢÔĎÂŮ ÓĎÚÄÁÔŘ ĐŇĎÓÔŇÁÎÓÔ×Ď ÄĚŃ\n"
+"ŐÓÔÁÎĎ×ËÉ ×ÁŰĹĘ ÎĎ×ĎĘ ÓÉÓÔĹÍŮ Mandrake Linux.\n"
+"\n"
+"đĎÓËĎĚŘËŐ ŇĹÚŐĚŘÔÁÔŮ ĐŇĎĂĹÓÓÁ ŇÁÚÍĹÔËÉ ĎÂŮŢÎĎ ÎĹĎÂŇÁÔÉÍŮ, ŇÁÚÍĹÔËÁ ÍĎÖĹÔ\n"
+"ÂŮÔŘ ĐŐÇÁŔÝĹĘ É ÎÁĐŇŃÖĹÎÎĎĘ, ĹÓĚÉ ×Ů ÎĹĎĐŮÔÎŮĘ ĐĎĚŘÚĎ×ÁÔĹĚŘ. ë ÓŢÁÓÔŘŔ ĹÓÔŘ\n"
+"ÍÁÓÔĹŇ, ËĎÔĎŇŮĘ ŐĐŇĎÝÁĹÔ ÜÔĎÔ ĐŇĎĂĹÓÓ. đĹŇĹÄ ÎÁŢÁĚĎÍ, ĐĎÖÁĚŐĘÓÔÁ, ÉÚŐŢÉÔĹ\n"
+"ŇŐËĎ×ĎÄÓÔ×Ď É ÚÁĐÁÓÉÔĹÓŘ ×ŇĹÍĹÎĹÍ.\n"
+"\n"
+"ĺÓĚÉ ×ÁŰÁ ŐÓÔÁÎĎ×ËÁ ÚÁĐŐÝĹÎÁ × ŇĹÖÉÍĹ üËÓĐĹŇÔÁ, ×Ů ×ĎĘÄĹÔĹ × DiskDrake -\n"
+"ÓĹŇ×ÉÓÎŐŔ ĐŇĎÇŇÁÍÍŐ ŇÁÚÍĹÔËÉ Mandrake Linux -, ËĎÔĎŇÁŃ ĐĎÚ×ĎĚÉÔ ×ÁÍ ÔĎÎËĎ\n"
+"ÎÁÓÔŇĎÉÔŘ Ó×ĎÉ ŇÁÚÄĹĚŮ. óÍĎÔŇÉÔĹ ŇÁÚÄĹĚ DiskDrake × ``ňŐËĎ×ĎÄÓÔ×Ĺ\n"
+"ĐĎĚŘÚĎ×ÁÔĹĚŃ''. ÷ ÉÎÔĹŇĆĹĘÓĹ ŐÓÔÁÎĎ×ËÉ ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÍÁÓÔĹŇŮ,\n"
+"ËÁË ÚÄĹÓŘ ĎĐÉÓÁÎĎ, ÎÁÖÁ× ÎÁ ËÎĎĐËŐ ÄÉÁĚĎÇÁ \"íÁÓÔĹŇ\".\n"
+"\n"
+"ĺÓĚÉ ŇÁÚÄĹĚŮ ŐÖĹ ÂŮĚÉ ĎĐŇĹÄĹĚĹÎŮ ÉÚ ĐŇĹÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ ÉĚÉ ÉÚ ÄŇŐÇĎĘ\n"
+"ÓĹŇ×ÉÓÎĎĘ ĐŇĎÇŇÁÍÍŮ ŇÁÚÍĹÔËÉ, ÔĎÇÄÁ ĐŇĎÓÔĎ ÎŐÖÎĎ ×ŮÂĹŇÉÔĹ ÉČ ÄĚŃ ŐÓÔÁÎĎ×ËÉ\n"
+"Ó×ĎĹĘ ÓÉÓÔĹÍŮ Linux.\n"
+"\n"
+"ĺÓĚÉ ŇÁÚÄĹĚŮ ÎĹ ĎĐŇĹÄĹĚĹÎŮ, ×ÁÍ ÎĹĎÂČĎÄÉÍĎ ÓĎÚÄÁÔŘ ÉČ, ÉÓĐĎĚŘÚŐŃ ÍÁÓÔĹŇ.\n"
+"÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ËĎÎĆÉÇŐŇÁĂÉÉ ×ÁŰĹÇĎ ÖĹÓÔËĎÇĎ ÄÉÓËÁ, ÄĎÓÔŐĐÎĎ ÎĹÓËĎĚŘËĎ\n"
+"ĎĐĂÉĘ:\n"
+"\n"
+" * \"éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ĐŇĎÓÔŇÁÎÓÔ×Ď\": ÜÔÁ ĎĐĂÉŃ ĐŇĎÓÔĎ ĐŇÉ×ĎÄÉÔ Ë\n"
+"Á×ÔĎÍÁÔÉŢĹÓËĎĘ ŇÁÚÍĹÔËĹ ×ÁŰÉČ ĐŐÓÔŮČ ÄÉÓËĎ×. ÷ ÄÁĚŘÎĹĘŰĹÍ ×ÁÍ ÎĹ ÂŐÄĹÔ\n"
+"ÚÁÄÁÎĎ ÎÉ ĎÄÎĎÇĎ ×ĎĐŇĎÓÁ.\n"
+" * \"éÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĘ ŇÁÚÄĹĚ\": ÍÁÓÔĹŇ ĎÂÎÁŇŐÖÉĚ ĎÄÉÎ ÉĚÉ\n"
+"ÎĹÓËĎĚŘËĎ ÓŐÝĹÓÔ×ŐŔÝÉČ ŇÁÚÄĹĚĎ× Linux ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ. ĺÓĚÉ ×Ů\n"
+"ČĎÔÉÔĹ ÉČ ÉÓĐĎĚŘÚĎ×ÁÔŘ, ×ŮÂĹŇÉÔĹ ÜÔŐ ĎĐĂÉŔ. úÁÔĹÍ ×ÁÍ ÂŐÄĹÔ ĐŇĹÄĚĎÖĹÎĎ\n"
+"×ŮÂŇÁÔŘ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ, Ó×ŃÚÁÎÎŮĹ Ó ËÁÖÄŮÍ ÉÚ ŇÁÚÄĹĚĎ×. đĎ ŐÍĎĚŢÁÎÉŔ\n"
+"×ŮÂŇÁÎŮ ŐÎÁÓĚĹÄĎ×ÁÎÎŮĹ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ, É, ËÁË ĐŇÁ×ÉĚĎ, ×Ů ÄĎĚÖÎŮ ÉČ\n"
+"ĎÓÔÁ×ÉÔŘ.\n"
+"\n"
+" * \"éÓĐĎĚŘÚĎ×ÁÔŘ Ó×ĎÂĎÄÎĎĹ ĐŇĎÓÔŇÁÎÓÔ×Ď ÎÁ ŇÁÚÄĹĚĹ Windows\": ĹÓĚÉ ÎÁ×ÁŰĹÍ "
+"ÖĹÓÔËĎÍ ÄÉÓËĹ ŐÓÔÁÎĎ×ĚĹÎÁ Microsoft Windows, É ĎÎÁ ÚÁÎÉÍÁĹÔ ×ÓĹ\n"
+"ÄĎÓÔŐĐÎĎĹ ÎÁ ÎĹÍ ÍĹÓÔĎ, ×Ů ÄĎĚÖÎŮ ÓĎÚÄÁÔŘ ŇÁÚÄĹĚ ÄĚŃ ÄÁÎÎŮČ Linux. äĚŃ\n"
+"ÜÔĎÇĎ ×Ů ÍĎÖĹÔĹ ŐÄÁĚÉÔŘ Ó×ĎĘ ŇÁÚÄĹĚ Microsoft Windows É ÄÁÎÎŮĹ (ÓÍĎÔŇÉÔĹ\n"
+"×ÁŇÉÁÎÔŮ ``óÔĹŇĹÔŘ ×ĹÓŘ ÄÉÓË'' ÉĚÉ ``ňĹÖÉÍ ÜËÓĐĹŇÔÁ'') ÉĚÉ ÉÚÍĹÎÉÔĹ ŇÁÚÍĹŇ\n"
+"Ó×ĎĹÇĎ ŇÁÚÄĹĚÁ Microsoft Windows. éÚÍĹÎĹÎÉĹ ŇÁÚÍĹŇÁ ÍĎÖĹÔ ÂŮÔŘ ×ŮĐĎĚÎĹÎĎ\n"
+"ÂĹÚ ĐĎÔĹŇÉ ËÁËÉČ-ĚÉÂĎ ÄÁÎÎŮČ, ĎÂĹÓĐĹŢĹÎÎĎĘ ĐŇĹÄ×ÁŇÉÔĹĚŘÎĎĘ ÄĹĆŇÁÇÍĹÎÔÁĂÉĹĘ\n"
+"ŇÁÚÄĹĚÁ Windows. ňĹÚĹŇ×ÉŇĎ×ÁÎÉĹ Ó×ĎÉČ ÄÁÎÎŮČ ×ÓĹ ÖĹ ÎĹ ĐĎÍĹŰÁĹÔ...\n"
+"üÔĎÔ ×ÁŇÉÁÎÔ ŇĹËĎÍĹÎÄŐĹÔÓŃ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ Mandrake Linux\n"
+"É Microsoft Windows ÎÁ ĎÄÎĎÍ ËĎÍĐŘŔÔĹŇĹ.\n"
+"\n"
+"đĹŇĹÄ ÔĹÍ, ËÁË ×ŮÂŇÁÔŘ ÜÔŐ ĎĐĂÉŔ, ĐĎÖÁĚŐĘÓÔÁ, ĐĎĘÍÉÔĹ, ŢÔĎ ĐĎÓĚĹ ÜÔĎĘ\n"
+"ĐŇĎĂĹÄŐŇŮ ŇÁÚÍĹŇ ×ÁŰĹÇĎ ŇÁÚÄĹĚÁ Microsoft Windows ÂŐÄĹÔ ÍĹÎŘŰĹ, ŢĹÍ ×\n"
+"ÎÁÓÔĎŃÝÉĘ ÍĎÍĹÎÔ. ő ×ÁÓ ĎÓÔÁÎĹÔÓŃ ÍĹÎŘŰĹ Ó×ĎÂĎÄÎĎÇĎ ÍĹÓÔÁ ĐĎÄ Microsoft\n"
+"Windows ÄĚŃ ČŇÁÎĹÎÉŃ Ó×ĎÉČ ÄÁÎÎŮČ ÉĚÉ ÄĚŃ ŐÓÔÁÎĎ×ËÉ ÎĎ×ĎÇĎ ĐŇĎÇŇÁÍÍÎĎÇĎ\n"
+"ĎÂĹÓĐĹŢĹÎÉŃ.\n"
+"\n"
+" * \"óÔĹŇĹÔŘ ×ĹÓŘ ÄÉÓË\": ĹÓĚÉ ×Ů ČĎÔÉÔĹ ŐÄÁĚÉÔŘ ×ÓĹ ÄÁÎÎŮĹ É ×ÓĹ ŇÁÚÄĹĚŮ,\n"
+"ÉÍĹŔÝÉĹÓŃ ÎÁ ×ÁŰĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ É ÚÁÍĹÎÉÔŘ ÉČ Ó×ĎĹĘ ÎĎ×ĎĘ ÓÉÓÔĹÍĎĘ\n"
+"Mandrake Linux, ×ŮÂĹŇÉÔĹ ÜÔŐ ĎĐĂÉŔ. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ Ó ÜÔÉÍ ×ŮÂĎŇĎÍ, ĐĎÔĎÍŐ\n"
+"ŢÔĎ ĐĎÓĚĹ ĐĎÄÔ×ĹŇÖÄĹÎÉŃ ×Ů ÂŐÄĹÔĹ ÎĹ × ÓĎÓÔĎŃÎÉÉ ×ĹŇÎŐÔŘ ×ÓĹ ÎÁÚÁÄ.\n"
+"\n"
+"!! ĺÓĚÉ ×Ů ×ŮÂĹŇĹÔĹ ÜÔŐ ĎĐĂÉŔ, ×ÓĹ ÄÁÎÎŮĹ ÎÁ ×ÁŰĹÍ ÄÉÓËĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ. !!\n"
+"\n"
+" * \"őÄÁĚÉÔŘ Windows\": ÜÔĎ ĐŇĎÓÔĎ ÓĎÔŇĹÔ ×ÓĹ Ó ÄÉÓËÁ É ÎÁŢÎĹÔ ŢÉÓÔŐŔ\n"
+"ŐÓÔÁÎĎ×ËŐ, ŇÁÚÍĹÔÉ× ×ÓĹ Ó ÎŐĚŃ. ÷ÓĹ ÄÁÎÎŮĹ ÎÁ ×ÁŰĹÍ ÄÉÓËĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ.\n"
+"!! ĺÓĚÉ ×Ů ×ŮÂĹŇĹÔĹ ÜÔŐ ĎĐĂÉŔ, ×ÓĹ ÄÁÎÎŮĹ ÎÁ ×ÁŰĹÍ ÄÉÓËĹ ÂŐÄŐÔ ĐĎÔĹŇŃÎŮ. !!\n"
+"\n"
+" * \"ňĹÖÉÍ ÜËÓĐĹŇÔÁ\": ×ŮÂĹŇÉÔĹ ÜÔŐ ĎĐĂÉŔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ×ŇŐŢÎŐŔ ŇÁÚÍĹÔÉÔŘ\n"
+"Ó×ĎĘ ÖĹÓÔËÉĘ ÄÉÓË. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ - ÜÔĎ ĎŢĹÎŘ ÍĎÝÎŮĘ, ÎĎ ĎĐÁÓÎŮĘ ×ŮÂĎŇ.\n"
+"÷Ů ĎŢĹÎŘ ĚĹÇËĎ ÍĎÖĹÔĹ ĐĎÔĹŇŃÔŘ ×ÓĹ Ó×ĎÉ ÄÁÎÎŮĹ. đĎÜÔĎÍŐ ÎĹ ×ŮÂÉŇÁĘÔĹ ĹÇĎ,\n"
+"ĐĎËÁ ×Ů ÎĹ ÂŐÄĹÔĹ ÚÎÁÔŘ, ŢÔĎ ×Ů ÄĹĚÁĹÔĹ. ţÔĎÂŮ ŐÚÎÁÔŘ, ËÁË ÉÓĐĎĚŘÚĎ×ÁÔŘ\n"
+"ĐŇÉÍĹÎŃĹÍŐŔ ÚÄĹÓŘ ŐÔÉĚÉÔŐ DiskDrake, ĎÂŇÁÔÉÔĹÓŘ Ë ŇÁÚÄĹĚŐ ``őĐŇÁ×ĚĹÎÉĹ\n"
+"Ó×ĎÉÍÉ ŇÁÚÄĹĚÁÍÉ'' × ``ňŐËĎ×ĎÄÓÔ×Ĺ ĐĎĚŘÚĎ×ÁÔĹĚŃ''."
#: ../../help.pm_.c:341
msgid ""
@@ -3380,6 +3672,17 @@ msgid ""
"appears: review the selection, and press \"Install\" to retrieve and\n"
"install the selected package(s), or \"Cancel\" to abort."
msgstr ""
+"÷Ď ×ŇĹÍŃ ŐÓÔÁÎĎ×ËÉ Mandrake Linux, ÖĹĚÁÔĹĚŘÎĎ, ŢÔĎÂŮ ÎĹËĎÔĎŇŮĹ ĐÁËĹÔŮ ÂŮĚÉ\n"
+"ĎÂÎĎ×ĚĹÎŮ ÓĎ ×ŇĹÍĹÎÉ ×ŮČĎÄÁ ÉÓČĎÄÎĎÇĎ ŇĹĚÉÚÁ. íĎÖĹÔ ÂŮÔŘ, ÂŮĚÉ ÉÓĐŇÁ×ĚĹÎŮ\n"
+"ÎĹËĎÔĎŇŮĹ ĎŰÉÂËÉ É ŇĹŰĹÎŮ ×ĎĐŇĎÓŮ ĐĎ ÂĹÚĎĐÁÓÎĎÓÔÉ. ţÔĎÂŮ ×Ů ÍĎÇĚÉ ĐĎĚŐŢÉÔŘ\n"
+"×ŮÇĎÄŐ ĎÔ ÜÔÉČ ĎÂÎĎ×ĚĹÎÉĘ, ÓĹĘŢÁÓ ×ÁÍ ĐŇĹÄĚÁÇÁĹÔÓŃ ÓËÁŢÁÔŘ ÉČ ÉÚ éÎÔĹŇÎĹÔÁ.\n"
+"÷ŮÂĹŇÉÔĹ \"äÁ\", ĹÓĚÉ Ő ×ÁÓ ĹÓÔŘ ÄĹĘÓÔ×ŐŔÝĹĹ ĐĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ, ÉĚÉ\n"
+"\"îĹÔ\", ĹÓĚÉ ĐŮ ĐŇĹÄĐĎŢÔÉÔÁĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÜÔÉ ĎÂÎĎ×ĚĹÎÉŃ ĐĎÚÖĹ.\n"
+"\n"
+"đŇÉ ×ŮÂĎŇĹ \"äÁ\" ÂŐÄĹÔ ĐĎËÁÚÁÎ ÓĐÉÓĎË ÍĹÓÔ, ÉÚ ËĎÔĎŇŮČ ÍĎÇŐÔ ÂŮÔŘ ĐĎĚŐŢĹÎŮ\n"
+"ĎÂÎĎ×ĚĹÎÉŃ. úÁÔĹÍ ĐĎŃ×ÉÔÓŃ ÄĹŇĹ×Ď ×ŮÂĎŇÁ ĐÁËĹÔĎ×: ×ŮÂĹŇÉÔĹ ÎĹĎÂČĎÄÉÍŮĹ\n"
+"É ÎÁÖÍÉÔĹ \"őÓÔÁÎĎ×ÉÔŘ\", ŢÔĎÂŮ ĐĎĚŐŢÉÔŘ É ŐÓÔÁÎĎ×ÉÔŘ ×ŮÂŇÁÎÎŮĹ ĐÁËĹÔŮ, ÉĚÉ\n"
+"ÎÁ \"ďÔÍĹÎŐ\", ŢÔĎÂŮ ĐŇĹŇ×ÁÔŘ ŐÓÔÁÎĎ×ËŐ."
#: ../../help.pm_.c:419
msgid ""
@@ -3406,9 +3709,17 @@ msgid ""
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
+"ôĹĐĹŇŘ ÎÁÓÔÁĚĎ ×ŇĹÍŃ ×ŮÂŇÁÔŘ ÖĹĚÁĹÍŮĘ ÄĚŃ ÜÔĎĘ ÍÁŰÉÎŮ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ.\n"
+"ëÁË ĐŇÁ×ÉĚĎ, ŢĹÍ ÂĎĚŘŰĹ ÍÁŰÉÎÁ ĐĎÄ×ĹŇÇÁĹÔÓŃ ĎĐÁÓÎĎÓÔÉ, É ŢĹÍ ÂĎĚŘŰĹ ×ÁÖÎÁ\n"
+"ČŇÁÎŃÝÁŃÓŃ ÎÁ ÎĹĘ ÉÎĆĎŇÍÁĂÉŃ, ÔĹÍ ×ŮŰĹ ÄĎĚÖĹÎ ÂŮÔŘ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ.\n"
+"ďÄÎÁËĎ ÂĎĚĹĹ ×ŮÓĎËÉĘ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ × ĎÓÎĎ×ÎĎÍ ÄĎÓÔÉÇÁĹÔÓŃ ×\n"
+"ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ĐŇĎÓÔĎÔŮ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ. ďÂŇÁÔÉÔĹÓŘ Ë ÇĚÁ×Ĺ \"msec\"\n"
+"``ňŐËĎ×ĎÄÓÔ×Á ĐĎĚŘÚĎ×ÁÔĹĚŃ'' ÄĚŃ ĐĎĚŐŢĹÎÉŃ ÄĎĐĎĚÎÉÔĹĚŘÎĎĘ ÉÎĆĎŇÍÁĂÉÉ Ď ÔĎÍ,\n"
+"ŢÔĎ ĎÚÎÁŢÁŔÔ ÜÔÉ ŐŇĎ×ÎÉ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ŢÔĎ ×ŮÂŇÁÔŘ, ĎÓÔÁ×ŘÔĹ ÚÎÁŢĹÎÉĹ ĐĎ ŐÍĎĚŢÁÎÉŔ."
#: ../../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"
@@ -3480,85 +3791,76 @@ msgid ""
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
-"÷ ÜÔĎÍ ĐŐÎËÔĹ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ, ËÁËÉĹ ŇÁÚÄĹĚ(Ů) \n"
-"ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ŐÓÔÁÎĎ×ËÉ ×ÁŰĹĘ ÎĎ×ĎĘ Mandrake Linux ÓÉÓÔĹÍŮ. ĺÓĚÉ ŇÁÚÄĹĚŮ\n"
-"ŐÖĹ ÓĎÚÄÁÎŮ (×Ď ×ŇĹÍŃ ĐŇĹÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ GNU/Linux ÉĚÉ ÄŇŐÇĎĘ\n"
-"ĐŇĎÇŇÁÍÍĎĘ ŇÁÚÂÉĹÎÉŃ), ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ ŇÁÚÄĹĚŮ. ÷Ď ×ÓĹČ "
-"ÄŇŐÇÉČ ÓĚŐŢÁŃČ,\n"
-"ŇÁÚÄĹĚŮ ÖĹÓÔËĎÇĎ ÄÉÓËÁ ÄĎĚÖÎŮ ÂŮÔŘ ÚÁÄÁÎŮ.\n"
-"\n"
-"\n"
-"ţÔĎÂŮ ÓĎÚÄÁÔŘ ŇÁÚÄĹĚŮ, ÓÎÁŢÁĚÁ ×ÁÍ ÎŐÖÎĎ ×ŮÂŇÁÔŘ ÖĹÓÔËÉĘ ÄÉÓË. ÷ŮÂŇÁÔŘ ÄÉÓË "
-"ÄĚŃ \n"
-"ŇÁÚÂÉĹÎÉŃ ×Ů ÍĎÖĹÔĹ, ÎÁÖÁ× \"hda\" ÄĚŃ ÄÉÓËÁ ÎÁ ĐĹŇ×ĎÍ IDE ËÁÎÁĚĹ, \"hdb\" "
-"ÄĚŃ ÄÉÓËÁ\n"
-"ÎÁ ×ÔĎŇĎÍ IDE ËÁÎÁĚĹ, ĚÉÂĎ \"sda\" ÄĚŃ ĐĹŇ×ĎÇĎ SCSI ÄÉÓËÁ É ÔÁË ÄÁĚĹĹ.\n"
-"\n"
-"\n"
-"äĚŃ ŇÁÚÂÉĹÎÉŃ ×ŮÂŇÁÎÎĎÇĎ ÖĹÓÔËĎÇĎ ÄÉÓËÁ, ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ×ÁŇÉÁÎÔŮ:\n"
-"\n"
-" * ďŢÉÓÔÉÔŘ ×ÓĹ: ÜÔĎÔ ×ÁŇÉÁÎÔ ŐÄÁĚŃĹÔ ×ÓĹ ŇÁÚÄĹĚŮ, ÓŐÝĹÓÔ×ŐŔÝÉĹ ÎÁ "
-"×ŮÂŇÁÎÎĎÍ ÖĹÓÔËĎÍ ÄÉÓËĹ.\n"
-"\n"
-"\n"
-" * á×ÔĎÍÁÔÉŢĹÓËĎĹ ŇÁÚÍĹÝĹÎÉĹ: ÜÔĎ ×ÁŇÉÁÎÔ ĐĎÚ×ĎĚŃĹÔ Á×ÔĎÍÁÔÉŢĹÓËÉ ÓĎÚÄÁÔŘ "
-"ŇÁÚÄĹĚŮ Ext2 É ĐĎÄËÁŢËÉ (swap) × Ó×ĎÂĎÄÎĎÍ (ÎĹŇÁÚÂÉÔĎÍ) ĐŇĎÓÔŇÁÎÓÔ×Ĺ "
-"×ÁŰĹÇĎ \n"
-" ÖĹÓÔËĎÇĎ ÄÉÓËÁ.\n"
+"÷ ÜÔĎÍ ĐŐÎËÔĹ ×ÁÍ ÎĹĎÂČĎÄÉÍĎ ×ŮÂŇÁÔŘ, ËÁËÉĹ ŇÁÚÄĹĚŮ ÂŐÄŐÔ ÉÓĐĎĚŘÚĎ×ÁÎŮ ÄĚŃ\n"
+"ŐÓÔÁÎĎ×ËÉ ×ÁŰĹĘ ÎĎ×ĎĘ ÓÉÓÔĹÍŮ Mandrake Linux. ĺÓĚÉ ŇÁÚÄĹĚŮ ŐÖĹ ÂŮĚÉ\n"
+"ĎĐŇĹÄĹĚĹÎŮ ÉÚ ĐŇĹÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ GNU/Linux ÉĚÉ ÉÚ ÄŇŐÇĎĘ ÓĹŇ×ÉÓÎĎĘ\n"
+"ĐŇĎÇŇÁÍÍŮ ŇÁÚÍĹÔËÉ, ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ ŇÁÚÄĹĚŮ.\n"
+"÷ ĐŇĎÔÉ×ÎĎÍ ÓĚŐŢÁĹ ÄĎĚÖÎŮ ÂŮÔŘ ĎĐŇĹÄĹĚĹÎŮ ŇÁÚÄĹĚŮ ÖĹÓÔËĎÇĎ ÄÉÓËÁ.\n"
"\n"
+"äĚŃ ÓĎÚÄÁÎÉŃ ŇÁÚÄĹĚĎ× ×Ů ÓÎÁŢÁĚÁ ÄĎĚÖÎŮ ×ŮÂŇÁÔŘ ÖĹÓÔËÉĘ ÄÉÓË. ÷Ů ÍĎÖĹÔĹ\n"
+"×ŮÂŇÁÔŘ ÄÉÓË ÄĚŃ ŇÁÚÍĹÔËÉ, ÎÁÖÁ× ÎÁ \"hda\" ÄĚŃ ĐĹŇ×ĎÇĎ IDE-ÄÉÓËÁ, \"hdb\"\n"
+"- ÄĚŃ ×ÔĎŇĎÇĎ, \"sda\" ÄĚŃ ĐĹŇ×ĎÇĎ SCSI-ÄÉÓËÁ É ÔÁË ÄÁĚĹĹ.\n"
"\n"
-" * ÷ĎÓÓÔÁÎĎ×ÉÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×: × ÜÔĎÍ ĐŐÎËÔĹ ×Ů ÍĎÖĹÔĹ ĐĎĐŮÔÁÔŘÓŃ "
-"×ĎÓÓÔÁÎĎ×ÉÔŘ ×ÁŰŐ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×, ĹÓĚÉ ĎÎÁ ĐĎ×ŇĹÖÄĹÎÁ. âŐÄŘÔĹ\n"
-" ĎÓÔĎŇĎÖÎŮ É ĐĎÍÎÉÔĹ, ŢÔĎ ĐĎĐŮÔËÁ ÍĎÖĹÔ ÚÁËĎÎŢÉÔŘÓŃ ÎĹŐÄÁŢÎĎ.\n"
+"äĚŃ ŇÁÚÍĹÔËÉ ×ŮÂŇÁÎÎĎÇĎ ÖĹÓÔËĎÇĎ ÄÉÓËÁ ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔÉ ĎĐĂÉÉ:\n"
"\n"
+" * \"ďŢÉÓÔÉÔŘ ×ÓĹ\": ÜÔÁ ĎĐĂÉŃ ŐÄÁĚŃĹÔ ×ÓĹ ŇÁÚÄĹĚŮ ÎÁ ×ŮÂŇÁÎÎĎÍ ÖĹÓÔËĎÍ\n"
+"ÄÉÓËĹ;\n"
"\n"
-" * ďÔËÁÔ: ÜÔĎÔ ĐŐÎËÔ ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ĎÔÍĹÎŮ ÓÄĹĚÁÎÎŮČ ×ÁÍÉ "
-"ÉÚÍĹÎĹÎÉĘ.\n"
+" * \"ňÁÚÍĹÓÔÉÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉ\": ÜÔÁ ĎĐĂÉŃ ĐĎÚ×ĎĚŃĹÔ Á×ÔĎÍÁÔÉŢĹÓËÉ ÓĎÚÄÁÔŘ\n"
+"ŇÁÚÄĹĚŮ ext3 É swap ÎÁ Ó×ĎÂĎÄÎĎÍ ĐŇĎÓÔŇÁÎÓÔ×Ĺ ×ÁŰĹÇĎ ÖĹÓÔËĎÇĎ ÄÉÓËÁ;\n"
"\n"
+"\"äĎĐĎĚÎÉÔĹĚŘÎĎ\": ĐŇĹÄĎÓÔÁ×ĚŃĹÔ ÄĎÓÔŐĐ Ë ÄĎĐĎĚÎÉÔĹĚŘÎŮÍ ×ĎÚÍĎÖÎĎÓÔŃÍ:\n"
"\n"
-" * đĹŇĹÚÁÇŇŐÚÉÔŘ: ÜÔĎÔ ĐŐÎËÔ ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄĚŃ ĎÔÍĹÎŮ ×ÓĹČ ÉÚÍĹÎĹÎÉĘ É "
-"ÚÁÇŇŐÚËÉ ×ÁŰĹĘ ÉÓČĎÄÎĎĘ (ĐĹŇ×ĎÎÁŢÁĚŘÎĎĘ) ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ×\n"
+" * \"óĎČŇÁÎÉÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×\": ÓĎČŇÁÎŃĹÔ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ× ÎÁ ÄÉÓËĹÔŐ.\n"
+"đĎĚĹÚÎĎ ÄĚŃ ĐĎÓĚĹÄŐŔÝĹÇĎ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ ÔÁÂĚÉĂŮ ŇÁÚÄĹĚĎ×, ĹÓĚÉ ÜÔĎ\n"
+"ÎĹĎÂČĎÄÉÍĎ. îÁÓÔĎŃÔĹĚŘÎĎ ŇĹËĎÍĹÎÄŐĹÔÓŃ ×ŮĐĎĚÎÉÔŘ ÜÔĎÔ ÜÔÁĐ;\n"
"\n"
+" * \"÷ĎÓÓÔÁÎĎ×ÉÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×\": ĐĎÚ×ĎĚŃĹÔ ×ĎÓÓÔÁÎĎ×ÉÔŘ ĐŇĹÄ×ÁŇÉÔĹĚŘÎĎ\n"
+"ÓĎČŇÁÎĹÎÎŐŔ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ× Ó ÄÉÓËĹÔŮ; \n"
"\n"
-" * íÁÓÔĹŇ: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ĐŐÎËÔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĐŇĎÇŇÁÍÍŐ-"
-"ÍÁÓÔĹŇ ÄĚŃ ŇÁÚÂÉĹÎÉŃ ×ÁŰĹÇĎ ÖĹÓÔËĎÇĎ ÄÉÓËÁ. ňĹËĎÍĹÎÄŐĹÔÓŃ, ĹÓĚÉ Ő ×ÁÓ\n"
-" ÎĹÂĎĚŘŰĎĘ ĎĐŮÔ × ŇÁÚÂÉĹÎÉÉ ÄÉÓËĎ× ÎÁ ŇÁÚÄĹĚŮ.\n"
+" * \"óĐÁÓÔÉ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×\": ĹÓĚÉ ×ÁŰÁ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ× ĐĎ×ŇĹÖÄĹÎÁ, ×Ů\n"
+"ÍĎÖĹÔĹ ĐĎĐŮÔÁÔŘÓŃ ×ĎÓÓÔÁÎĎ×ÉÔŘ ĹĹ, ÉÓĐĎĚŘÚŐŃ ÜÔŐ ĎĐĂÉŔ. đĎÖÁĚŐĘÓÔÁ, ÂŐÄŘÔĹ\n"
+"ĎÓÔĎŇĎÖÎŮ É ĐĎÍÎÉÔĹ, ŢÔĎ ×ĎÓÓÔÁÎĎ×ĚĹÎÉĹ ÍĎÖĹÔ ÚÁ×ĹŇŰÉÔŘÓŃ ÎĹŐÄÁŢĹĘ;\n"
+" * \"đĹŇĹÚÁÇŇŐÚÉÔŘ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×\": ĎÔÍĹÎŃĹÔ ×ÓĹ ÉÚÍĹÎĹÎÉŃ É ÚÁÇŇŐÖÁĹÔ\n"
+"×ÁŰŐ ÉÓČĎÄÎŐŔ ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×;\n"
"\n"
+" * \"á×ÔĎÍÁÔÉŢĹÓËĎĹ ÍĎÎÔÉŇĎ×ÁÎÉĹ ÓßĹÍÎŮČ ŐÓÔŇĎĘÓÔ×\": ŐÂŇÁ× ÇÁĚĎŢËŐ Ó ÜÔĎĘ\n"
+"ĎĐĂÉÉ, ×Ů ÚÁÓÔÁ×ÉÔĹ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ ×ŇŐŢÎŐŔ ÍĎÎÔÉŇĎ×ÁÔŘ É ŇÁÚÍĎÎÔÉŇĎ×ÁÔŘ\n"
+"ÓßĹÍÎŮĹ ÎÁËĎĐÉÔĹĚÉ, ÔÁËÉĹ ËÁË ÄÉÓËĹÔŮ É ËĎÍĐÁËÔ-ÄÉÓËÉ;\n"
"\n"
-" * ÷ĎÓÓÔÁÎĎ×ÉÔŘÓŃ Ó ÄÉÓËĹÔŮ: ×ŮÂŇÁ× ÜÔĎÔ ĐŐÎËÔ, ×Ů ÍĎÖĹÔĹ ×ĎÓÓÔÁÎĎ×ÉÔŘ "
-"ÔÁÂĚÉĂŐ ŇÁÚÄĹĚĎ×, ĹÓĚÉ ×Ů ĹĹ ÓĎČŇÁÎŃĚÉ ×Ď ×ŇĹÍŃ\n"
-" ĐĹŇÄŮÄŐÝĹĘ ŐÓÔÁÎĎ×ËÉ.\n"
+" * \"íÁÓÔĹŇ\": ÉÓĐĎĚŘÚŐĘÔĹ ÜÔŐ ĎĐĂÉŔ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÍÁÓÔĹŇ\n"
+"ÄĚŃ ŇÁÚÍĹÔËÉ Ó×ĎĹÇĎ ÖĹÓÔËĎÇĎ ÄÉÓËÁ. ďÎÁ ŇĹËĎÍĹÎÄŐĹÔÓŃ, ĹÓĚÉ ×Ů ÓĚÁÂĎ\n"
+"ŇÁÚÂÉŇÁĹÔĹÓŘ × ŇÁÚÍĹÔËĹ ÖĹÓÔËÉČ ÄÉÓËĎ×.\n"
"\n"
+" * \"ďÔÍĹÎÁ\": ÉÓĐĎĚŘÚŐĘÔĹ ÜÔŐ ĎĐĂÉŔ ÄĚŃ ĎÔÍĹÎŮ Ó×ĎÉČ ÉÚÍĹÎĹÎÉĘ;\n"
"\n"
-" * óĎČŇÁÎÉÔŘ ÎÁ ÄÉÓËĹÔŐ: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ĐŐÎËÔ, ŢÔĎÂŮ ÓĎČŇÁÎÉÔŘ ÔÁÂĚÉĂŐ "
-"ŇÁÚÄĹĚĎ× ÎÁ ÄÉÓËĹÔŐ. üÔĎ ÄÁÓÔ ×ÁÍ ×ĎÚÍĎÖÎĎÓÔŘ ×ĎÓÓÔÁÎĎ×ÉÔŘ ĹĹ ĐĎÚÖĹ\n"
-" . îÁÓÔĎŃÔĹĚŘÎĎ ŇĹËĎÍĹÎÄŐĹÔÓŃ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔĎÔ ĐŐÎËÔ\n"
+" * \"đĹŇĹËĚŔŢÉÔÓŃ × ŇĹÖÉÍ ÎĎŇÍÁĚŘÎŮĘ/ÜËÓĐĹŇÔÁ\": ŇÁÚŇĹŰÁĹÔ ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ\n"
+"ÄĹĘÓÔ×ÉŃ ÎÁÄ ŇÁÚÄĹĚÁÍÉ (ÔÉĐ, ĎĐĂÉÉ, ĆĎŇÍÁÔ) É ×Ů×ĎÄÉÔ ÄĎĐĎĚÎÉÔĹĚŘÎŐŔ\n"
+"ÉÎĆĎŇÍÁĂÉŔ;\n"
"\n"
+" * \"çĎÔĎ×Ď\": ËĎÇÄÁ ×Ů ÚÁËĎÎŢÉÔĹ ŇÁÚÍĹÔËŐ Ó×ĎĹÇĎ ÖĹÓÔËĎÇĎ ÄÉÓËÁ, ÜÔĎ\n"
+"ÓĎČŇÁÎÉÔ ×ÁŰÉ ÉÚÍĹÎĹÎÉŃ ÎÁ ÄÉÓË.\n"
"\n"
-" * ÷ŮĐĎĚÎĹÎĎ: ×ŮÂĹŇÉÔĹ ÜÔĎÔ ĐŐÎËÔ, ËĎÇÄÁ ×Ů ÚÁËĎÎŢÉÔĹ ŇÁÚÂÉĹÎÉĹ drive, "
-"ŢÔĎÂŮ ÓĎČŇÁÎÉÔŘ ÓÄĹĚÁÎÎŮĹ ÉÚÍĹÎĹÎÉŃ.\n"
+"đŇÉÍĹŢÁÎÉĹ: ×Ů ÍĎÖĹÔĹ ĐĹŇĹĘÔÉ Ë ĚŔÂĎĘ ĎĐĂÉÉ, ÉÓĐĎĚŘÚŐŃ ËĚÁ×ÉÁÔŐŇŐ.\n"
+"đĹŇĹČĎÄÉÔĹ ĐĎ ŇÁÚÄĹĚÁÍ, ÉÓĐĎĚŘÚŐŃ [Tab] É ÓÔŇĹĚËÉ [÷×ĹŇČ/÷ÎÉÚ].\n"
"\n"
+"ëĎÇÄÁ ×ŮÂŇÁÎ ŇÁÚÄĹĚ, ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ:\n"
"\n"
-"÷Ů ÍĎÖĹÔĹ ĐĹŇĹĘÔÉ Ë ×ŮÂĎŇŐ ĚŔÂĎÇĎ ĐŐÎËÔÁ Ó ËĚÁ×ÉÁÔŐŇŮ: ĐĹŇĹČĎÄ ÍĹÖÄŐ "
-"ŇÁÚÄĹĚÁÍÉ ĎÓŐÝĹÓÔ×ĚŃĹÔÓŃ Ó ĐĎÍĎÝŘŔ ËĚÁ×ÉŰ Tab É ÓÔŇĹĚĎË ÷×ĹŇČ/÷ÎÉÚ.\n"
+" * Ctrl-c, ŢÔĎÂŮ ÓĎÚÄÁÔŘ ÎĎ×ŮĘ ŇÁÚÄĹĚ (ËĎÇÄÁ ×ŮÂŇÁÎ ĐŐÓÔĎĘ ŇÁÚÄĹĚ);\n"
"\n"
+" * Ctrl-d, ŢÔĎÂŮ ŐÄÁĚÉÔŘ ŇÁÚÄĹĚ;\n"
"\n"
-"ëĎÇÄÁ ŇÁÚÄĹĚ ×ŮÂŇÁÎ, ÷Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ:\n"
+" * Ctrl-m, ŢÔĎÂŮ ŐÓÔÁÎĎ×ÉÔŘ ÔĎŢËŐ ÍĎÎÔÉŇĎ×ÁÎÉŃ.\n"
"\n"
-" * Ctrl-c ÄĚŃ ÓĎÚÄÁÎÉŃ ÎĎ×ĎÇĎ ŇÁÚÄĹĚÁ (ËĎÇÄÁ ×ŮÂŇÁÎ ĐŐÓÔĎĘ "
-"ŇÁÚÄĹĚ)\n"
+"äĚŃ ĐĎĚŐŢĹÎÉŃ ÉÎĆĎŇÍÁĂÉÉ Ď ÔÉĐÁČ ŇÁÚĚÉŢÎŮČ ÄĎÓÔŐĐÎŮČ ĆÁĘĚĎ×ŮČ ÓÉÓÔĹÍ, "
+"ĐĎÖÁĚŐĘÓÔÁ, ĐŇĎŢÔÉÔĹ ÇĚÁ×Ő ext2FS ÉÚ ``ňŐËĎ×ĎÄÓÔ×Á ĐĎĚŘÚĎ×ÁÔĹĚŃ''.\n"
"\n"
-" * Ctrl-d ÄĚŃ ŐÄÁĚĹÎÉŃ ŇÁÚÄĹĚÁ\n"
-"\n"
-" * Ctrl-m ÄĚŃ ÚÁÄÁÎÉŃ ÔĎŢËÉ ÍĎÎÔÉŇĎ×ÁÎÉŃ\n"
-" \n"
-"\n"
-" \n"
-"ĺÓĚÉ ×Ů ×ŮĐĎĚÎŃĹÔĹ ŐÓÔÁÎĎ×ËŐ ÎÁ ËĎÍĐŘŔÔĹŇĹ PPC, ×ĎÚÍĎÖÎĎ, ×Ů ÚÁČĎÔÉÔĹ "
-"ÓĎÚÄÁÔŘ ÎĹÂĎĚŘŰĎĘ HFS 'bootstrap' ŇÁÚÄĹĚ ÎĹ ÍĹÎĹĹ 1MB ÄĚŃ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ĹÇĎ\n"
-"ÎÁŢÁĚŘÎŮÍ ÚÁÇŇŐÚŢÉËĎÍ yaboot. ĺÓĚÉ ×Ů ŇĹŰÉÔĹ ÓÄĹĚÁÔŘ ŇÁÚÄĹĚ ÎĹÍÎĎÇĎ ÂĎĚŘŰĹ, "
-"ÎÁĐŇÉÍĹŇ 50MB, ×Ů ÍĎÖĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔĎ ÍĹÓÔĎ ÄĚŃ \n"
-"ČŇÁÎĹÎÉŃ ŃÄŇÁ É ĎÂŇÁÚÁ ramdisk ÄĚŃ ÓĚŐŢÁĹ× Á×ÁŇÉĘÎĎĘ ÚÁÇŇŐÚËÉ."
+"ĺÓĚÉ ×Ů ×ŮĐĎĚÎŃĹÔĹ ŐÓÔÁÎĎ×ËŐ ÎÁ ÍÁŰÉÎŐ PPC, ×ÁÍ ĐĎÎÁÄĎÂÉÔÓŃ ÓĎÚÄÁÔŘ\n"
+"ÎĹÂĎĚŘŰĎĘ ŇÁÚÄĹĚ HFS 'bootstrap' ĐĎ ËŇÁĘÎĹĘ ÍĹŇĹ, 1íâ, ËĎÔĎŇŮĘ ÂŐÄĹÔ\n"
+"ÉÓĐĎĚŘÚĎ×ÁÎ ÎÁŢÁĚŘÎŮÍ ÚÁÇŇŐÚŢÉËĎÍ yaboot. ĺÓĚÉ ×Ů ĐŇĹÄĐĎŢÔĹÔĹ ÓÄĹĚÁÔŘ\n"
+"ŇÁÚÄĹĚ ŢŐÔĎŢËŐ ÂĎĚŘŰĹ, ÓËÁÖĹÍ, 50íâ, ×Ů ÍĎÖĹÔĹ ÎÁĘÔÉ ĹÇĎ ĐĎĚĹÚÎŮÍ ÍĹÓÔĎÍ\n"
+"ÄĚŃ ČŇÁÎĹÎÉŃ ÚÁĐÁÓÎĎÇĎ ŃÄŇÁ É ĎÂŇÁÚĎ× ram-ÄÉÓËÁ ÄĚŃ ÓĚŐŢÁĹ× Á×ÁŇÉĘÎĎĘ\n"
+"ÚÁÇŇŐÚËÉ."
#: ../../help.pm_.c:507
msgid ""
@@ -3628,7 +3930,6 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ÚÁĐÁÓÉÔĹÓŘ ÔĹŇĐĹÎÉĹÍ. üÔÁ ĎĐĹŇÁĂÉŃ ÍĎÖĹÔ ÚÁÎŃÔŘ ÎĹÓËĎĚŘËĎ ÍÉÎŐÔ."
#: ../../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"
@@ -3666,41 +3967,42 @@ msgid ""
"GNU/Linux, so it is not recommended that those without a fair amount of\n"
"experience select this installation class."
msgstr ""
-"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ \"őÓÔÁÎĎ×ËÁ\", ĹÓĚÉ Ő ×ÁÓ ÎĹ ÂŮĚÁ ŐÓÔÁÎĎ×ĚĹÎÁ "
-"ĐŇĹÄŮÄŐÝÁŃ ×ĹŇÓÉŃ Mandrake Linux\n"
-"ÉĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÎĹÓËĎĚŘËĎ ĎĐĹŇÁĂÉĎÎÎŮČ ÓÉÓÔĹÍ.\n"
-"\n"
-"\n"
-"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ \"ďÂÎĎ×ĚĹÎÉĹ\", ĹÓĚÉ ×Ů ČĎÔÉÔĹ ĎÂÎĎ×ÉÔŘ ŐÖĹ "
-"ŐÓÔÁÎĎ×ĚĹÎÎŐŔ ×ĹŇÓÉŔ Mandrake Linux.\n"
-"\n"
-"\n"
-"÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ×ÁŰĹÇĎ ĎĐŮÔÁ × GNU/Linux, ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ĎÄÉÎ ÉÚ "
-"ÓĚĹÄŐŔÝÉČ ŐŇĎ×ÎĹĘ ŐÓÔÁÎĎ×ËÉ ÉĚÉ ĎÂÎĎ×ĚĹÎÉŃ ×ÁŰĹĘ\n"
-"ĎĐĹŇÁĂÉĎÎÎÎĎĘ ÓÉÓÔĹÍŮ Mandrake Linux:\n"
+"äĚŃ DrakX ÔĹĐĹŇŘ ÎĹĎÂČĎÄÉÍĎ ÚÎÁÔŘ ČĎÔÉÔĹ ĚÉ ×Ů ×ŮĐĎĚÎÉÔŘ ŐÓÔÁÎĎ×ËŐ ĐĎ "
+"ŐÍĎĚŢÁÎÉŔ (\"ňĹËÍĎÎÄŐĹÍŐŔ\"), ÉĚÉ ×Ů ČĎÔÉÔĹ ĐĎĚŐŢÉÔŘ ÂĎĚŘŰÉĘ ËĎÎÔŇĎĚŘ "
+"(\"üËÓĐĹŇÔ\"). ÷Ů ÔÁËÖĹ ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÎĎ×ŐŔ ŐÓÔÁÎĎ×ËŐ ÉĚÉ ĎÂÎĎ×ĚĹÎÉĹ "
+"ÓŐÝĹÓÔ×ŐŔÝĹĘ ÓÉÓÔĹÍŮ Mandrake Linux:\n"
"\n"
"* ňĹËĎÍĹÎÄŐĹÍŮĘ: ĹÓĚÉ ×Ů ŇÁÎĹĹ ÎÉËĎÇÄÁ ÎĹ ŐÓÔÁÎÁ×ĚÉ×ÁĚÉ ĎĐĹŇÁĂÉĎÎÎŮČ ÓÉÓÔĹÍ "
"GNU/Linux ×ŮÂĹŇÉÔĹ ÜÔĎÔ. őÓÔÁÎĎ×ËÁ ÂŐÄĹÔ\n"
" ĎŢĹÎŘ ĐŇĎÓÔĎĘ É ×ÁÍ ÂŐÄĹÔ ÚÁÄÁÎĎ ×ÓĹÇĎ ÎĹÓËĎĚŘËĎ ×ĎĐŇĎÓĎ×.\n"
"\n"
+" * \"őÓÔÁÎĎ×ËÁ\": ĐĎĚÎĎÓÔŘŔ ŐÄÁĚŃĹÔ ÓÔÁŇŐŔ ÓÉÓÔĹÍŐ, ĎÄÎÁËĎ, × ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ "
+"ÔĎÇĎ, ŢÔĎ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ŐÓÔÁÎĎ×ĚĹÎĎ ÎÁ ×ÁŰĹĘ ÍÁŰÉÎĹ, ×Ů ÍĎÖĹÔĹ ĎÓÔÁ×ÉÔŘ "
+"ÎĹËĎÔĎŇŮĹ ÓÔÁŇŮĹ ŇÁÚÄĹĚŮ (Linux ÉĚÉ ÄŇŐÇÉĹ) ÂĹÚ ÉÚÍĹÎĹÎÉĘ;\n"
+"\n"
+" * \"ďÂÎĎ×ĚĹÎÉĹ\": ÜÔĎÔ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ ĐĎÚ×ĎĚŃĹÔ ĐŇĎÓÔĎ ĎÂÎĎ×ÉÔŘ ĐÁËĹÔŮ, "
+"ŐÓÔÁÎĎ×ĚĹÎÎŮĹ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ × ×ÁŰĹĘ ÓÉÓÔĹÍĹ. ďÎ ÓĎČŇÁÎŃĹÔ ÔĹËŐÝÉĹ ŇÁÚÄĹĚŮ "
+"×ÁŰÉČ ÖĹÓÔËÉČ ÄÉÓËĎ×, Á ÔÁËÖĹ ÎÁÓÔŇĎĘËÉ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ. ÷ÓĹ ÄŇŐÇÉĹ ÜÔÁĐŮ "
+"ÎÁÓÔŇĎĘËÉ ĎÓÔÁŔÔÓŃ × ÓÉĚĹ ĐĎ ÁÎÁĚĎÇÉÉ Ó ĎÂŮŢÎĎĘ ŐÓÔÁÎĎ×ËĎĘ;\n"
+" * \"ôĎĚŘËĎ ĎÂÎĎ×ĚĹÎÉĹ ĐÁËĹÔĎ×\": ÜÔĎÔ ÎĎ×ŮĘ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ ĐĎÚ×ĎĚŃĹÔ ×ÁÍ "
+"ĎÂÎĎ×ÉÔŘ ÓŐÝĹÓÔ×ŐŔÝŐŔ ÓÉÓÔĹÍŐ Mandrake Linux, ĎÓÔÁ×É× ĐŇÉ ÜÔĎÍ ÓÉÓÔĹÍÎŮĹ "
+"ÎÁÓÔŇĎĘËÉ ÂĹÚ ÉÚÍĹÎĹÎÉĘ. äĎÂÁ×ĚĹÎÉĹ ÎĎ×ŮČ ĐÁËĹÔĎ× × ÔĹËŐÝŐŔ ŐÓÔÁÎĎ×ËŐ ÔÁËÖĹ "
+"×ĎÚÍĎÖÎĎ.\n"
"\n"
-"* ÷ŮÂĎŇĎŢÎŮĘ: ĹÓĚÉ ×Ů ÄĎÓÔÁÔĎŢÎĎ ÚÎÁËĎÍŮ Ó GNU/Linux, ÔĎ ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ "
-"ĂĹĚĹ×ĎĹ ÎÁÚÎÁŢĹÎÉĹ (ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ, ÓĹŇ×ĹŇ,\n"
-" ŇÁÚŇÁÂĎÔËÁ ĐŇĎÇŇÁÍÍ) ×ÁŰĹĘ ÓÉÓÔĹÍŮ. ÷ÁÍ ÂŐÄĹÔ ÚÁÄÁÎĎ ÂĎĚŘŰĹ ×ĎĐŇĎÓĎ×, ŢĹÍ "
-"× ×ÁŇÉÁÎÔĹ ŐÓÔÁÎĎ×ËÉ \"ňĹËĎÍĹÎÄŐĹÔÓŃ\" \n"
-" ŐŇĎ×ĹÎŘ, ĐĎÜÔĎÍŐ ×ÁÍ ÎŐÖÎĎ ÚÎÁÔŘ, ËÁË ŇÁÂĎÔÁĹÔ GNU/Linux ŢÔĎÂŮ ×ŮÂŇÁÔŘ "
-"ÜÔĎÔ ŐŇĎ×ĹÎŘ ŐÓÔÁÎĎ×ËÉ.\n"
+"ďÂÎĎ×ĚĹÎÉŃ ÄĎĚÖÎŮ ĐŇĹËŇÁÓÎĎ ŇÁÂĎÔÁÔŘ ÎÁ ÓÉÓÔĹÍÁČ Mandrake Linux ×ĹŇÓÉĘ \"8.1"
+"\" ÉĚÉ ÂĎĚĹĹ ĐĎÚÄÎÉČ.\n"
"\n"
+"÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ×ÁŰĹÇĎ ŐŇĎ×ÎŃ ÚÎÁÎÉŃ GNU/Linux, ×ŮÂĹŇÉÔĹ ĎÄÉÎ ÉÚ ÓĚĹÄŐŔÝÉČ\n"
+"×ÁŇÉÁÎÔĎ×:\n"
"\n"
-"* üËÓĐĹŇÔ: ĹÓĚÉ ×Ů ĎÂĚÁÄÁĹÔĹ ČĎŇĎŰÉÍÉ ÚÎÁÎÉŃÍÉ × GNU/Linux, ×Ů ÍĎÖĹÔĹ "
-"×ŮÂŇÁÔŘ ÜÔĎÔ ŐŇĎ×ĹÎŘ ŐÓÔÁÎĎ×ËÉ. ëÁË É × ŐŇĎ×ÎĹ \"÷ŮÂĎŇĎŢÎÁŃ\",\n"
-" ×Ů ÓÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ĂĹĚĹ×ĎĹ ÎÁÚÎÁŢĹÎÉĹ (ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ, ÓĹŇ×ĹŇ, ŇÁÚŇÁÂĎÔËÁ "
-"ĐŇĎÇŇÁÍÍ). âŐÄŘÔĹ ĎŢĹÎŘ\n"
-" ĎÓÔĎŇĎÖÎŮ × ×ŮÂĎŇĹ ÜÔĎÇĎ ŐŇĎ×ÎŃ ŐÓÔÁÎĎ×ËÉ. ÷ ÎĹÍ ×Ů ÍĎÖĹÔĹ ĎÓŐÝĹÓÔ×ÉÔŘ "
-"ĎŢĹÎŘ ÔĎÎËŐŔ ÎÁÓÔŇĎĘËŐ ĐŇĎĂĹÓÓÁ ŐÓÔÁÎĎ×ËÉ.\n"
-" ďÔ×ĹÔÉÔŘ ÎÁ ÎĹËĎÔĎŇŮĹ ×ĎĐŇĎÓŮ, ÎĹ ĎÂĚÁÄÁŃ ČĎŇĎŰÉÍÉ ÚÎÁÎÉŃÍÉ × GNU/Linux, "
-"ÍĎÖĹÔ ÂŮÔŘ ĎŢĹÎŘ ÔŇŐÄÎĎ. đĎÜÔĎÍŐ ÎĹ ×ŮÂÉŇÁĘÔĹ ÜÔĎÔ ŐŇĎ×ĹÎŘ ŐÓÔÁÎĎ×ËÉ,\n"
-" ĹÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ × ÔĎÍ, ŢÔĎ ÄĹĚÁĹÔĹ."
+" * ňĹËĎÍĹÎÄŐĹÍŮĘ: ×ŮÂĹŇÉÔĹ ĹÇĎ, ĹÓĚÉ ×Ů ÎÉËĎÇÄÁ ÎĹ ŐÓÔÁÎÁ×ĚÉ×ÁĚÉ\n"
+"ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ GNU/Linux. őÓÔÁÎĎ×ËÁ ÂŐÄĹÔ ĎŢĹÎŘ ĐŇĎÓÔĎĘ É ×ÁÍ ÂŐÄĹÔ\n"
+"ÚÁÄÁÎĎ ×ÓĹÇĎ ĚÉŰŘ ÎĹÓËĎĚŘËĎ ×ĎĐŇĎÓĎ×;\n"
+"\n"
+" * üËÓĐĹŇÔ: ĹÓĚÉ ×Ů ČĎŇĎŰĎ ŇÁÚÂÉŇÁĹÔĹÓŘ × GNU/Linux, ×Ů ÍĎÖĹÔĹ ×ŮĐĎĚÎÉÔŘ\n"
+"ŰÉŇĎËĎ ÎÁÓÔŇÁÉ×ÁĹÍŐŔ ŐÓÔÁÎĎ×ËŐ. îĹËĎÔĎŇŮĹ ŇĹŰĹÎÉŃ, ËĎÔĎŇŮĹ ×Ů ÄĎĚÖÎŮ ÂŐÄĹÔĹ\n"
+"ĐŇÉÎŃÔŘ, ÍĎÇŐÔ ĎËÁÚÁÔŘÓŃ ÔŇŐÄÎŮÍÉ, ĹÓĚÉ ×Ů ÓĚÁÂĎ ÚÎÁĹÔĹ GNU/Linux, ĐĎÜÔĎÍŐ\n"
+"ÎĹ ŇĹËĎÍĹÎÄŐĹÔÓŃ ×ŮÂÉŇÁÔŘ ÜÔĎÔ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ, ÎĹ ÉÍĹŃ ÄĎÓÔÁÔĎŢÎĎÇĎ ĎĐŮÔÁ."
#: ../../help.pm_.c:578
msgid ""
@@ -3719,6 +4021,21 @@ msgid ""
"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"
+"ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÁŃ ×ÁŰĹÍŐ ŃÚŮËŐ: ÎÁĐŇÉÍĹŇ, ĹÓĚÉ ×Ů ŇŐÓÓËĎŃÚŮŢÎŮĘ ŐËŇÁÉÎĹĂ,\n"
+"×ÁÍ ×ÓĹ-ÔÁËÉ ÍĎÖĹÔ ĐĎÎÁÄĎÂÉÔŘÓŃ ŇŐÓÓËÁŃ ËĚÁ×ÉÁÔŐŇÁ. éĚÉ, ĹÓĚÉ ×Ů ÇĎ×ĎŇÉÔĹ\n"
+"ĐĎ-ÁÎÇĚÉĘÓËÉ, Á ÎÁČĎÄÉÔĹÓŘ × ë×ĹÂĹËĹ, ×Ů ÍĎÖĹÔ ĎËÁÚÁÔŘÓŃ × ÔÁËĎĘ ÖĹ\n"
+"ÓÉÔŐÁĂÉÉ. ÷ ĎÂĎÉČ ÓĚŐŢÁŃČ ×Ů ÄĎĚÖÎŮ ÂŐÄĹÔĹ ×ĹŇÎŐÔŘÓŃ ÎÁ ÜÔĎÔ ÜÔÁĐ ŐÓÔÁÎĎ×ËÉ\n"
+"É ×ŮÂŇÁÔŘ ÉÚ ÓĐÉÓËÁ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝŐŔ ËĚÁ×ÉÁÔŐŇŐ.\n"
+"\n"
+"îÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ \"äĎĐĎĚÎÉÔĹĚŘÎĎ\", ŢÔĎÂŮ Ő×ÉÄĹÔŘ ĐĎĚÎŮĘ ÓĐÉÓĎË\n"
+"ĐĎÄÄĹŇÖÉ×ÁĹÍŮČ ËĚÁ×ÉÁÔŐŇ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ×ŮÂĹŇĹÔĹ ŇÁÓËĚÁÄËŐ ËĚÁ×ÉÁÔŐŇŮ, ĎÓÎĎ×ÁÎÎŐŔ ÎÁ ÎĹĚÁÔÉÎÓËĎÍ ÁĚĆÁ×ÉÔĹ,\n"
+"× ÓĚĹÄŐŔÝĹÍ ÄÉÁĚĎÇĹ ×ÁÍ ÂŐÄĹÔ ÚÁÄÁÎ ×ĎĐŇĎÓ ÄĚŃ ×ŮÂĎŇÁ ËĎÍÂÉÎÁĂÉÉ ËĚÁ×ÉŰ,\n"
+"ËĎÔĎŇÁŃ ÂŐÄĹÔ ĎÓŐÝĹÓÔ×ĚŃÔŘ ĐĹŇĹËĚŔŢĹÎÉĹ ÍĹÖÄŐ ĚÁÔÉÎÓËĎĘ É ÎĹĚÁÔÉÎÓËĎĘ\n"
+"ŇÁÓËĚÁÄËÁÍÉ ËĚÁ×ÉÁÔŐŇŮ."
#: ../../help.pm_.c:594
msgid ""
@@ -3736,6 +4053,22 @@ msgid ""
"Note that multiple languages may be installed. Once you have selected any\n"
"additional locales, click the \"OK\" button to continue."
msgstr ""
+"đĹŇ×ŮÍ ŰÁÇĎÍ Ń×ĚŃĹÔÓŃ ×ŮÂĎŇ ĐŇĹÄĐĎŢÉÔÁĹÍĎÇĎ ŃÚŮËÁ.\n"
+"\n"
+"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐŇĹÄĐĎŢÉÔÁĹÍŮĘ ŃÚŮË ÄĚŃ ŐÓÔÁÎĎ×ËÉ É ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ×\n"
+"ÓÉÓÔĹÍĹ.\n"
+"\n"
+"îÁÖÁ× ÎÁ ËÎĎĐËŐ \"äĎĐĎĚÎÉÔĹĚŘÎĎ\", ×Ů ÓÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŃÚŮËÉ, ËĎÔĎŇŮĹ\n"
+"ÂŐÄŐÔ ŐÓÔÁÎĎ×ĚĹÎŮ ÎÁ ×ÁŰŐ ŇÁÂĎŢŐŔ ÓÔÁÎĂÉŔ. đŇÉ ×ŮÂĎŇĹ ÄŇŐÇÉČ ŃÚŮËĎ× ÂŐÄŐÔ\n"
+"ŐÓÔÁÎĎ×ĚĹÎŮ ĆÁĘĚŮ ÜÔĎÇĎ ŃÚŮËÁ, ÎĹĎÂČĎÄÉÍŮĹ ÄĚŃ ÓÉÓÔĹÍÎĎĘ ÄĎËŐÍĹÎÔÁĂÉÉ É\n"
+"ĐŇÉĚĎÖĹÎÉĘ. îÁĐŇÉÍĹŇ, ĹÓĚÉ ×Ů ÂŐÄĹÔĹ ĐŇĹÄĎÓÔÁ×ĚŃÔŘ ÎÁ Ó×ĎĹĘ ÍÁŰÉÎĹ ČĎÓÔÉÎÇ\n"
+"ÄĚŃ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ ÉÚ éÓĐÁÎÉÉ, ×ŮÂĹŇÉÔĹ ÉÚ ÄĹŇĹ×Á ŇŐÓÓËÉĘ × ËÁŢĹÓÔ×Ĺ\n"
+"ÇĚÁ×ÎĎÇĎ ŃÚŮËÁ É × ŇÁÚÄĹĚĹ äĎĐĎĚÎÉÔĹĚŘÎĎ ĐĎÓÔÁ×ŘÔĹ ÇÁĚĎŢËŐ ÎÁĐŇĎÔÉ×\n"
+"\"éÓĐÁÎÓËÁŃ|éÓĐÁÎÉŃ\".\n"
+"\n"
+"đĎÍÎÉÔĹ, ŢÔĎ ÍĎÖĹÔ ÂŮÔŘ ŐÓÔÁÎĎ×ĚĹÎĎ ÎĹÓËĎĚŘËĎ ŃÚŮËĎ×. đĎÓĚĹ ÔĎÇĎ, ËÁË ×Ů\n"
+"×ŮÂĹŇÉÔĹ ËÁËÉĹ-ĚÉÂĎ ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ŇĹÇÉĎÎÁĚŘÎŮĹ ÓĐĹĂÉĆÉËÉ, ÎÁÖÍÉÔĹ ÎÁ\n"
+"ËÎĎĐËŐ \"ďë\" ÄĚŃ ĐŇĎÄĎĚÖĹÎÉŃ."
#: ../../help.pm_.c:609
msgid ""
@@ -3759,6 +4092,24 @@ msgid ""
"mouse to activate it correctly. Then test all buttons and movements are\n"
"correct."
msgstr ""
+"DrakX ĎÂŮŢÎĎ ÓÁÍ ĎĐŇĹÄĹĚŃĹÔ ËĎĚÉŢĹÓÔ×Ď ËÎĎĐĎË ÎÁ ×ÁŰĹĘ ÍŮŰÉ. ĺÓĚÉ ÜÔĎ ÎĹ\n"
+"ÔÁË, ĎÎ ÓÄĹĚÁĹÔ ĐŇĹÄĐĎĚĎÖĹÎÉĹ, ŢÔĎ Ő ×ÁÓ Ä×ŐČËÎĎĐĎŢÎÁŃ ÍŮŰŘ, É ÎÁÓÔŇĎÉÔ ĹĹ\n"
+"ÄĚŃ ÜÍŐĚŃĂÉÉ ÔŇĹÔŘĹĘ ËÎĎĐËÉ. DrakX Á×ÔĎÍÁÔÉŢĹÓËÉ ŇÁÓĐĎÚÎÁĹÔ ÔÉĐ\n"
+"ĐĎÄËĚŔŢĹÎÎĎĘ ÍŮŰÉ: PS/2, USB ÉĚÉ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎÁŃ.\n"
+"ĺÓĚÉ ×Ů ÚÁČĎÔÉÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇĎĘ ÔÉĐ ÍŮŰÉ, ×ŮÂĹŇÉÔĹ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĘ ÔÉĐ ÉÚ\n"
+"ĐŇĹÄĚĎÖĹÎÎĎÇĎ ÓĐÉÓËÁ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ×ŮÂĹŇÉÔĹ ÍŮŰŘ, ĎÔĚÉŢÁŔÝŐŔÓŃ ĎÔ ÍŮŰÉ ĐĎ ŐÍĎĚŢÁÎÉŔ, ÂŐÄĹÔ ĐĎËÁÚÁÎ\n"
+"ÜËŇÁÎ ÄĚŃ ĐŇĎ×ĹŇËÉ. éÓĐĎĚŘÚŐĘÔĹ ËÎĎĐËÉ É ËĎĚĹÓÉËĎ, ŢÔĎÂŮ ĐŇĎ×ĹŇÉÔŘ\n"
+"ĐŇÁ×ÉĚŘÎĎÓÔŘ ÉČ ÎÁÓÔŇĎĘËÉ. ĺÓĚÉ ÍŮŰŘ ŇÁÂĎÔÁĹÔ ÎĹËĎŇŇĹËÔÎĎ, ÎÁÖÍÉÔĹ ÎÁ\n"
+"ĐŇĎÂĹĚ ÉĚÉ [Enter] ÄĚŃ \"ďÔÍĹÎŮ\" É ×ŮÂĹŇÉÔĹ ĹÝĹ ŇÁÚ.\n"
+"\n"
+"íŮŰÉ Ó ËĎĚĹÓÉËĎÍ ÉÎĎÇÄÁ ÎĹ ĎÂÎÁŇŐÖÉ×ÁŔÔÓŃ Á×ÔĎÍÁÔÉŢĹÓËÉ. ÷ÁÍ ĐĎÎÁÄĎÂÉÔÓŃ\n"
+"×ŇŐŢÎŐŔ ×ŮÂŇÁÔŘ ÉČ ÉÚ ÓĐÉÓËÁ. őÂĹÄÉÔĹÓŘ, ŢÔĎ ×Ů ĐŇÁ×ÉĚŘÎĎ ×ŮÂŇÁĚÉ ĐĎŇÔ, Ë\n"
+"ËĎÔĎŇĎÍŐ ĐĎÄËĚŔŢĹÎÁ ×ÁŰÁ ÍŮŰŘ. đĎÓĚĹ ÔĎÇĎ, ËÁË ×Ů ÎÁÖÍĹÔĹ ÎÁ ËÎĎĐËŐ \"ďë\",\n"
+"ÂŐÄĹÔ ĐĎËÁÚÁÎĎ ÉÚĎÂŇÁÖĹÎÉĹ ÍŮŰÉ. ÷ÁÍ ÎÁÄĎ ÂŐÄĹÔ ĐŇĎËŇŐÔÉÔŘ ËĎĚĹÓÉËĎ Ó×ĎĹĘ\n"
+"ÍŮŰÉ, ŢÔĎÂŮ ŐÂĹÄÉÔÓŃ × ĐŇÁ×ÉĚŘÎĎÓÔÉ ĹÇĎ ŇÁÂĎÔŮ. úÁÔĹÍ ĐŇĎ×ĹŇŘÔĹ ×ÓĹ ËÎĎĐËÉ\n"
+"É Ä×ÉÖĹÎÉŃ ÍŮŰÉ."
#: ../../help.pm_.c:630
msgid ""
@@ -3805,6 +4156,41 @@ msgid ""
"If your computer is not connected to any administrated network, you will\n"
"want to choose \"Local files\" for authentication."
msgstr ""
+"üÔĎ ÓÁÍÁŃ ×ÁÖÎÁŃ ÄĚŃ ÂĹÚĎĐÁÓÎĎÓÔÉ ×ÁŰĹĘ ÓÉÓÔĹÍŮ GNU/Linux ÔĎŢËÁ ĐŇÉÎŃÔÉŃ\n"
+"ŇĹŰĹÎÉŃ: ×Ů ÄĎĚÖÎŮ ××ĹÓÔÉ ĐÁŇĎĚŘ \"root'a\". \"root\" Ń×ĚŃĹÔÓŃ ÓÉÓÔĹÍÎŮÍ\n"
+"ÁÄÍÉÎÉÓÔŇÁÔĎŇĎÍ, É ĎÎ ĹÄÉÎÓÔ×ĹÎÎŮĘ Á×ÔĎŇÉÚĎ×ÁÎ ÄĚŃ ×ŮĐĎĚÎĹÎÉŃ ĎÂÎĎ×ĚĹÎÉĘ,\n"
+"ÄĎÂÁ×ĚĹÎÉŃ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ, ÉÚÍĹÎĹÎÉŃ ËĎÎĆÉÇŐŇÁĂÉÉ ×ÓĹĘ ÓÉÓÔĹÍŮ É ÔÁË ÄÁĚĹĹ.\n"
+"ëĎŇĎŢĹ ÇĎ×ĎŇŃ, \"root\" ÍĎÖĹÔ ÓÄĹĚÁÔŘ ×ÓĹ, ŢÔĎ ŐÇĎÄÎĎ! ÷ĎÔ ĐĎŢĹÍŐ ×Ů\n"
+"ÄĎĚÖÎŮ ×ŮÂŇÁÔŘ ĐÁŇĎĚŘ, ËĎÔĎŇŮĘ ÔŇŐÄÎĎ ŐÇÁÄÁÔŘ - DrakX ÓĎĎÂÝÉÔ ×ÁÍ, ĹÓĚÉ ĎÎ\n"
+"ÓĚÉŰËĎÍ ĐŇĎÓÔ. ëÁË ×Ů ×ÉÄÉÔĹ, ĐÁŇĎĚŘ ÍĎÖÎĎ É ÎĹ ××ĎÄÉÔŘ, ÎĎ ÍŮ ÎÁÓÔĎŃÔĹĚŘÎĎ\n"
+"ÓĎ×ĹÔŐĹÍ ×ÁÍ ÎĹ ÄĹĚÁÔŘ ÜÔĎÇĎ, ČĎÔŃ ÂŮ ĐĎ ĎÄÎĎĘ ĐŇÉŢÉÎĹ: ÎĹ ÄŐÍÁĘÔĹ, ŢÔĎ,\n"
+"ĹÓĚÉ ×Ů ÚÁÇŇŐÚÉĚÉ GNU/Linux, ÔĎ ×ÁŰÉ ÄŇŐÇÉĹ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ\n"
+"ÚÁÓÔŇÁČĎ×ÁÎŮ ĎÔ ĎŰÉÂĎË. đĎÔĎÍŐ ËÁË \"root\" ÍĎÖĹÔ ĎÂĎĘÔÉ ×ÓĹ ĎÇŇÁÎÉŢĹÎÉŃ\n"
+"É ÎĹŐÍŮŰĚĹÎÎĎ ŐÄÁĚÉÔŘ ×ÓŔ ÉÎĆĎŇÍÁĂÉŔ ÎÁ ŇÁÚÄĹĚÁČ, ÎĹÂŇĹÖÎĎ ĐĎĚŐŢÉ× Ë ÎÉÍ\n"
+"ÄĎÓÔŐĐ, ×ÁÖÎĎ, ŢÔĎÂŮ ĹÍŐ ÓÁÍĎÍŐ ÂŮĚĎ ÔŇŐÄÎĎ ÓÔÁÔŘ \"root'ĎÍ\".\n"
+"\n"
+"đÁŇĎĚŘ ÄĎĚÖĹÎ ÂŮÔŘ ÓÍĹÓŘŔ ÁĚĆÁ×ÉÔÎĎ-ĂÉĆŇĎ×ŮČ ÓÉÍ×ĎĚĎ× É ÄĚÉÎĎĘ ËÁË ÍÉÎÉÍŐÍ\n"
+"× 8 ÓÉÍ×ĎĚĎ×. îÉËĎÇÄÁ ÎĹ ÚÁĐÉÓŮ×ÁĘÔĹ ĐÁŇĎĚŘ \"root'a\" - ÔÁË ĎŢĹÎŘ ĐŇĎÓÔĎ\n"
+"ĐĎÄ×ĹŇÎŐÔŘ ÓÉÓÔĹÍŐ ĎĐÁÓÎĎÓÔÉ.\n"
+"\n"
+"ďÄÎÁËĎ, ĐĎÖÁĚŐĘÓÔÁ, ÎĹ ÄĹĚÁĘÔĹ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ÄĚÉÎÎŮÍ ÉĚÉ ÓĚĎÖÎŮÍ, ĐĎÔĎÍŐ\n"
+"ŢÔĎ ×Ů ÄĎĚÖÎŮ ÚÁĐĎÍÎÉÔŘ ĹÇĎ ÂĹÚ ĎÓĎÂĎÇĎ ÎÁĐŇŃÖĹÎÉŃ.\n"
+"\n"
+"đÁŇĎĚŘ ÎĹ ÂŐÄĹÔ ĎÔĎÂŇÁÖÁÔŘÓŃ ÎÁ ÜËŇÁÎĹ, ËĎÇÄÁ ×Ů ÂŐÄĹÔĹ ××ĎÄÉÔŘ ĹÇĎ.\n"
+"đĎÜÔĎÍŐ ×Ů ÄĎĚÖÎŮ ××ĹÓÔÉ ĐÁŇĎĚŘ Ä×ÁÖÄŮ, ŢÔĎÂŮ ŐÍĹÎŘŰÉÔŘ ×ĹŇĎŃÔÎĎÓÔŘ ĎŰÉÂËÉ\n"
+"ĐŇÉ ××ĎÄĹ. ĺÓĚÉ ÓĚŐŢÉÔÓŃ ÔÁË, ŢÔĎ ×Ů ĐŇÉ ××ĎÄĹ ÓĎ×ĹŇŰÉÔĹ Ä×Ĺ ĎÄÎÉ É ÔĹ ÖĹ\n"
+"ĎŰÉÂËÉ, ÔĎ ×Ů ÄĎĚÖÎŮ ÂŐÄĹÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔĎÔ ``ÎĹĐŇÁ×ÉĚŘÎŮĘ'' ĐÁŇĎĚŘ ĐŇÉ\n"
+"ĐĹŇ×ĎÍ ×ČĎÄĹ × ÓÉÓÔĹÍŐ.\n"
+"\n"
+"÷ ŇĹÖÉÍĹ üËÓĐĹŇÔÁ ×ÁÍ ÂŐÄĹÔ ÚÁÄÁÎ ×ĎĐŇĎÓ, ĹÓĚÉ ×Ů ÂŐÄĹÔĹ ĐĎÄËĚŔŢÁÔŘÓŃ Ë\n"
+"ÓĹŇ×ĹŇŐ ÁŐÔĹÎÔÉĆÉËÁĂÉÉ ÔÉĐÁ NIS ÉĚÉ LDAP.\n"
+"\n"
+"ĺÓĚÉ ×ÁŰÁ ÓĹÔŘ ÉÓĐĎĚŘÚŐĹÔ ĐŇĎÔĎËĎĚ LDAP (ÉĚÉ NIS) ÄĚŃ ÁŐÔĹÎÔÉĆÉËÁĂÉÉ,\n"
+"×ŮÂĹŇÉÔĹ \"LDAP\" ÉĚÉ \"NIS\" × ËÁŢĹÓÔ×Ĺ ÁŐÔĹÎÔÉĆÉËÁĂÉÉ. ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ,\n"
+"ÓĐŇĎÓÉÔĹ Ő Ó×ĎĹÇĎ ÓĹÔĹ×ĎÇĎ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ.\n"
+"\n"
+"ĺÓĚÉ ×ÁŰ ËĎÍĐŘŔÔĹŇ ÎĹ ĐĎÄËĚŔŢĹÎ ÎÉ Ë ĎÄÎĎĘ ÁÄÍÉÎÉÓÔŇÉŇŐĹÍĎĘ ÓĹÔÉ, ×ÁÍ\n"
+"ĐĎÔŇĹÂŐĹÔÓŃ ×ŮÂŇÁÔŘ \"ěĎËÁĚŘÎŮĹ ĆÁĘĚŮ\" ÄĚŃ ÁŐÔĹÎÔÉĆÉËÁĂÉÉ."
#: ../../help.pm_.c:670
msgid ""
@@ -3847,9 +4233,45 @@ msgid ""
"Clicking the \"Advanced\" button in this dialog will offer many advanced\n"
"options, which are reserved for the expert user."
msgstr ""
+"LILO É grub Ń×ĚŃŔÔÓŃ ÎÁŢÁĚŘÎŮÍÉ ÚÁÇŇŐÚŢÉËÁÍÉ GNU/Linux. üÔĎÔ ÜÔÁĐ ÚÁŢÁÓÔŐŔ\n"
+"Ń×ĚŃĹÔÓŃ ĐĎĚÎĎÓÔŘŔ Á×ÔĎÍÁÔÉŢĹÓËÉÍ. ćÁËÔÉŢĹÓËÉ DrakX ÁÎÁĚÉÚÉŇŐĹÔ\n"
+"ÚÁÇŇŐÚĎŢÎŮĘ ÓĹËÔĎŇ É ÄĹĘÓÔ×ŐĹÔ × ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ÔĎÇĎ, ŢÔĎ ĎÎ ÔÁÍ ÎÁĘÄĹÔ:\n"
+"\n"
+" * ĹÓĚÉ ÎÁĘÄĹÎ ÚÁÇŇŐÚĎŢÎŮĘ ÓĹËÔĎŇ Windows, ĎÎ ÚÁÍĹÎÉÔ ĹÇĎ ÎÁ ÚÁÇŇŐÚĎŢÎŮĘ\n"
+"ÓĹËÔĎŇ grub/LILO. ôÁËÉÍ ĎÂŇÁÚĎÍ, ×Ů ÂŐÄĹÔĹ × ÓĎÓÔĎŃÎÉÉ ÚÁÇŇŐÖÁÔŘ ĚÉÂĎ\n"
+"GNU/Linux, ĚÉÂĎ ÄŇŐÇŐŔ ďó;\n"
+"\n"
+" * ĹÓĚÉ ÎÁĘÄĹÎ ÚÁÇŇŐÚĎŢÎŮĘ ÓĹËÔĎŇ LILO, ĎÎ ÚÁÍĹÎÉÔ ĹÇĎ ÎÁ ÎĎ×ŮĘ.\n"
+"ĺÓĚÉ DrakX ÎĹ Ő×ĹŇĹÎ, ĎÎ ĐĎËÁÖĹÔ ÄÉÁĚĎÇ Ó ŇÁÚĚÉŢÎŮÍÉ ĎĐĂÉŃÍÉ.\n"
+"\n"
+" * \"éÓĐĎĚŘÚŐĹÍŮĘ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË\": Ő ×ÁÓ ĹÓÔŘ ÔŇÉ ×ÁŇÉÁÎÔÁ:\n"
+" * \"GRUB\": ĹÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ grub (ÔĹËÓÔĎ×ĎĹ ÍĹÎŔ).\n"
+"\n"
+" * \"LILO Ó ÇŇÁĆÉŢĹÓËÉÍ ÍĹÎŔ\": ĹÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ LILO ÓĎ Ó×ĎÉÍ\n"
+"ÇŇÁĆÉŢĹÓËÉÍ ÉÎÔĹŇĆĹĘÓĎÍ.\n"
+" * \"LILO Ó ÔĹËÓÔĎ×ŮÍ ÍĹÎŔ\": ĹÓĚÉ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ LILO ÓĎ Ó×ĎÉÍ\n"
+"ÉÎÔĹŇĆĹĘÓĎÍ ÔĹËÓÔĎ×ĎÇĎ ÍĹÎŔ.\n"
+"\n"
+" * \"úÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď\": × ÂĎĚŘŰÉÎÓÔ×Ĺ ÓĚŐŢÁĹ× ×ÁÍ ÎĹ ÎÁÄĎ ÉÚÍĹÎŃÔŘ\n"
+"ÚÎÁŢĹÎÉĹ ĐĎ ŐÍĎĚŢÁÎÉŔ (\"/dev/hda\"), ÎĎ ĹÓĚÉ ×Ů ČĎÔÉÔĹ, ÎÁŢÁĚŘÎŮĘ\n"
+"ÚÁÇŇŐÚŢÉË ÍĎÖĹÔ ÂŮÔŘ ŐÓÔÁÎĎ×ĚĹÎ ÎÁ ×ÔĎŇĎĘ ÖĹÓÔËÉĘ ÄÉÓË (\"/dev/hdb\") ÉĚÉ\n"
+"ÄÁÖĹ ÎÁ ÄÉÓËĹÔŐ (\"/dev/fd0\").\n"
+"\n"
+" * \"úÁÄĹŇÖËÁ ĐĹŇĹÄ ÚÁÇŇŐÚËĎĘ ĎÂŇÁÚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ\": ĐŇÉ ĐĹŇĹÚÁÇŇŐÚËĹ\n"
+"ËĎÍĐŘŔÔĹŇÁ ÜÔĎ ĐÁŐÚÁ, ĐŇĹÄĎÓÔÁ×ĚŃĹÍÁŃ ĐĎĚŘÚĎ×ÁÔĹĚŔ ÄĚŃ ×ŮÂĎŇÁ ÉÚ ÍĹÎŔ\n"
+"ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ ÄŇŐÇĎÇĎ ĐŐÎËÔÁ, ĎÔĚÉŢÁŔÝĹÇĎÓŃ ĎÔ ÚÁÇŇŐÖÁĹÍĎÇĎ ĐĎ\n"
+"ŐÍĎĚŢÁÎÉŔ.\n"
+"\n"
+"!! âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ, ĹÓĚÉ ×Ů ŇĹŰÉÔĹ ÎĹ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË\n"
+"(×ŮÂŇÁ× ÓĹĘŢÁÓ \"ďÔÍĹÎŐ\") ×Ů ÄĎĚÖÎŮ ĎÂĹÓĐĹŢÉÔŘ ×ĎÚÍĎÖÎĎÓÔŘ ÚÁÇŇŐÚËÉ Ó×ĎĹĘ\n"
+"ÓÉÓÔĹÍŮ Mandrake Linux! ôÁËÖĹ ŐÂĹÄÉÔĹÓŘ, ŢÔĎ ×Ů ÚÎÁĹÔĹ, ŢÔĎ ÄĹĚÁĹÔĹ, ĐĹŇĹÄ\n"
+"ÔĹÍ ËÁË ÉÚÍĹÎŃÔŘ ËÁËŐŔ-ĚÉÂĎ ĎĐĂÉŔ. !!\n"
+"\n"
+"đĎÓĚĹ ÎÁÖÁÔÉŃ ÎÁ ËÎĎĐËŐ \"äĎĐĎĚÎÉÔĹĚŘÎĎ\" × ÜÔĎÍ ÄÉÁĚĎÇĹ ×ÁÍ ÂŐÄĹÔ\n"
+"ĐŇĹÄĚĎÖĹÎĎ ÍÎĎÇĎ ÄĎĐĎĚÎÉÔĹĚŘÎŮČ ĎĐĂÉĘ, ÚÁŇĹÚĹŇ×ÉŇĎ×ÁÎÎŮČ ÄĚŃ ĎĐŮÔÎĎÇĎ\n"
+"ĐĎĚŘÚĎ×ÁÔĹĚŃ."
#: ../../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"
@@ -3864,21 +4286,19 @@ msgid ""
"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 (LInux LOader - ÚÁÇŇŐÚŢÉË Linux) É Grub Ń×ĚŃŔÔÓŃ ÄÉÓĐĹÔŢĹŇÁÍÉ "
-"ÚÁÇŇŐÚËÉ:\n"
-"ĎÎÉ ÓĐĎÓĎÂÎŮ ÚÁÇŇŐÚÉÔŘ GNU/Linux ÉĚÉ ĚŔÂŐŔ ÄŇŐÇŐŔ ďó, ŐÓÔÁÎĎ×ĚĹÎÎŐŔ ÎÁ "
-"ÍÁŰÉÎĹ.\n"
-"ďÂŮŢÎĎ ÜÔÉ ÄŇŐÇÉĹ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ ËĎŇŇĹËÔÎĎ ŇÁÓĐĎÚÎÁŔÔÓŃ É "
-"ŐÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ.\n"
-"ĺÓĚÉ ÜÔĎÇĎ ÎĹ ĐŇĎÉÚĎŰĚĎ, ×Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ĐŐÎËÔ ×ŇŐŢÎŐŔ ÎÁ ÜÔĎÍ ÜËŇÁÎĹ.\n"
-"âŐÄŘÔĹ ×ÎÉÍÁÔĹĚŘÎŮ ĐŇÉ ÚÁÄÁÎÉÉ ĐÁŇÁÍĹÔŇĎ×.\n"
+"đĎÓĚĹ ÔĎÇĎ, ËÁË ×Ů ÎÁÓÔŇĎÉĚÉ ÇĚÁ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ, ÂŐÄĹÔ\n"
+"ĐĎËÁÚÁÎ ÓĐÉÓĎË ×ÁŇÉÁÎÔĎ× ÚÁÇŇŐÚËÉ, ÄĎÓÔŐĐÎŮČ ĐŇÉ ÚÁÇŇŐÚËĹ.\n"
"\n"
+"ĺÓĚÉ ÎÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ŐÓÔÁÎĎ×ĚĹÎÁ ĹÝĹ ĎÄÎÁ ĎĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ, ĎÎÁ ÂŐÄĹÔ\n"
+"Á×ÔĎÍÁÔÉŢĹÓËÉ ÄĎÂÁ×ĚĹÎÁ × ÍĹÎŔ ÚÁÇŇŐÚËÉ. úÄĹÓŘ ×Ů ÍĎÖĹÔĹ ÂĎĚĹĹ ÔĎÎËĎ\n"
+"ÎÁÓÔŇĎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ ĐÁŇÁÍĹÔŇŮ. ÷ŮÂĹŇÉÔĹ ĐŐÎËÔ É ÎÁÖÍÉÔĹ \"éÚÍĹÎÉÔŘ\",\n"
+"ŢÔĎÂŮ ÉÚÍĹÎÉÔŘ ÉĚÉ ŐÄÁĚÉÔŘ ĹÇĎ; \"äĎÂÁ×ÉÔŘ\" ÄĎÂÁ×ĚŃĹÔ ÎĎ×ŮĘ ĐŐÎËÔ;\n"
+"É \"çĎÔĎ×Ď\" ĐĹŇĹČĎÄÉÔ ÎÁ ÓĚĹÄŐŔÝÉĘ ÜÔÁĐ ŐÓÔÁÎĎ×ËÉ.\n"
"\n"
-"÷ĎÚÍĎÖÎĎ ÔÁËÖĹ, ŢÔĎ ×Ů ÎĹ ČĎÔÉÔĹ ÎÉËĎÍŐ ÄÁ×ÁÔŘ ÄĎÓÔŐĐ Ë ÜÔÉÍ ďó, × ÔÁËĎÍ "
-"ÓĚŐŢÁĹ\n"
-"ÍĎÖÎĎ ŐÄÁĚÉÔŘ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĹ ĐŐÎËÔŮ. îĎ × ÜÔĎÍ ÓĚŐŢÁĹ ÄĚŃ ÉČ ÚÁÇŇŐÚËÉ "
-"ĐĎÔŇĹÂŐĹÔÓŃ\n"
-"ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ!"
+"÷Ů ÔÁËÖĹ ÍĎÖĹÔĹ ÚÁČĎÔĹÔŘ ÎĹ ĐŇĹÄĎÓÔÁ×ĚŃÔŘ ÎÉËĎÍŐ ÄĎÓÔŐĐ Ë ÜÔÉÍ ÄŇŐÇÉÍ\n"
+"ĎĐĹŇÁĂÉĎÎÎŮÍ ÓÉÓÔĹÍÁÍ. ÷ ÜÔĎÍ ÓĚŐŢÁĹ ×Ů ÍĎÖĹÔ ŐÄÁĚÉÔŘ ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĹ\n"
+"ĐŐÎËÔŮ. îĎ ÔĎÇÄÁ ×ÁÍ ĐĎÎÁÄĎÂÉÔÓŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ ÄĚŃ ÔĎÇĎ, ŢÔĎÂŮ\n"
+"ÚÁÇŇŐÚÉÔŘ ÜÔÉ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ!"
#: ../../help.pm_.c:724
msgid ""
@@ -3954,7 +4374,6 @@ msgstr ""
"ĎÎÁ ĐŇĎÝĹ É ĚŐŢŰĹ ŇÁÂĎÔÁĹÔ ĐĎ ÓĹÔÉ."
#: ../../help.pm_.c:759
-#, fuzzy
msgid ""
"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"
@@ -3982,38 +4401,35 @@ msgid ""
"Internet access) or from Microsoft Windows (if you used this hardware with\n"
"Windows on your system)."
msgstr ""
-"DrakX ĐĎĐŇĎÂŐĹÔ ĎĐŇĹÄĹĚÉÔŘ PCI SCSI ÁÄÁĐÔĹŇ(Ů). ĺÓĚÉ DrakX\n"
-"ÓÍĎÖĹÔ ĎĐŇĹÄĹĚÉÔŘ SCSI ÁÄÁĐÔĹŇ É Ő ÎĹÇĎ ÂŐÄĹÔ ÓĎĎÔ×ĹÔÓ×ŐŔÝÉĘ ÄŇÁĘ×ĹŇ, ÔĎ ĎÎ "
-"ÂŐÄĹÔ Á×ÔĎÍÁÔÉŢĹÓËÉ \n"
-"ŐÓÔÁÎĎ×ĚĹÎ.\n"
-"\n"
-"\n"
-"ĺÓĚÉ DrakX ÎĹ ÎÁĘÄĹÔ ÎÉ ĎÄÎĎÇĎ SCSI ÁÄÁĐÔĹŇÁ, ISA SCSI ÁÄÁĐÔĹŇÁ ÉĚÉ PCI SCSI "
-"ÁÄÁĐÔĹŇÁ, \n"
-"ÔĎÇÄÁ ×ÁÍ ÂŐÄĹÔ ÚÁÄÁÎ ×ĎĐŇĎÓ Ď ÎÁĚÉŢÉÉ SCSI ÁÄÁĐÔĹŇÁ × ×ÁŰĹĘ \n"
-"ÓÉÓÔĹÍĹ. ĺÓĚÉ ÁÄÁĐÔĹŇĎ× ÎĹÔ, ×Ů ÍĎÖĹÔĹ ÎÁÖÁÔŘ \"îĹÔ\". ĺÓĚÉ ×Ů ÎÁÖÍĹÔĹ\n"
-"\"äÁ\", ÔĎ ×ÁÍ ÂŐÄĹÔ ĐŇĹÄĚĎÖĹÎ ÓĐÉÓĎË ÁÄÁĐÔĹŇĎ×, ÉÚ ËĎÔĎŇŮČ ×Ů ÓÍĎÖĹÔĹ "
-"×ŮÂŇÁÔŘ ÉÍĹÎÎĎ ×ÁŰ.\n"
-"\n"
-"\n"
-"\n"
-"ĺÓĚÉ ×Ů ×ŇŐŢÎŐŔ ŐËÁÖÉÔĹ ×ÁŰ ÁÄÁĐÔĹŇ, DrakX ÓĐŇĎÓÉÔ ×ÁÓ, ČĎÔÉÔĹ ĚÉ ×Ů \n"
-"ŐËÁÚÁÔŘ ÄĚŃ ÎĹÇĎ ĐÁŇÁÍĹÔŇŮ. ÷Ů ÄĎĚÖÎŮ ĐĎÚ×ĎĚÉÔŘ DrakX ĎĐŇĹÄĹĚÉÔŘ ÎÁÓÔŇĎĘËÉ "
-"ÜÔĎÇĎ \n"
-"ŐÓÔŇĎĘÓÔ×Á. ďÂŮŢÎĎ ÜÔĎ ŇÁÂĎÔÁĹÔ ČĎŇĎŰĎ.\n"
-"\n"
-"\n"
-"ĺÓĚÉ ÎĹÔ, ×ÁÍ ĐÉÄĹÔÓŃ ŐËÁÚÁÔŘ ÎÁÓÔŇĎĘËÉ ÄŇÁĘ×ĹŇÁ. đĎÖÁĚŐĘÓÔÁ, ĐŇĎÓÍĎÔŇÉÔĹ "
-"ňŐËĎ×ĎÄÓÔ×Ď\n"
-"đĎĚŘÚĎ×ÁÔĹĚŃ (ÇĚÁ×Á 3, ŇÁÚÄĹĚ \"Collective informations on your hardware\") "
-"for hints\n"
-"ÉĚÉ ÎÁĘÄÉÔĹ ÜÔŐ ÉÎĆĎŇÍÁĂÉŔ × ĎĐÉÓÁÎÉÉ ĎÂĎŇŐÄĎ×ÁÎÉŃ × ÄĎËŐÍĹÎÔÁĂÉÉ\n"
-"ÎÁ web ÓÁĘÔĹ ĐŇĎÉÚ×ĎÄÉÔĹĚŃ (ĹÓĚÉ Ő ×ÁÓ ĹÓÔŘ ÄĎÓÔŐĐ × ÉÎÔĹŇÎĹÔ) ÉĚÉ "
-"ĐĎÓÍĎÔŇÉÔĹ ÎÁÓÔŇĎĘËÉ × Microsoft Windows\n"
-"(ĹÓĚÉ ĎÎ ŐÓÔÁÎĎ×ĚĹÎ ÎÁ ×ÁŰĹĘ ÓÉÓÔĹÍĹ)."
+"óĹĘŢÁÓ DrakX ĎĐŇĹÄĹĚŃĹÔ ĚŔÂŮĹ IDE-ŐÓÔŇĎĘÓÔ×Á, ĐŇÉÓŐÔÓÔ×ŐŔÝÉĹ × ×ÁŰĹÍ\n"
+"ËĎÍĐŘŔÔĹŇĹ. ďÎ ÔÁËÖĹ ĐŇĎÓËÁÎÉŇŐĹÔ ×ÁŰŐ ÓÉÓÔĹÍŐ ÎÁ ÎÁĚÉŢÉĹ ĎÄÎĎĘ ÉĚÉ ÂĎĚĹĹ\n"
+"PCI SCSI-ËÁŇÔ. ĺÓĚÉ ÂŐÄĹÔ ÎÁĘÄĹÎÁ SCSI-ËÁŇÔÁ, DrakX Á×ÔĎÍÁÔÉŢĹÓËÉ ŐÓÔÁÎĎ×ÉÔ\n"
+"ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĘ ÄŇÁĘ×ĹŇ.\n"
+"\n"
+"éÚ-ÚÁ ÔĎÇĎ, ŢÔĎ ĎÂÎÁŇŐÖĹÎÉĹ ÁĐĐÁŇÁÔÎĎÇĎ ĎÂĹÓĐĹŢĹÎÉŃ ÎĹ ×ÓĹÇÄÁ ĎĐŇĹÄĹĚŃĹÔ\n"
+"ŢÁÓÔŘ ĎÂĎŇŐÄĎ×ÁÎÉŃ, DrakX ĐĎĐŇĎÓÉÔ ×ÁÓ ĐĎÄÔ×ĹŇÄÉÔŘ, ĐŇÉÓŐÔÓÔ×ŐŔÔ ĚÉ Ő ×ÁÓ\n"
+"PCI SCSI-ËÁŇÔÁ. îÁÖÍÉÔĹ \"äÁ\", ĹÓĚÉ ×Ů ÚÎÁĹÔĹ, ŢÔĎ × ×ÁŰĹĘ ÍÁŰÉÎĹ\n"
+"ŐÓÔÁÎĎ×ĚĹÎÁ SCSI-ËÁŇÔÁ. ÷ÁÍ ÂŐÄĹÔ ĐŇĹÄĚĎÖĹÎ ÓĐÉÓĎË SCSI-ËÁŇÔ ÄĚŃ ×ŮÂĎŇÁ.\n"
+"îÁÖÍÉÔĹ \"îĹÔ\", ĹÓĚÉ Ő ×ÁÓ ÎĹÔ ĎÂĎŇŐÄĎ×ÁÎÉŃ SCSI. ĺÓĚÉ ×Ů ÎĹ Ő×ĹŇĹÎŮ, ×Ů\n"
+"ÍĎÖĹÔĹ ĐŇĎ×ĹŇÉÔŘ ÓĐÉÓĎË ĎÂÎÁŇŐÖĹÎÎĎÇĎ × ×ÁŰĹĘ ÍÁŰÉÎĹ ĎÂĎŇŐÄĎ×ÁÎÉŃ, ×ŮÂŇÁ×\n"
+"\"đŇĎÓÍĎÔŇĹÔŘ ÉÎĆĎŇÍÁĂÉŔ Ď ĎÂĎŇŐÄĎ×ÁÎÉÉ\" É ÎÁÖÁ× \"ďë\". éÚŐŢÉÔĹ ÓĐÉÓĎË\n"
+"ĎÂĎŇŐÄĎ×ÁÎÉŃ, Á ÚÁÔĹÍ ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ \"ďë\", ŢÔĎÂŮ ×ĹŇÎŐÔŘÓŃ Ë ×ĎĐŇĎÓŐ\n"
+"Ď SCSI-ÉÎÔĹŇĆĹĘÓĹ.\n"
+"\n"
+"ĺÓĚÉ ×Ů ÄĎĚÖÎŮ ×ŇŐŢÎŐŔ ŐËÁÚÁÔŘ Ó×ĎĘ ÁÄÁĐÔĹŇ, DrakX ÓĐŇĎÓÉÔ ×ÁÓ, ČĎÔÉÔĹ ĚÉ\n"
+"×Ů ŐËÁÚÁÔŘ ÄĚŃ ÎĹÇĎ ĎĐĂÉÉ. ÷Ů ÄĎĚÖÎŮ ŇÁÚŇĹŰÉÔŘ DrakX'Ő ĐŇĎÚĎÎÄÉŇĎ×ÁÔŘ\n"
+"ÓĐĹĂÉĆÉŢĹÓËÉĹ ÄĚŃ ËÁŇÔŮ ĎĐĂÉÉ, ËĎÔĎŇŮĹ ÎŐÖÎŮ ÄĚŃ ÉÎÉĂÉÁĚÉÚÁĂÉÉ\n"
+"ĎÂĎŇŐÄĎ×ÁÎÉŃ. ďÂŮŢÎĎ ÜÔĎ ŇÁÂĎÔÁĹÔ ČĎŇĎŰĎ.\n"
+"\n"
+"ĺÓĚÉ DrakX ÎĹ × ÓĎÓÔĎŃÎÉÉ ĐŇĎÚĎÎÄÉŇĎ×ÁÔŘ ĎĐĂÉÉ, ËĎÔĎŇŮĹ ÎĹĎÂČĎÄÉÍĎ\n"
+"ĐŇĎÓÍĎÔŇĹÔŘ, ×ÁÍ ÎÁÄĎ ÂŐÄĹÔ ×ŇŐŢÎŐŔ ĐŇĹÄĎÓÔÁ×ÉÔŘ ÜÔÉ ĎĐĂÉÉ ÄŇÁĘ×ĹŇŐ.\n"
+"đĎÖÁĚŐĘÓÔÁ, ÎÁĘÄÉÔĹ × ``ňŐËĎ×ĎÄÓÔ×Ĺ ĐĎĚŘÚĎ×ÁÔĹĚŃ'' (ÇĚÁ×Á 3, ŇÁÚÄĹĚ ``óÂĎŇ\n"
+"ÉÎĆĎŇÍÁĂÉÉ Ď Ó×ĎĹÍ ĎÂĎŇŐÄĎ×ÁÎÉÉ'') ĐĎÄÓËÁÚËÉ Ď ÔĎÍ, ËÁË ÉÚ×ĚĹŢŘ ÎĹĎÂČĎÄÉÍŮĹ\n"
+"ĐÁŇÁÍĹÔŇŮ ÉÚ ÄĎËŐÍĹÎÔÁĂÉÉ Ë ĎÂĎŇŐÄĎ×ÁÎÉŔ, Ó ×ĹÂ-ÓÁĘÔÁ ĐŇĎÉÚ×ĎÄÉÔĹĚŃ (ĹÓĚÉ Ő\n"
+"×ÁÓ ĹÓÔŘ ÄĎÓÔŐĐ Ë éÎÔĹŇÎĹÔŐ) ÉĚÉ ÉÚ Microsoft Windows (ĹÓĚÉ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ\n"
+"ÜÔĎ ĎÂĎŇŐÄĎ×ÁÎÉĹ × Ó×ĎĹĘ ÓÉÓÔĹÍĹ Ó Windows)."
#: ../../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"
@@ -4061,73 +4477,52 @@ msgid ""
"also be highlighted with a ``*'', if you press [Tab] to see the boot\n"
"selections."
msgstr ""
-"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ÚÁĐÉÓÉ ÄĚŃ yaboot, ĚÉÂĎ ÄĚŃ ÄŇŐÇÉČ "
-"ĎĐĹŇÁĂÉĎÎÎŮČ ÓÉÓÔĹÍ,\n"
-"ĚÉÂĎ ÄĚŃ ÄŇŐÇÉČ ŃÄĹŇ, ĚÉÂĎ ÄĚŃ Á×ÁŇÉĘÎĎÇĎ ÚÁÇŇŐÚĎŢÎĎÇĎ ĎÂŇÁÚÁ.\n"
-"\n"
-"\n"
-"äĚŃ ÄŇŐÇÉČ ďó - ÚÁĐÉÓŘ ÓĎÄĹŇÖÉÔ ÔĎĚŘËĎ ÍĹÔËŐ É ËĎŇÎĹ×ĎĘ ŇÁÚÄĹĚ.\n"
-"\n"
+"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ × yaboot ÄĎĐĎĚÎÉÔĹĚŘÎŮĹ ĐŐÎËÔŮ ÄĚŃ ÄŇŐÇÉČ ĎĐĹŇÁĂÉĎÎÎŮČ\n"
+"ÓÉÓÔĹÍ, ÁĚŘÔĹŇÎÁÔÉ×ÎŮČ ŃÄĹŇ ÉĚÉ ÄĚŃ Á×ÁŇÉĘÎĎÇĎ ÚÁÇŇŐÚĎŢÎĎÇĎ ĎÂŇÁÚÁ.\n"
"\n"
-"äĚŃ Linux, ×ĎÚÍĎÖÎŮ ÎĹÓËĎĚŘËĎ ĐÁŇÁÍĹÔŇĎ×: \n"
+"äĚŃ ÄŇŐÇÉČ ďó, ĐŐÎËÔ ÓĎÄĹŇÖÉÔ ÔĎĚŘËĎ ÍĹÔËŐ É ŇÁÚÄĹĚ \"root\".\n"
"\n"
+"äĚŃ Linux, ÓŐÝĹÓÔ×ŐĹÔ ÎĹÓËĎĚŘËĎ ×ĎÚÍĎÖÎŮČ ĐÁŇÁÍĹÔŇĎ×:\n"
"\n"
-" - íĹÔËÁ: üÔĎ ĐŇĎÓÔĎ ÉÍŃ, ËĎÔĎŇĎĹ ÂŐÄĹÔ ×Ů×ĎÄÉÔŘÓŃ × ĐŇÉÇĚÁŰĹÎÉÉ yaboot ÄĚŃ "
-"×ŮÂĎŇÁ ÜÔĎÇĎ \n"
-"×ÁŇÉÁÎÔÁ ÚÁÇŇŐÚËÉ.\n"
+" * íĹÔËÁ: ÜÔĎ ĐŇĎÓÔĎ ÎÁÚ×ÁÎÉĹ, ËĎÔĎŇĎĹ ×Ů ÄĎĚÖÎŮ ÂŐÄĹÔĹ ××ĹÓÔÉ × ÓÔŇĎËĹ\n"
+"ĐŇÉÇĚÁŰĹÎÉŃ yaboot, ŢÔĎÂŮ ×ŮÂŇÁÔŘ ÜÔĎÔ ×ÁŇÉÁÎÔ ÚÁÇŇŐÚËÉ;\n"
"\n"
+" * ďÂŇÁÚ: ÜÔĎ ÂŐÄĹÔ ÉÍŃ ÚÁÇŇŐÖÁĹÍĎÇĎ ŃÄŇÁ. ďÂŮŢÎĎ vmlinux ÉĚÉ ×ÁŇÉÁÎÔ\n"
+"vmlinux Ó ŇÁÓŰÉŇĹÎÉĹÍ;\n"
"\n"
-" - ďÂŇÁÚ: üÔĎ ÂŐÄĹÔ ÉÍŃ ÚÁÇŇŐÖÁĹÍĎÇĎ ŃÄŇÁ. ďÂŮŢÎĎ ÜÔĎ vmlinux ÉĚÉ \n"
-"×ÁŇÉÁÎÔ vmlinux ĐĚŔÓ ŇÁÓŰÉŇĹÎÉĹ.\n"
+" * Root: ŐÓÔŇĎĘÓÔ×Ď \"root\" ÉĚÉ ``/'' ÄĚŃ ŐÓÔÁÎĎ×ËÉ ×ÁŰĹÇĎ Linux;\n"
"\n"
-"\n"
-" - Root: ëĎŇÎĹ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď ÉĚÉ '/' ÄĚŃ ŐÓÔÁÎĎ×ËÉ Linux.\n"
-"\n"
-"\n"
-" \n"
-" - äĎĐĎĚÎÉÔŘ: ÷ ĎÂĎŇŐÄĎ×ÁÎÉÉ Apple, ÄĎĐĎĚÎĹÎÉĹ ŃÄŇÁ ŢÁÓÔĎ ÉÓĐĎĚŘÚŐĹÔÓŃ "
-"ŢÔĎÂŮ\n"
-"ĎÂĹÓĐĹŢÉÔŘ ÚÁĐŐÓË ×ÉÄĹĎ ĐĎÄÓÉÓÔĹÍŮ, ĚÉÂĎ ÄĚŃ ÜÍŐĚŃĂÉÉ ÎÁ ËĚÁ×ÉÁÔŐŇĹ ËÎĎĐĎË "
-"ÍŮŰÉ ÔÁË ËÁË\n"
-"2ÁŃ É 3ŃŃ ËÎĎĐËÁ ĎÔÓŐÔÓ×ŐŔÔ ÎÁ ĎÂŮŢÎŮČ Apple ÍŮŰÁČ. ÷ĎÔ ÎĹÓËĎĚŘËĎ \n"
+" * äĎÂÁ×ÉÔŘ: ÎÁ ĎÂĎŇŐÄĎ×ÁÎÉÉ Apple, ĎĐĂÉŃ ÄĎÂÁ×ĚĹÎÉŃ Ë ŃÄŇŐ ÄĎ×ĎĚŘÎĎ ŢÁÓÔĎ\n"
+"ÉÓĐĎĚŘÚŐĹÔÓŃ, ŢÔĎÂŮ ĐĎÍĎŢŘ ĐŇÉ ÉÎÉĂÉÁĚÉÚÁĂÉÉ ×ÉÄĹĎĎÂĎŇŐÄĎ×ÁÎÉŃ, ŢÔĎÂŮ\n"
+"×ËĚŔŢÉÔŘ ÎÁ ËĚÁ×ÉÁÔŐŇĹ ÜÍŐĚŃĂÉŔ ËÎĎĐĎË ÍŮŰÉ ÄĚŃ ŢÁÓÔĎ ĎÔÓŐÔÓÔ×ŐŔÝÉČ ÎÁ\n"
+"ÓÔÁÎÄÁŇÔÎŮČ ÍŮŰÁČ Apple 2-Ę É 3-Ę ËÎĎĐĎË. îÉÖĹ ĐŇĹÄÓÔÁ×ĚĹÎĎ ÎĹÓËĎĚŘËĎ\n"
"ĐŇÉÍĹŇĎ×:\n"
"\n"
-"\n"
-"\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+" video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
-"\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
-"\n"
-"\n"
-" \n"
-" - Initrd: üÔĎÔ ĐÁŇÁÍĹÔŇ ÍĎÖĹÔ ÉÓĐĎĚŘÚĎ×ÁÔŘÓŃ ĚÉÂĎ ÄĚŃ ÚÁÇŇŐÚËÉ "
-"ĐĹŇ×ĎÎÁŢÁĚŘÎŮČ ÍĎÄŐĚĹĘ ÄĎ ÔĎÇĎ, ËÁË ÚÁÇŇŐÚĎŢÎĎĹ \n"
-"ŐÓÔŇĎĘÓÔ×Ď ÓÔÁÎĹÔ ÄĎÓÔŐĐÎŮÍ, ĚÉÂĎ ÄĚŃ ÚÁÇŇŐÚËÉ ĎÂŇÁÚÁ ramdisk ĐŇÉ ÚÁÇŇŐÚËĹ × "
-"Á×ÁŇÉĘÎĎĘ ÓÉÔŐÁĂÉÉ.\n"
-"\n"
-"\n"
-" - ňÁÚÍĹŇ Initrd: đĎ ŐÍĎĚŢÁÎÉŔ ŇÁÚÍĹŇ ramdisk ĎÂŮŢÎĎ 4096 ÂÁĘÔ. ĺÓĚÉ ×ÁÍ "
-"ĐĎÔŇĹÂŐĹÔÓŃ\n"
-"ŇÁÚÍĹÓÔÉÔŘ ÂďĚŘŰÉĘ ramdisk, ÔĎ ÔĎÇÄÁ ÉÓĐĎĚŘÚŐĹÔÓŃ ÜÔĎÔ ĐÁŇÁÍĹÔŇ.\n"
-"\n"
+" video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
-" - ţÔĹÎÉĹ-ÚÁĐÉÓŘ: ĎÂŮŢÎĎ 'ËĎŇÎĹ×ĎĘ' ('root') ŇÁÚÄĹĚ ĐĹŇ×ĎÎÁŢÁĚŘÎĎ "
-"ĐĎÄËĚŔŢÁĹÔÓŃ × ŇĹÖÉÍĹ ÔĎĚŘËĎ-ŢÔĹÎÉĹ, ŢÔĎÂŮ ĐĎÚ×ĎĚÉÔŘ\n"
-"ĐŇĎ×ĹŇËŐ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ ĐĹŇĹÄ ĐĹŇĹČĎÄĎÍ ÓÉÓÔĹÍŮ × 'ŇÁÂĎŢĹĹ' ÓĎÓÔĎŃÎÉĹ. ÷ "
-"ÜÔĎÍ ĐÁŇÁÍĹÔŇĹ ×Ů ÍĎÖĹÔĹ ÜÔĎ ÉÚÍĹÎÉÔŘ.\n"
+" * Initrd: ÜÔÁ ĎĐĂÉŃ ÍĎÖĹÔ ÂŮÔŘ ÉÓĐĎĚŘÚĎ×ÁÎÁ ĚÉÂĎ ÄĚŃ ÚÁÇŇŐÚËÉ ĐĹŇ×ÉŢÎŮČ\n"
+"ÍĎÄŐĚĹĘ ĐĎËÁ ÎĹÄĎÓÔŐĐÎĎ ÚÁÇŇŐÚĎŢÎĎĹ ŐÓÔŇĎĘÓÔ×Ď, ĚÉÂĎ ÄĚŃ ÚÁÇŇŐÚËÉ ĎÂŇÁÚÁ\n"
+"ram-ÄÉÓËÁ × ÓĚŐŢÁĹ Á×ÁŇÉĘÎĎĘ ÚÁÇŇŐÚËÉ.\n"
"\n"
+" * ňÁÚÍĹŇ initrd: ĐĎ ŐÍĎĚŢÁÎÉŔ ŇÁÚÍĹŇ ram-ÄÉÓËÁ, ËÁË ĐŇÁ×ÉĚĎ, ÓĎÓÔÁ×ĚŃĹÔ\n"
+"4,096 ÂÁĘÔ. ĺÓĚÉ ×ÁÍ ÎĹĎÂČĎÄÉÍĎ ŇÁÚÍĹÓÔÉÔŘ ÂĎĚŘŰĎĘ ram-ÄÉÓË, ÍĎÖĹÔ ÂŮÔŘ\n"
+"ÉÓĐĎĚŘÚĎ×ÁÎÁ ÜÔÁ ĎĐĂÉŃ;\n"
"\n"
-" - NoVideo: ĺÓĚÉ ŇÁÂĎÔÁ ×ÉÄĹĎ ĐĎÄÓÉÓÔĹÍŮ Apple ÂŐÄĹÔ ÁÂÓĎĚŔÔÎĎ "
-"ÎĹŐÓÔĎĘŢÉ×ĎĘ, ÔĎ ×Ů ÍĎÖĹÔĹ\n"
-"×ŮÂŇÁÔŘ ÜÔĎÔ ĐÁŇÁÍĹÔŇ ÄĚŃ ÚÁÇŇŐÚËÉ × ŇĹÖÉÍĹ 'novideo', Ó ĐĎÄÄĹŇÖËĎĘ ŇĎÄÎĎÇĎ "
-"framebuffer .\n"
+" * ţÔĹÎÉĹ-ÚÁĐÉÓŘ: ĎÂŮŢÎĎ ŇÁÚÄĹĚ \"root\" ÓÎÁŢÁĚÁ ĐĎÄÎÉÍÁĹÔÓŃ ÔĎĚŘËĎ ÄĚŃ\n"
+"ŢÔĹÎÉŃ, ŢÔĎÂŮ ŇÁÚŇĹŰÉÔŘ ĐŇĎ×ĹŇËŐ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ ĐĹŇĹÄ ÔĹÍ, ËÁË ÓÉÓÔĹÍÁ\n"
+"``ĎÖÉ×ĹÔ''. úÄĹÓŘ ×Ů ÍĎÖĹÔĹ ĐĹŇĹĎĐŇĹÄĹĚÉÔŘ ÜÔŐ ĎĐĂÉŔ;\n"
"\n"
+" * âĹÚ ×ÉÄĹĎ: ĹÓĚÉ ×ÉÄĹĎĎÂĎŇŐÄĎ×ÁÎÉĹ Apple ĎËÁÖĹÔÓŃ ÉÓËĚŔŢÉÔĹĚŘÎĎ\n"
+"ĐŇĎÂĚĹÍÁÔÉŢÎŮÍ, ×Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÜÔŐ ĎĐĂÉŔ ÄĚŃ ÚÁÇŇŐÚËÉ × ŇĹÖÉÍĹ ``ÂĹÚ\n"
+"×ÉÄĹĎ'' Ó ŇĎÄÎĎÇĎ ĐĎÄÄĹŇÖËĎĘ ÂŐĆĹŇÁ ËÁÄŇĎ×;\n"
"\n"
-" - đĎ ŐÍĎĚŢÁÎÉŔ: ÷ŮÂÉŇÁĹÔ ÜÔĎÔ ×ÁŇÉÁÎÔ ËÁË ×ŮÂĎŇ Linux, ŐÓÔÁÎĎ×ĚĹÎÎŮĘ ĐĎ "
-"ŐÍĎĚŢÁÎÉŔ. üÔĎ ×ŮĐĎĚÎŃĹÔÓŃ ĐŇĎÓÔŮÍ\n"
-"ÎÁÖÁÔÉĹÍ ENTER ÎÁ ĐŇÉÇĚÁŰĹÎÉĹ yaboot. üÔĎÔ ×ÁŇÉÁÎÔ ÂŐÄĹÔ ÔÁËÖĹ ×ŮÄĹĚĹÎ "
-"ÓÉÍ×ĎĚĎÍ '*', ĹÓĚÉ ×Ů ÎÁÖÍĹÔĹ\n"
-"TAB ÄĚŃ ĐŇĎÓÔÍĎÔŇÁ ×ÁŇÉÁÎÔĎ× ÚÁÇŇŐÚËÉ."
+" * đĎ ŐÍĎĚŢÁÎÉŔ: ×ŮÂÉŇÁĹÔ ÜÔĎÔ ĐŐÎËÔ, ËÁË ×ŮÂĎŇ Linux'a ĐĎ ŐÍĎĚŢÁÎÉŔ,\n"
+"×ŮÂÉŇÁĹÍŮĘ ĐŇĎÓÔŮÍ ÎÁÖÁÔÉĹÍ ÎÁ ENTER × ÓÔŇĎËĹ ĐŇÉÇĚÁŰĹÎÉŃ yaboot. üÔĎÔ\n"
+"ĐŐÎËÔ ÔÁËÖĹ ÂŐÄĹÔ ĎÔÍĹŢĹÎ ``*'', ĹÓĚÉ ×Ů ÎÁÖÍĹÔĹ [TAB], ŢÔĎÂŮ Ő×ÉÄĹÔŘ\n"
+"×ÁŇÉÁÎÔŮ ÚÁÇŇŐÚËÉ."
#: ../../help.pm_.c:833
msgid ""
@@ -4164,10 +4559,9 @@ msgid ""
msgstr ""
"Yaboot Ń×ĚŃĹÔÓŃ ÎÁŢÁĚŘÎŮÍ ÚÁÇŇŐÚŢÉËĎÍ ÄĚŃ ĎÂĎŇŐÄĎ×ÁÎÉŃ NewWorld MacIntosh.\n"
"ďÎ × ÓĎÓÔĎŃÎÉÉ ÚÁÇŇŐÚÉÔŘ GNU/Linux, MacOS ÉĚÉ MacOSX, ĹÓĚÉ ÔÁËĎ×ŮĹ ÉÍĹŔÔÓŃ\n"
-"ÎÁ ×ÁŰĹÍ ËĎÍĐŘŔÔĹŇĹ. ďÂŮŢÎĎ ÜÔÉ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ ĐŇÁ×ÉĚŘÎĎ ĎĐŇĹÄĹĚŃŔÔÓŃ "
-"É ŐÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ. ĺÓĚÉ ÜÔĎ ÎĹ ÔÁË, ×Ů ÍĎÖĹÔĹ ×ŇŐŢÎŐŔ ÄĎÂÁ×ÉÔŘ ĐŐÎËÔ ÎÁ "
-"ÜÔĎÍ\n"
-"ÜËŇÁÎĹ. âŐÄŘÔĹ ×ÎÉÍÁÔĹĚŘÎŮ ĐŇÉ ×ŮÂĎŇĹ ĐŇÁ×ÉĚŘÎŮČ ĐÁŇÁÍĹÔŇĎ×.\n"
+"ÎÁ ×ÁŰĹÍ ËĎÍĐŘŔÔĹŇĹ. ďÂŮŢÎĎ ÜÔÉ ĎĐĹŇÁĂÉĎÎÎŮĹ ÓÉÓÔĹÍŮ ĐŇÁ×ÉĚŘÎĎ ĎĐŇĹÄĹĚŃŔÔÓŃ\n"
+"É ŐÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ. ĺÓĚÉ ÜÔĎ ÎĹ ÔÁË, ×Ů ÍĎÖĹÔĹ ×ŇŐŢÎŐŔ ÄĎÂÁ×ÉÔŘ ĐŐÎËÔ ÎÁ\n"
+"ÜÔĎÍ ÜËŇÁÎĹ. âŐÄŘÔĹ ×ÎÉÍÁÔĹĚŘÎŮ ĐŇÉ ×ŮÂĎŇĹ ĐŇÁ×ÉĚŘÎŮČ ĐÁŇÁÍĹÔŇĎ×.\n"
"\n"
"çĚÁ×ÎŮĹ ĐÁŇÁÍĹÔŇŮ Yaboot:\n"
"\n"
@@ -4227,6 +4621,35 @@ msgid ""
"displayed here. You can click on the button to change the parameters\n"
"associated with it."
msgstr ""
+"úÄĹÓŘ ĐŇĹÄÓÔÁ×ĚĹÎŮ ŇÁÚĚÉŢÎŮĹ ĐÁŇÁÍĹÔŇŮ, ÉÍĹŔÝÉĹ ĎÔÎĎŰĹÎÉĹ Ë ×ÁŰĹĘ ÍÁŰÉÎĹ.\n"
+"÷ ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ŐÓÔÁÎĎ×ĚĹÎÎĎÇĎ Ő ×ÁÓ ĎÂĎŇŐÄĎ×ÁÎÉŃ ×Ů ÍĎÖĹÔĹ (ÉĚÉ ÎĹ\n"
+"ÍĎÖĹÔĹ) Ő×ÉÄĹÔŘ ÓĚĹÄŐŔÝÉĹ ĐŐÎËÔŮ:\n"
+"\n"
+" * \"íŮŰŘ\": ĐŇĎ×ĹŇŘÔĹ ÔĹËŐÝŐŔ ÎÁÓÔŇĎĘËŐ ÍŮŰÉ É ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ, ĹÓĚÉ\n"
+"ÎĹĎÂČĎÄÉÍĎ ĹĹ ÉÚÍĹÎÉÔŘ;\n"
+"\n"
+" * \"ëĚÁ×ÉÁÔŐŇÁ\": ĐŇĎ×ĹŇŘÔĹ ÔĹËŐÝŐŔ ÎÁÓÔŇĎĘËŐ ŇÁÓËĚÁÄËÉ ËĚÁ×ÉÁÔŐŇŮ ÎÁÖÍÉÔĹ\n"
+"ÎÁ ËÎĎĐËŐ, ĹÓĚÉ ÎĹĎÂČĎÄÉÍĎ ĹĹ ÉÚÍĹÎÉÔŘ;\n"
+"\n"
+" * \"ţÁÓĎ×ĎĘ ĐĎŃÓ\": DrakX ĐĎ ŐÍĎĚŢÁÎÉŔ ×ŮÂÉŇÁĹÔ ×ÁŰ ŢÁÓĎ×ĎĘ ĐĎŃÓ ÎÁ\n"
+"ĎÓÎĎ×ÁÎÉÉ ×ŮÂŇÁÎÎĎÇĎ ×ÁÍÉ ŃÚŮËÁ. îĎ ĎĐŃÔŘ ÖĹ, ËÁË É ĐŇÉ ×ŮÂĎŇĹ ËĚÁ×ÉÁÔŐŇŮ,\n"
+"×Ů ÍĎÖĹÔĹ É ÎĹ ÎÁČĎÄÉÔÓŃ × ÓÔŇÁÎĹ, ËĎÔĎŇĎĘ ÄĎĚÖĹÎ ÓĎĎÔ×ĹÔÓÔ×Ď×ÁÔŘ ×ŮÂŇÁÎÎŮĘ\n"
+"ŃÚŮË. đĎÜÔĎÍŐ ×ĎÚÍĎÖÎĎ ×ÁÍ ĐĎÎÁÄĎÂÉÔÓŃ ÎÁÖÁÔŘ ÎÁ ËÎĎĐËŐ \"ţÁÓĎ×ĎĘ ĐĎŃÓ\",\n"
+"ŢÔĎÂŮ ÎÁÓÔŇĎÉÔŘ ŢÁÓŮ ÓĎĎÔ×ĹÔÓÔ×ĹÎÎĎ ŢÁÓĎ×ĎÍŐ ĐĎŃÓŐ, × ËĎÔĎŇĎÍ ×Ů\n"
+"ÎÁČĎÄÉÔĹÓŘ;\n"
+"\n"
+" * \"đŇÉÎÔĹŇ\": ÎÁÖÁ× ÎÁ ËÎĎĐËŐ \"đŇÉÎÔĹŇ ĎÔÓŐÔÓÔ×ŐĹÔ\", ×Ů ÚÁĐŐÓÔÉÔĹ\n"
+"ÍÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ ĐŇÉÎÔĹŇÁ;\n"
+"\n"
+" * \"ú×ŐËĎ×ÁŃ ËÁŇÔÁ\": ĹÓĚÉ × ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÂŮĚÁ ĎÂÎÁŇŐÖĹÎÁ Ú×ŐËĎ×ÁŃ ËÁŇÔÁ,\n"
+"ĎÎÁ ÂŐÄĹÔ ÚÄĹÓŘ ĐĎËÁÚÁÎÁ. éÚÍĹÎĹÎÉĹ ×Ď ×ŇĹÍŃ ŐÓÔÁÎĎ×ËÉ ÎĹ×ĎÚÍĎÖÎĎ;\n"
+"\n"
+" * \"ô÷-ËÁŇÔÁ\": ĹÓĚÉ × ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÂŮĚÁ ĎÂÎÁŇŐÖĹÎÁ ô÷-ËÁŇÔÁ, ĎÎÁ ÂŐÄĹÔ\n"
+"ÚÄĹÓŘ ĐĎËÁÚÁÎÁ. éÚÍĹÎĹÎÉĹ ×Ď ×ŇĹÍŃ ŐÓÔÁÎĎ×ËÉ ÎĹ×ĎÚÍĎÖÎĎ;\n"
+"\n"
+" * \"ISDN-ËÁŇÔÁ\": ĹÓĚÉ × ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÂŮĚÁ ĎÂÎÁŇŐÖĹÎÁ ISDN-ËÁŇÔÁ, ĎÎÁ\n"
+"ÂŐÄĹÔ ÚÄĹÓŘ ĐĎËÁÚÁÎÁ. ÷Ů ÍĎÖĹÔĹ ÎÁÖÁÔŘ ÎÁ ËÎĎĐËŐ ÄĚŃ ÉÚÍĹÎĹÎÉŃ Ó×ŃÚÁÎÎŮČ Ó\n"
+"ÎĹŔ ĐÁŇÁÍĹÔŇĎ×."
#: ../../help.pm_.c:896
msgid ""
@@ -4273,7 +4696,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "÷Ů ÔÁËÖĹ ÄĎĚÖÎŮ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÔŘ %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4297,7 +4720,7 @@ msgstr ""
"\n"
"÷Ů ÄĹĘÓÔ×ÉÔĹĚŘÎĎ ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÜÔÉ ÓĹŇ×ĹŇŮ?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4305,34 +4728,39 @@ msgid ""
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
+"óĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ ÂŐÄŐÔ ŐÄÁĚĹÎŮ, ŢÔĎÂŮ ĎÂĹÓĐĹŢÉÔŘ ×ĎÚÍĎÖÎĎÓÔŘ ĎÂÎĎ×ĚĹÎÉŃ\n"
+"×ÁŰĹĘ ÓÉÓÔĹÍŮ: %s\n"
+"\n"
+"\n"
+"÷Ů ÄĹĘÓÔ×ÉÔĹĚŘÎĎ ČĎÔÉÔĹ ŐÄÁĚÉÔŘ ÜÔÉ ĐÁËĹÔŮ?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "îĹ×ĎÚÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ ŰÉŇĎËĎ×ĹÝÁÎÉĹ ÂĹÚ ÄĎÍĹÎÁ NIS"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "÷ÓÔÁ×ŘÔĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÎŐŔ ĐĎÄ FAT ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "üÔÁ ÄÉÓËĹÔÁ ÎĹ ĎÔĆĎŇÍÁÔÉŇĎ×ÁÎÁ ĐĎÄ FAT"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-"ţÔĎÂŮ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓĎČŇÁÎĹÎÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×, ÚÁÇŇŐÚÉÔĹ ŐÓÔÁÎĎ×ËŐ Ó "
+"ţÔĎÂŮ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔĎÔ ÓĎČŇÁÎĹÎÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×, ÚÁÇŇŐÚÉÔĹ ŐÓÔÁÎĎ×ËŐ Ó "
"ĐÁŇÁÍĹÔŇĎÍ ``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "ďŰÉÂËÁ ĐŇÉ ŢÔĹÎÉÉ ĆÁĘĚÁ %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4580,7 +5008,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "äÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
@@ -4610,11 +5038,11 @@ msgstr "ëĚÁÓÓ ŐÓÔÁÎĎ×ËÉ"
msgid "Please choose one of the following classes of installation:"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĎÄÉÎ ÉÚ ÓĚĹÄŐŔÝÉČ ËĚÁÓÓĎ× ŐÓÔÁÎĎ×ËÉ:"
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "÷ŮÂĎŇ ÇŇŐĐĐŮ ĐÁËĹÔĎ×"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "óÁÍĎÓÔĎŃÔĹĚŘÎŮĘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
@@ -4691,7 +5119,7 @@ msgstr "đĎËÁÚŮ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËÉ ×ŮÂŇÁÎÎŮĹ ĐÁËĹÔŮ"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "őÓÔÁÎĎ×ÉÔŘ"
@@ -4711,7 +5139,7 @@ msgstr "íÉÎÉÍÁĚŘÎÁŃ ŐÓÔÁÎĎ×ËÁ"
msgid "Choose the packages you want to install"
msgstr "÷ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ"
@@ -4738,17 +5166,17 @@ msgid "Installing package %s"
msgstr "őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ ĐÁËĹÔ %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "đŇÉÎŃÔŘ"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "ďÔËÁÚÁÔŘÓŃ"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -4765,16 +5193,16 @@ msgstr ""
"ÜÔĎÇĎ ËĎÍĐÁËÔ-ÄÉÓËÁ."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "÷ÓĹ ŇÁ×ÎĎ ĐŇĎÄĎĚÖÉÔŘ?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ ĐŇÉ ŇÁÓÓÔÁÎĎ×ËĹ ĐÁËĹÔĎ×:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "đŇĎÉÚĎŰĚÁ ĎŰÉÂËÁ ĐŇÉ ŐÓÔÁÎĎ×ËĹ ĐÁËĹÔĎ×:"
@@ -4901,7 +5329,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5081,7 +5509,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ĎÔËÁÚÁÔŘÓŃ ĎÔ ĚÉĂĹÎÚÉÉ?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "ëĚÁ×ÉÁÔŐŇÁ"
@@ -5226,6 +5654,8 @@ msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
+"đŇĎ×ĹŇËÁ ĆÁĘĚĎ×ĎĘ ÓÉÓÔĹÍŮ %s ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢĹĘ. čĎÔÉÔĹ ÉÓĐŇÁ×ÉÔŘ ĎŰÉÂËÉ "
+"(ĎÓÔĎŇĎÖÎĎ, ×Ů ÍĎÖĹÔĹ ĐĎÔĹŇŃÔŘ ÄÁÎÎŮĹ)?"
#: ../../install_steps_interactive.pm_.c:465
msgid "Not enough swap space to fulfill installation, please add some"
@@ -5291,11 +5721,11 @@ msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ, ÓĎÄĹŇÖÁÝŐŔ ×ŮÂĎŇ ĐÁËĹÔĎ×"
msgid "Selected size is larger than available space"
msgstr "÷ŮÂŇÁÎÎŮĘ ŇÁÚÍĹŇ ĐŇĹ×ŮŰÁĹÔ ÄĎÓÔŐĐÎĎĹ ÍĹÓÔĎ"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "ôÉĐ ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5303,19 +5733,19 @@ msgstr ""
"÷Ů ÎĹ ×ŮÂŇÁĚÉ ÎÉ ĎÄÎĎĘ ÇŇŐĐĐŮ ĐÁËĹÔĎ×.\n"
"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ÖĹĚÁĹÍŐŔ ÍÉÎÉÍÁĚŘÎŐŔ ŐÓÔÁÎĎ×ËŐ:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "÷ÍĹÓÔĹ Ó č"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "ó ÂÁÚĎ×ĎĘ ÄĎËŐÍĹÎÔÁĂÉĹĘ (ŇĹËĎÍĹÎÄŐĹÔÓŃ!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "äĹĘÓÔ×ÉÔĹĚŘÎĎ ÍÉÎÉÍÁĚŘÎÁŃ ŐÓÔÁÎĎ×ËÁ (× ĎÓĎÂĹÎÎĎÓÔÉ ÎĹÔ urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5325,16 +5755,16 @@ msgstr ""
"ĺÓĚÉ Ő ×ÁÓ ÎĹÔ ÎÉ ĎÄÎĎÇĎ ÉÚ ÜÔÉČ CD, ÎÁÖÍÉÔĹ ďÔÍĹÎÁ.\n"
"ĺÓĚÉ ĎÔÓŐÔÓÔ×ŐŔÔ ÔĎĚŘËĎ ÎĹËĎÔĎŇŮĹ CD, ĎÔÍĹÎÉÔĹ ÉČ ×ŮÂĎŇ É ÎÁÖÍÉÔĹ ďë."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "ëĎÍĐÁËÔ-ÄÉÓË Ó ÍĹÔËĎĘ \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "đĎÄÇĎÔÁ×ĚÉ×ÁĹÔÓŃ ŐÓÔÁÎĎ×ËÁ"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5343,21 +5773,21 @@ msgstr ""
"őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ ĐÁËĹÔ %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "îÁÓÔŇĎĘËÁ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ÓÔÁ×ŘÔĹ ÚÁÇŇŐÚĎŢÎŐŔ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ Ó ĎÂÎĎ×ĚĹÎÉŃÍÉ ÍĎÄŐĚĹĘ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5432,7 +5862,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5451,160 +5881,160 @@ msgstr ""
"éÎÔĹŇÎĹÔŐ.\n"
"čĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÜÔÉ ĎÂÎĎ×ĚĹÎÉŃ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"÷ŮĐĎĚÎŃĹÔÓŃ ĐĎÄËĚŔŢĹÎÉĹ Ë ×ĹÂ-ÓÁĘÔŐ Mandrake Linux ÄĚŃ ĐĎĚŐŢĹÎÉŃ ÓĐÉÓËÁ "
"ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "÷ŮÂĹŇÉÔĹ ÚĹŇËÁĚĎ, Ó ËĎÔĎŇĎÇĎ ÂŐÄŐÔ ĐĎĚŐŢĹÎŮ ĐÁËĹÔŮ"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr ""
"÷ŮĐĎĚÎŃĹÔÓŃ ĐĎÄËĚŔŢĹÎÉĹ Ë ÚĹŇËÁĚŐ ÄĚŃ ĐĎĚŐŢĹÎÉŃ ÓĐÉÓËÁ ÄĎÓÔŐĐÎŮČ ĐÁËĹÔĎ×..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "ëÁËĎĘ Ő ×ÁÓ ŢÁÓĎ×ĎĘ ĐĎŃÓ?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "áĐĐÁŇÁÔÎŮĹ ŢÁÓŮ ×ŮÓÔÁ×ĚĹÎŮ ĐĎ çŇÉÎ×ÉŢŐ"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "á×ÔĎÍÁÔÉŢĹÓËÁŃ ÓÉÎČŇĎÎÉÚÁĂÉŃ ×ŇĹÍĹÎÉ (ÉÓĐĎĚŘÚŐŃ NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "óĹŇ×ĹŇ NTP"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "őÄÁĚĹÎÎŮĘ ÓĹŇ×ĹŇ CUPS"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "đŇÉÎÔĹŇ ĎÔÓŐÔÓÔ×ŐĹÔ"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "ĺÓÔŘ ĚÉ Ő ×ÁÓ Ú×ŐËĎ×ÁŃ ËÁŇÔÁ ISA?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr ""
"úÁĐŐÓÔÉÔĹ \"sndconfig\" ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ, ŢÔĎÂŮ ÎÁÓÔŇĎÉÔŘ Ó×ĎŔ Ú×ŐËĎ×ŐŔ ËÁŇÔŐ"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr ""
"ú×ŐËĎ×ŮĹ ËÁŇÔŮ ÎĹ ĎÂÎÁŇŐÖĹÎŮ. đĎĐŇĎÂŐĘÔĹ ÚÁĐŐÓÔÉÔŘ \"harddrake\" ĐĎÓĚĹ "
"ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "ó×ĎÄËÁ"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "íŮŰŘ"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "ţÁÓĎ×ĎĘ ĐĎŃÓ"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
msgstr "đŇÉÎÔĹŇ"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ëÁŇÔÁ ISDN"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "ú×ŐËĎ×ÁŃ ËÁŇÔÁ"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV-ËÁŇÔÁ"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "äĎÍĹÎ Windows"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "ěĎËÁĚŘÎŮĹ ĆÁĘĚŮ"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "őÓÔÁÎĎ×ËÁ ĐÁŇĎĚŃ root"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "đÁŇĎĚŘ ĎÔÓŐÔÓÔ×ŐĹÔ"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "üÔĎÔ ĐÁŇĎĚŘ ÓĚÉŰËĎÍ ĐŇĎÓÔ (ĹÇĎ ÄĚÉÎÁ ÄĎĚÖÎÁ ÂŮÔŘ ÎĹ ÍĹÎĹĹ %d ÓÉÍ×ĎĚĎ×)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"
-#: ../../install_steps_interactive.pm_.c:1106
+#: ../../install_steps_interactive.pm_.c:1107
msgid "LDAP Server"
msgstr "óĹŇ×ĹŇ LDAP"
-#: ../../install_steps_interactive.pm_.c:1112
+#: ../../install_steps_interactive.pm_.c:1113
msgid "Authentication NIS"
msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ NIS"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1114
msgid "NIS Domain"
msgstr "äĎÍĹÎ NIS"
-#: ../../install_steps_interactive.pm_.c:1114
+#: ../../install_steps_interactive.pm_.c:1115
msgid "NIS Server"
msgstr "óĹŇ×ĹŇ NIS"
-#: ../../install_steps_interactive.pm_.c:1120
+#: ../../install_steps_interactive.pm_.c:1121
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 /"
@@ -5619,22 +6049,32 @@ msgid ""
"The command 'wbinfo -t' will test whether your authentication secrets are "
"good."
msgstr ""
+"ţÔĎÂŮ ÜÔĎ ÚÁŇÁÂĎÔÁĚĎ ÄĚŃ W2K PDC, ×ÁÍ, ×ĎÚÍĎÖÎĎ, ĐĎÎÁÄĎÂÉÔÓŃ ×ŮĐĎĚÎÉÔŘ ĐĎÄ "
+"ÁÄÍÉÎĎÍ: C:\\>net localgroup \"Pre-Windows 2000 Compatible Access\" "
+"everyone /add É ĐĹŇĹÚÁÇŇŐÚÉÔŘ ÓĹŇ×ĹŇ÷ÁÍ ÔÁËÖĹ ĐĎÎÁÄĎÂÉÔÓŃ ÉÍŃ_ĐĎĚŘÚĎ×ÁÔĹĚŃ/"
+"ĐÁŇĎĚŘ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ÄĎÍĹÎÁ, ŢÔĎÂŮ\n"
+"ĐĎÄËĚŔŢÉÔŘÓŃ Ë ÍÁŰÉÎĹ × ÄĎÍĹÎĹ NT.\n"
+"ĺÓĚÉ ÓĹÔŘ ĹÝĹ ÎĹ ×ËĚŔŢĹÎÁ, DrakX ĐĎĐŮÔÁĹÔÓŃ ĐĎÄËĚŔŢÉÔŘÓŃ Ë ÄĎÍĹÎŐ ĐĎÓĚĹ\n"
+"ÜÔÁĐÁ ŐÓÔÁÎĎ×ËÉ ÓĹÔÉ.\n"
+"ĺÓĚÉ ĐĎ ËÁËĎĘ-ÔĎ ĐŇÉŢÉÎĹ ÜÔÁ ŐÓÔÁÎĎ×ËÁ ÚÁ×ĹŇŰÉÔÓŃ ÎĹŐÄÁŢĹĘ É ÁŐÔĹÎÔÉĆÉËÁĂÉŃ\n"
+"ÄĎÍĹÎÁ ÎĹ ÚÁŇÁÂĎÔÁĹÔ, ÚÁĐŐÓÔÉÔĹ 'smbpasswd -j äďíĺî -U\n"
+"đďěřúď÷áôĺěř%đáňďěř', ÉÓĐĎĚŘÚŐŃ ÄĎÍĹÎ É ÉÍŃ_ĐĎĚŘÚĎ×ÁÔĹĚŃ/ĐÁŇĎĚŘ Ó×ĎĹĘ\n"
+"Windows(tm), ĐĎÓĚĹ ÚÁÇŇŐÚËÉ ÓÉÓÔĹÍŮ.\n"
+"ëĎÍÁÎÄÁ 'wbinfo -t' ĐŇĎ×ĹŇÉÔ ĐŇÁ×ÉĚŘÎĎÓÔŘ ×ÁŰĹĘ ÓĹËŇĹÔÎĎĘ ÁŐÔĹÎÔÉĆÉËÁĂÉÉ."
-#: ../../install_steps_interactive.pm_.c:1122
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1123
msgid "Authentication Windows Domain"
-msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ"
+msgstr "áŐÔĹÎÔÉĆÉËÁĂÉŃ ÄĎÍĹÎÁ Windows"
-#: ../../install_steps_interactive.pm_.c:1124
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:1125
msgid "Domain Admin User Name"
-msgstr "éÍŃ ÄĎÍĹÎÁ"
+msgstr "éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ - ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ÄĎÍĹÎÁ"
-#: ../../install_steps_interactive.pm_.c:1125
+#: ../../install_steps_interactive.pm_.c:1126
msgid "Domain Admin Password"
-msgstr ""
+msgstr "đÁŇĎĚŘ ÁÄÍÉÎÉÓÔŇÁÔĎŇÁ ÄĎÍĹÎÁ"
-#: ../../install_steps_interactive.pm_.c:1160
+#: ../../install_steps_interactive.pm_.c:1161
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 "
@@ -5662,19 +6102,19 @@ msgstr ""
"ĺÓĚÉ ČĎÔÉÔĹ ÓĎÚÄÁÔŘ ÚÁÇŇŐÚĎŢÎŮĘ ÄÉÓË ÄĚŃ Ó×ĎĹĘ ÓÉÓÔĹÍŮ, ×ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ\n"
"× ĐĹŇ×ŮĘ ÄÉÓËĎ×ĎÄ É ÎÁÖÍÉÔĹ \"ďë\"."
-#: ../../install_steps_interactive.pm_.c:1176
+#: ../../install_steps_interactive.pm_.c:1177
msgid "First floppy drive"
msgstr "đĹŇ×ŮĘ ÄÉÓËĎ×ĎÄ"
-#: ../../install_steps_interactive.pm_.c:1177
+#: ../../install_steps_interactive.pm_.c:1178
msgid "Second floppy drive"
msgstr "÷ÔĎŇĎĘ ÄÉÓËĎ×ĎÄ"
-#: ../../install_steps_interactive.pm_.c:1178 ../../printerdrake.pm_.c:2470
+#: ../../install_steps_interactive.pm_.c:1179 ../../printerdrake.pm_.c:2470
msgid "Skip"
msgstr "đŇĎĐŐÓÔÉÔŘ"
-#: ../../install_steps_interactive.pm_.c:1183
+#: ../../install_steps_interactive.pm_.c:1184
#, c-format
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -5698,7 +6138,7 @@ msgstr ""
"×ĎÓÓÔÁÎĎ×ĚĹÎÉĹ ÓÉÓÔĹÍŮ ĐĎÓĚĹ ËŇÉÔÉŢĹÓËÉČ ÓÂĎĹ×. čĎÔÉÔĹ ÓĎÚÄÁÔŘ ÚÁÇŇŐÚĎŢÎŮĘ\n"
"ÄÉÓË ÄĚŃ Ó×ĎĹĘ ÓÉÓÔĹÍŮ?%s"
-#: ../../install_steps_interactive.pm_.c:1189
+#: ../../install_steps_interactive.pm_.c:1190
msgid ""
"\n"
"\n"
@@ -5712,30 +6152,30 @@ msgstr ""
"ÓĎÚÄÁÎÉĹ ÚÁÇŇŐÚĎŢÎĎĘ ÄÉÓËĹÔŮ ÎÁ 1.44 íÂ, ÓËĎŇĹĹ ×ÓĹÇĎ, ÚÁ×ĹŇŰÉÔÓŃ\n"
"ÎĹŐÄÁŢĹĘ, ĐĎÔĎÍŐ ŢÔĎ ÄĚŃ XFS ÎŐÖĹÎ ĎŢĹÎŘ ÂĎĚŘŰĎĘ ÄŇÁĘ×ĹŇ)."
-#: ../../install_steps_interactive.pm_.c:1197
+#: ../../install_steps_interactive.pm_.c:1198
msgid "Sorry, no floppy drive available"
msgstr "éÚ×ÉÎÉÔĹ, ÄÉÓËĎ×ĎÄ ÎĹÄĎÓÔŐĐĹÎ"
-#: ../../install_steps_interactive.pm_.c:1201
+#: ../../install_steps_interactive.pm_.c:1202
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"÷ŮÂĹŇÉÔĹ ÄÉÓËĎ×ĎÄ, ËĎÔĎŇŮĘ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ÓĎÚÄÁÎÉŃ ÚÁÇŇŐÚĎŢÎĎĘ "
"ÄÉÓËĹÔŮ"
-#: ../../install_steps_interactive.pm_.c:1205
+#: ../../install_steps_interactive.pm_.c:1206
#, c-format
msgid "Insert a floppy in %s"
msgstr "÷ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ × %s"
-#: ../../install_steps_interactive.pm_.c:1208
+#: ../../install_steps_interactive.pm_.c:1209
msgid "Creating bootdisk..."
msgstr "óĎÚÄÁĹÔÓŃ ÚÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ..."
-#: ../../install_steps_interactive.pm_.c:1215
+#: ../../install_steps_interactive.pm_.c:1216
msgid "Preparing bootloader..."
msgstr "đĎÄÇĎÔÁ×ĚÉ×ÁĹÔÓŃ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË..."
-#: ../../install_steps_interactive.pm_.c:1226
+#: ../../install_steps_interactive.pm_.c:1227
msgid ""
"You appear to have an OldWorld or Unknown\n"
" machine, the yaboot bootloader will not work for you.\n"
@@ -5747,11 +6187,11 @@ msgstr ""
"ĐŇĎÄĎĚÖĹÎÁ, ÎĎ ×ÁÍ ĐĎÔŇĹÂŐĹÔÓŃ ÉÓĐĎĚŘÚĎ×ÁÔŘ BootX,\n"
"ŢÔĎÂŮ ÚÁÇŇŐÚÉÔŘ Ó×ĎŔ ÍÁŰÉÎŐ."
-#: ../../install_steps_interactive.pm_.c:1232
+#: ../../install_steps_interactive.pm_.c:1233
msgid "Do you want to use aboot?"
msgstr "÷Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ aboot?"
-#: ../../install_steps_interactive.pm_.c:1235
+#: ../../install_steps_interactive.pm_.c:1236
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -5759,17 +6199,17 @@ msgstr ""
"ďŰÉÂËÁ ŐÓÔÁÎĎ×ËÉ aboot, \n"
"ĐĎĐŮÔÁÔŘÓŃ ĆĎŇÓÉŇĎ×ÁÔŘ ŐÓÔÁÎĎ×ËŐ, ÄÁÖĹ ĹÓĚÉ ÜÔĎ ŇÁÚŇŐŰÉÔ ĐĹŇ×ŮĘ ŇÁÚÄĹĚ?"
-#: ../../install_steps_interactive.pm_.c:1242
+#: ../../install_steps_interactive.pm_.c:1243
msgid "Installing bootloader"
msgstr "őÓÔÁÎÁ×ĚÉ×ÁĹÔÓŃ ÎÁŢÁĚŘÎŮĘ ÚÁÇŇŐÚŢÉË"
-#: ../../install_steps_interactive.pm_.c:1248
+#: ../../install_steps_interactive.pm_.c:1249
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"őÓÔÁÎĎ×ËÁ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢĹĘ.\n"
"đŇĎÉÚĎŰĚÁ ÓĚĹÄŐŔÝÁŃ ĎŰÉÂËÁ:"
-#: ../../install_steps_interactive.pm_.c:1256
+#: ../../install_steps_interactive.pm_.c:1257
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -5787,17 +6227,17 @@ msgstr ""
" úÁÔĹÍ ××ĹÄÉÔĹ: shut-down\n"
"đŇÉ ÓĚĹÄŐŔÝĹĘ ÚÁÇŇŐÚËĹ ×Ů ÄĎĚÖÎŮ Ő×ÉÄĹÔŘ ĐŇÉÇĚÁŰĹÎÉĹ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ."
-#: ../../install_steps_interactive.pm_.c:1290
+#: ../../install_steps_interactive.pm_.c:1291
#: ../../standalone/drakautoinst_.c:79
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "÷ÓÔÁ×ŘÔĹ ŢÉÓÔŐŔ ÄÉÓËĹÔŐ × ÄÉÓËĎ×ĎÄ %s"
-#: ../../install_steps_interactive.pm_.c:1294
+#: ../../install_steps_interactive.pm_.c:1295
msgid "Creating auto install floppy..."
msgstr "óĎÚÄÁĹÔÓŃ ÄÉÓËĹÔÁ Á×ÔĎÍÁÔÉŢĹÓËĎĘ ŐÓÔÁÎĎ×ËÉ..."
-#: ../../install_steps_interactive.pm_.c:1305
+#: ../../install_steps_interactive.pm_.c:1306
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -5807,7 +6247,7 @@ msgstr ""
"\n"
"÷Ů ÄĹĘÓÔ×ÉÔĹĚŘÎĎ ČĎÔÉÔĹ ÓĹĘŢÁÓ ×ŮĘÔÉ?"
-#: ../../install_steps_interactive.pm_.c:1316
+#: ../../install_steps_interactive.pm_.c:1317
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
@@ -5839,15 +6279,15 @@ msgstr ""
"éÎĆĎŇÍÁĂÉŃ Ď ÎÁÓÔŇĎĘËĹ ×ÁŰĹĘ ÓÉÓÔĹÍŮ ÄĎÓÔŐĐÎÁ × ÇĚÁ×Ĺ Post Install\n"
"ďĆÉĂÉÁĚŘÎĎÇĎ ňŐËĎ×ĎÄÓÔ×Á đĎĚŘÚĎ×ÁÔĹĚŃ Mandrake Linux."
-#: ../../install_steps_interactive.pm_.c:1329
+#: ../../install_steps_interactive.pm_.c:1330
msgid "http://www.mandrakelinux.com/en/90errata.php3"
-msgstr ""
+msgstr " http://www.mandrakelinux.com/en/90errata.php3"
-#: ../../install_steps_interactive.pm_.c:1334
+#: ../../install_steps_interactive.pm_.c:1335
msgid "Generate auto install floppy"
msgstr "óĎÚÄÁÔŘ ÄÉÓËĹÔŐ Á×ÔĎÍÁÔÉŢĹÓËĎĘ ŐÓÔÁÎĎ×ËÉ"
-#: ../../install_steps_interactive.pm_.c:1336
+#: ../../install_steps_interactive.pm_.c:1337
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
@@ -5862,15 +6302,15 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ÚÁČĎÔĹÔŘ ĐĎ×ÔĎŇÉÔŘ ŐÓÔÁÎĎ×ËŐ.\n"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Automated"
msgstr "á×ÔĎÍÁÔÉŢĹÓËÉĘ"
-#: ../../install_steps_interactive.pm_.c:1341
+#: ../../install_steps_interactive.pm_.c:1342
msgid "Replay"
msgstr "đĎ×ÔĎŇÉÔŘ"
-#: ../../install_steps_interactive.pm_.c:1344
+#: ../../install_steps_interactive.pm_.c:1345
msgid "Save packages selection"
msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
@@ -5906,14 +6346,14 @@ msgstr "äĎĐĎĚÎÉÔĹĚŘÎĎ"
msgid "Basic"
msgstr "ďÓÎĎ×ÎĎĘ"
-#: ../../interactive/newt.pm_.c:174 ../../my_gtk.pm_.c:158
+#: ../../interactive/newt.pm_.c:195 ../../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:4110 ../../standalone/drakbackup_.c:4137
-#: ../../standalone/drakbackup_.c:4167 ../../standalone/drakbackup_.c:4193
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
+#: ../../standalone/drakbackup_.c:4114 ../../standalone/drakbackup_.c:4141
+#: ../../standalone/drakbackup_.c:4171 ../../standalone/drakbackup_.c:4197
msgid "Next"
msgstr "äÁĚĹĹ"
@@ -6059,9 +6499,8 @@ msgid "Belgian"
msgstr "âĹĚŘÇÉĘÓËÁŃ"
#: ../../keyboard.pm_.c:177
-#, fuzzy
msgid "Bengali"
-msgstr "×ËĚŔŢÉÔŘ"
+msgstr "âĹÎÇÁĚŘÓËÁŃ"
#: ../../keyboard.pm_.c:178
msgid "Bulgarian (phonetic)"
@@ -6076,9 +6515,8 @@ msgid "Brazilian (ABNT-2)"
msgstr "âŇÁÚÉĚŘÓËÁŃ (ABNT-2)"
#: ../../keyboard.pm_.c:183
-#, fuzzy
msgid "Bosnian"
-msgstr "üÓÔĎÎÓËÉĘ"
+msgstr "âĎÓÎÉĘÓËÁŃ"
#: ../../keyboard.pm_.c:184
msgid "Belarusian"
@@ -6102,7 +6540,7 @@ msgstr "îĹÍĹĂËÁŃ (ÂĹÚ ÍĹŇÔ×ŮČ ËĚÁ×ÉŰ)"
#: ../../keyboard.pm_.c:191
msgid "Devanagari"
-msgstr ""
+msgstr "äĹ×ÁÎÁÇÁŇÉ"
#: ../../keyboard.pm_.c:192
msgid "Danish"
@@ -6138,11 +6576,11 @@ msgstr "çŇĹŢĹÓËÁŃ"
#: ../../keyboard.pm_.c:203
msgid "Gujarati"
-msgstr ""
+msgstr "çŐÄÖÁŇÁÔÓËÁŃ"
#: ../../keyboard.pm_.c:204
msgid "Gurmukhi"
-msgstr ""
+msgstr "çŐŇÍŐËÉ"
#: ../../keyboard.pm_.c:205
msgid "Hungarian"
@@ -6174,7 +6612,7 @@ msgstr "éÔÁĚŘŃÎÓËÁŃ"
#: ../../keyboard.pm_.c:212
msgid "Inuktitut"
-msgstr ""
+msgstr "éÎŐËÔÉÔŐÔ"
#: ../../keyboard.pm_.c:213
msgid "Japanese 106 keys"
@@ -6189,9 +6627,8 @@ msgid "Latin American"
msgstr "ěÁÔÉÎĎÁÍĹŇÉËÁÎÓËÁŃ"
#: ../../keyboard.pm_.c:218
-#, fuzzy
msgid "Laotian"
-msgstr "íĹÓÔĎÎÁČĎÖÄĹÎÉĹ"
+msgstr "ěÁĎÓÓËÁŃ"
#: ../../keyboard.pm_.c:219
msgid "Lithuanian AZERTY (old)"
@@ -6219,20 +6656,19 @@ msgstr "íÁËĹÄĎÎÓËÁŃ"
#: ../../keyboard.pm_.c:226
msgid "Myanmar (Burmese)"
-msgstr ""
+msgstr "íŘŃÎÍÓËÁŃ (âÉŇÍÁ)"
#: ../../keyboard.pm_.c:227
-#, fuzzy
msgid "Mongolian (cyrillic)"
-msgstr "áÚĹŇÂÁĘÄÖÁÎÓËÉĘ (ËÉŇÉĚĚÉĂÁ)"
+msgstr "íĎÎÇĎĚŘÓËÁŃ (ËÉŇÉĚĚÉŢĹÓËÁŃ)"
#: ../../keyboard.pm_.c:228
msgid "Maltese (UK)"
-msgstr ""
+msgstr "íÁĚŘÔÉĘÓËÁŃ (UK)"
#: ../../keyboard.pm_.c:229
msgid "Maltese (US)"
-msgstr ""
+msgstr "íÁĚŘÔÉĘÓËÁŃ (óűá)"
#: ../../keyboard.pm_.c:230
msgid "Dutch"
@@ -6284,11 +6720,11 @@ msgstr "óĹŇÂÓËÁŃ (ËÉŇÉĚĚÉŢĹÓËÁŃ)"
#: ../../keyboard.pm_.c:248
msgid "Tamil (Unicode)"
-msgstr ""
+msgstr "ôÁÍÉĚŘÓËÁŃ (ŕÎÉËĎÄ)"
#: ../../keyboard.pm_.c:249
msgid "Tamil (TSCII)"
-msgstr ""
+msgstr "ôÁÍÉĚŘÓËÁŃ (TSCII)"
#: ../../keyboard.pm_.c:250
msgid "Thai keyboard"
@@ -6363,7 +6799,7 @@ msgstr "đŇÁ×ÁŃ ËĚÁ×ÉŰÁ \"Windows\""
msgid "Circular mounts %s\n"
msgstr "úÁÍŮËÁŔÝÉĹ ÍĎÎÔÉŇĎ×ÁÎÉŃ %s\n"
-#: ../../lvm.pm_.c:98
+#: ../../lvm.pm_.c:103
msgid "Remove the logical volumes first\n"
msgstr "óÎÁŢÁĚÁ ŐÄÁĚÉÔĹ ĚĎÇÉŢĹÓËÉĹ ÔĎÍÁ\n"
@@ -6393,6 +6829,8 @@ msgstr "ÓÔŇĎËÉ, ŇÁÚÄĹĚĹÎÎŮĹ ÚÁĐŃÔŮÍÉ"
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
+"đĎÄÄĹŇÖËÁ PCMCIA ÄĚŃ ŃÄĹŇ 2.2 ÂĎĚŘŰĹ ÎĹ ÓŐÝĹÓÔ×ŐĹÔ. đĎÖÁĚŐĘÓÔÁ, ÉÓĐĎĚŘÚŐĘÔĹ\n"
+"ŃÄŇĎ 2.4."
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
@@ -6423,9 +6861,8 @@ msgid "Genius NetScroll"
msgstr "Genius NetScroll"
#: ../../mouse.pm_.c:39 ../../mouse.pm_.c:48
-#, fuzzy
msgid "Microsoft Explorer"
-msgstr "Microsoft IntelliMouse"
+msgstr "Microsoft Explorer"
#: ../../mouse.pm_.c:44 ../../mouse.pm_.c:70
msgid "1 button"
@@ -6499,21 +6936,21 @@ msgstr "ĎÔÓŐÔÓÔ×ŐĹÔ"
msgid "No mouse"
msgstr "íŮŰŘ ĎÔÓŐÔÓÔ×ŐĹÔ"
-#: ../../mouse.pm_.c:488
+#: ../../mouse.pm_.c:486
msgid "Please test the mouse"
msgstr "đĎÖÁĚŐĘÓÔÁ, ĐŇĎ×ĹŇŘÔĹ Ó×ĎŔ ÍŮŰŘ"
-#: ../../mouse.pm_.c:489
+#: ../../mouse.pm_.c:487
msgid "To activate the mouse,"
msgstr "ţÔĎÂŮ ĐŇÉ×ĹÓÔÉ ÍŮŰŘ × ÄĹĘÓÔ×ÉĹ,"
-#: ../../mouse.pm_.c:490
+#: ../../mouse.pm_.c:488
msgid "MOVE YOUR WHEEL!"
msgstr "đďëňőôéôĺ ëďěĺóéëď!"
#: ../../my_gtk.pm_.c:64
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
-msgstr ""
+msgstr "-cronyx-courier-regular-r-*-*-25-*-*-*-p-*-koi8-r,*-r-*"
#: ../../my_gtk.pm_.c:159
msgid "Finish"
@@ -6544,11 +6981,11 @@ msgid "Toggle between flat and group sorted"
msgstr ""
"đĹŇĹËĚŔŢĹÎÉĹ ÍĹÖÄŐ ÎĹŇÁÚ×ĹÔ×ĚĹÎÎŮÍ É ĎÔÓĎŇÔÉŇĎ×ÁÎÎŮÍ ĐĎ ÇŇŐĐĐÁÍ ÓĐÉÓËÁÍÉ"
-#: ../../network/adsl.pm_.c:19 ../../network/ethernet.pm_.c:36
+#: ../../network/adsl.pm_.c:23 ../../network/ethernet.pm_.c:36
msgid "Connect to the Internet"
msgstr "đĎÄËĚŔŢÉÔŘÓŃ Ë éÎÔĹŇÎĹÔŐ"
-#: ../../network/adsl.pm_.c:20
+#: ../../network/adsl.pm_.c:24
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few ones use dhcp.\n"
@@ -6559,53 +6996,43 @@ msgstr ""
"pptp, ÎĹËĎÔĎŇŮĹ - dhcp. ĺÓĚÉ ×Ů ÎĹ ÚÎÁĹÔĹ, ÔĎ ×ŮÂÉŇÁĘÔĹ\n"
"'ÉÓĐĎĚŘÚĎ×ÁÔŘ pppoe'"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"
-#: ../../network/adsl.pm_.c:22
-msgid "ECI Hi-Focus"
-msgstr ""
-
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use dhcp"
msgstr "ÉÓĐĎĚŘÚĎ×ÁÔŘ dhcp"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pppoe"
msgstr "ÉÓĐĎĚŘÚĎ×ÁÔŘ pppoe"
-#: ../../network/adsl.pm_.c:22
+#: ../../network/adsl.pm_.c:26
msgid "use pptp"
msgstr "ÉÓĐĎĚŘÚĎ×ÁÔŘ pptp"
#: ../../network/drakfirewall.pm_.c:12
-#, fuzzy
msgid "Web Server"
-msgstr "óĹŇ×ĹŇ"
+msgstr "÷ĹÂ-ÓĹŇ×ĹŇ"
#: ../../network/drakfirewall.pm_.c:17
-#, fuzzy
msgid "Domain Name Server"
-msgstr "éÍŃ ÄĎÍĹÎÁ"
+msgstr "óĹŇ×ĹŇ ÄĎÍĹÎÎŮČ ÉÍĹÎ"
#: ../../network/drakfirewall.pm_.c:32
-#, fuzzy
msgid "Mail Server"
-msgstr "âÁÚÁ ÄÁÎÎŮČ"
+msgstr "đĎŢÔĎ×ŮĘ ÓĹŇ×ĹŇ"
#: ../../network/drakfirewall.pm_.c:37
-#, fuzzy
msgid "POP and IMAP Server"
-msgstr "NIS ÓĹŇ×ĹŇ"
+msgstr "óĹŇ×ĹŇ POP É IMAP"
#: ../../network/drakfirewall.pm_.c:111
-#, fuzzy
msgid "No network card"
-msgstr "ÓĹÔĹ×ŮČ ËÁŇÔ ÎĹ ÎÁĘÄĹÎĎ"
+msgstr "óĹÔĹ×ÁŃ ËÁŇÔÁ ĎÔÓŐÔÓÔ×ŐĹÔ"
#: ../../network/drakfirewall.pm_.c:129
-#, fuzzy
msgid ""
"drakfirewall configurator\n"
"\n"
@@ -6613,15 +7040,15 @@ msgid ""
"For a powerful dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"ËĎÎĆÉÇŐŇÁÔĎŇ ĐŇĎÓÔĎÇĎ ÂŇÁÎÄÍÁŐÜŇÁ\n"
+"ËĎÎĆÉÇŐŇÁÔĎŇ drakfirewall\n"
"\n"
-"ďÎ ÎÁÓÔŇÁÉ×ÁĹÔ ĐĹŇÓĎÎÁĚŘÎŮĘ ÂŇÁÎÄÍÁŐÜŇ ÄĚŃ ÜÔĎĘ ÍÁŰÉÎŮ Mandrake Linux.\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 ""
+msgstr "ëÁËÉÍ ÓĹŇ×ÉÓÁÍ ×Ů ČĎÔÉÔĹ ŇÁÚŇĹŰÉÔŘ ÄĎÓÔŐĐ × éÎÔĹŇÎĹÔ?"
#: ../../network/drakfirewall.pm_.c:148
msgid ""
@@ -6629,6 +7056,9 @@ msgid ""
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
+"÷Ů ÍĎÖĹÔĹ ××ĹÓÔÉ ŇÁÚĚÉŢÎŮĹ ĐĎŇÔŮ.\n"
+"äĹĘÓÔ×ÉÔĹĚŘÎŮĹ ĐŇÉÍĹŇŮ: 139/tcp 139/udp.\n"
+"éÎĆĎŇÍÁĂÉŔ ÍĎÖÎĎ ÎÁĘÔÉ × /etc/services."
#: ../../network/drakfirewall.pm_.c:154
#, c-format
@@ -6637,15 +7067,17 @@ msgid ""
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
+"őËÁÚÁÎ ÎĹ×ĹŇÎŮĘ ĐĎŇÔ: %s.\n"
+"đŇÁ×ÉĚŘÎŮĘ ĆĎŇÍÁÔ - \"ĐĎŇÔ/tcp\" ÉĚÉ \"ĐĎŇÔ/udp\",\n"
+"ÇÄĹ ĐĎŇÔ ÄĎĚÖĹÎ ÂŮÔŘ ÍĹÖÄŐ 1 É 65535."
#: ../../network/drakfirewall.pm_.c:162
msgid "Everything (no firewall)"
-msgstr ""
+msgstr "÷ÓĹ (ĆÁĘĹŇ×ĎĚ ĎÔÓŐÔÓÔ×ŐĹÔ)"
#: ../../network/drakfirewall.pm_.c:164
-#, fuzzy
msgid "Other ports"
-msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
+msgstr "äŇŐÇÉĹ ĐĎŇÔŮ"
#: ../../network/ethernet.pm_.c:37
msgid ""
@@ -6678,7 +7110,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:362
msgid "Configuring network"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
@@ -6694,15 +7126,15 @@ 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:367
msgid "Host name"
msgstr "éÍŃ ČĎÓÔÁ"
#: ../../network/isdn.pm_.c:21 ../../network/isdn.pm_.c:44
-#: ../../network/netconnect.pm_.c:94 ../../network/netconnect.pm_.c:108
-#: ../../network/netconnect.pm_.c:163 ../../network/netconnect.pm_.c:178
-#: ../../network/netconnect.pm_.c:205 ../../network/netconnect.pm_.c:228
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:90 ../../network/netconnect.pm_.c:104
+#: ../../network/netconnect.pm_.c:159 ../../network/netconnect.pm_.c:174
+#: ../../network/netconnect.pm_.c:201 ../../network/netconnect.pm_.c:224
+#: ../../network/netconnect.pm_.c:232
msgid "Network Configuration Wizard"
msgstr "íÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ ÓĹÔÉ"
@@ -6730,6 +7162,15 @@ msgid ""
"\n"
"We recommand the light configuration.\n"
msgstr ""
+"ëÁËĎĘ ÔÉĐ ISDN-ÓĎĹÄÉÎĹÎÉŃ ×Ů ĐŇĹÄĐĎŢÉÔÁĹÔĹ?\n"
+"\n"
+"* óÔÁŇÁŃ ËĎÎĆÉÇŐŇÁĂÉŃ ÉÓĐĎĚŘÚŐĹÔ isdn4net. ďÎ ÓĎÄĹŇÖÉÔ\n"
+" ÜĆĆĹËÔÉ×ÎŮĹ ÓĹŇ×ÉÓÎŮĹ ĐŇĎÇŇÁÍÍŮ, ÎĎ Ń×ĚŃĹÔÓŃ ÓĚĎÖÎŮÍ\n"
+" × ÎÁÓÔŇĎĘËĹ É ÎĹ ÓÔÁÎÄÁŇÔÉÚÉŇĎ×ÁÎ.\n"
+"* îĎ×ÁŃ ËĎÎĆÉÇŐŇÁĂÉŃ Ń×ĚŃĹÔÓŃ ÂĎĚĹĹ ĐŇĎÓÔĎĘ ÄĚŃ ĐĎÎÉÍÁÎÉŃ,\n"
+" ÂĎĚĹĹ ÓÔÁÎÄÁŇÔÉÚÉŇĎ×ÁÎÎĎĘ, ÎĎ Ó ÍĹÎŘŰÉÍ ŢÉÓĚĎÍ ÓĹŇ×ÉÓÎŮČ\n"
+" ĐŇĎÇŇÁÍÍ.\n"
+"íŮ ŇĹËĎÍĹÎÄŐĹÍ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĎÂĚĹÇŢĹÎÎŐŔ ËĎÎĆÉÇŐŇÁĂÉŔ.\n"
#: ../../network/isdn.pm_.c:54
msgid "New configuration (isdn-light)"
@@ -6740,8 +7181,8 @@ msgid "Old configuration (isdn4net)"
msgstr "óÔÁŇÁŃ ËĎÎĆÉÇŐŇÁĂÉŃ (isdn4net)"
#: ../../network/isdn.pm_.c:170 ../../network/isdn.pm_.c:188
-#: ../../network/isdn.pm_.c:198 ../../network/isdn.pm_.c:205
-#: ../../network/isdn.pm_.c:215
+#: ../../network/isdn.pm_.c:200 ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:213 ../../network/isdn.pm_.c:223
msgid "ISDN Configuration"
msgstr "îÁÓÔŇĎĘËÁ ISDN"
@@ -6777,23 +7218,28 @@ msgstr ""
msgid "Which protocol do you want to use?"
msgstr "ëÁËĎĘ ĐŇĎÔĎËĎĚ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
-#: ../../network/isdn.pm_.c:199
+#: ../../network/isdn.pm_.c:200
+#, c-format
+msgid "Found \"%s\" interface do you want to use it ?"
+msgstr ""
+
+#: ../../network/isdn.pm_.c:207
msgid "What kind of card do you have?"
msgstr "ëÁËĎĘ Ő ×ÁÓ ÔÉĐ ËÁŇÔŮ?"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "I don't know"
msgstr "ń ÎĹ ÚÎÁŔ"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../network/isdn.pm_.c:200
+#: ../../network/isdn.pm_.c:208
msgid "PCI"
msgstr "PCI"
-#: ../../network/isdn.pm_.c:206
+#: ../../network/isdn.pm_.c:214
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -6806,19 +7252,19 @@ msgstr ""
"\n"
"ĺÓĚÉ Ő ×ÁÓ ËÁŇÔÁ PCMCIA, ÔĎ ×Ů ÄĎĚÖÎŮ ÚÎÁÔŘ \"irq\" É \"io\" Ó×ĎĹĘ ËÁŇÔŮ.\n"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Abort"
msgstr "đŇĹŇ×ÁÔŘ"
-#: ../../network/isdn.pm_.c:210
+#: ../../network/isdn.pm_.c:218
msgid "Continue"
msgstr "đŇĎÄĎĚÖÉÔŘ"
-#: ../../network/isdn.pm_.c:216
+#: ../../network/isdn.pm_.c:224
msgid "Which is your ISDN card?"
msgstr "ëÁËÁŃ Ő ×ÁÓ ËÁŇÔÁ ISDN ?"
-#: ../../network/isdn.pm_.c:235
+#: ../../network/isdn.pm_.c:243
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
@@ -6826,7 +7272,7 @@ msgstr ""
"âŮĚÁ ĎÂÎÁŇŐÖĹÎÁ ËÁŇÔÁ ISDN PCI, ÎĎ Ń ÎĹ ÚÎÁŔ ĹĹ ÔÉĐ. đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ "
"ËÁŇÔŐ PCI ÎÁ ÓĚĹÄŐŔÝĹÍ ÜËŇÁÎĹ."
-#: ../../network/isdn.pm_.c:244
+#: ../../network/isdn.pm_.c:252
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"ëÁŇÔÁ ISDN PCI ÎĹ ÂŮĚÁ ĎÂÎÁŇŐÖĹÎÁ. đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĹĹ ÎÁ ÓĚĹÄŐŔÝĹÍ "
@@ -6881,7 +7327,7 @@ msgstr "đĹŇ×ŮĘ ÓĹŇ×ĹŇ DNS (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
msgid "Second DNS Server (optional)"
msgstr "÷ÔĎŇĎĘ ÓĹŇ×ĹŇ DNS (ÎĹĎÂŃÚÁÔĹĚŘÎĎ)"
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
@@ -6889,7 +7335,7 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ĎÔËĚŔŢÉÔŘÓŃ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ Ó×ĎĹ ÓĎĹÄÉÎĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:33 ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:29 ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can reconfigure your connection."
@@ -6897,11 +7343,11 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ĐĹŇĹÎÁÓÔŇĎÉÔŘ Ó×ĎĹ ĐĎÄËĚŔŢĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:33
+#: ../../network/netconnect.pm_.c:29
msgid "You are currently connected to internet."
msgstr "÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ĐĎÄËĚŔŢĹÎŮ Ë éÎÔĹŇÎĹÔŐ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid ""
"\n"
"You can connect to Internet or reconfigure your connection."
@@ -6909,32 +7355,32 @@ msgstr ""
"\n"
"÷Ů ÍĎÖĹÔĹ ĐĎÄËĚŔŢÉÔŘÓŃ Ë éÎÔĹŇÎĹÔŐ ÉĚÉ ĐĹŇĹÎÁÓÔŇĎÉÔŘ Ó×ĎĹ ĐĎÄËĚŔŢĹÎÉĹ."
-#: ../../network/netconnect.pm_.c:36
+#: ../../network/netconnect.pm_.c:32
msgid "You are not currently connected to Internet."
msgstr "÷ ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÎĹ ĐĎÄËĚŔŢĹÎŮ Ë éÎÔĹŇÎĹÔŐ."
-#: ../../network/netconnect.pm_.c:40
+#: ../../network/netconnect.pm_.c:36
msgid "Connect"
msgstr "đĎÄËĚŔŢÉÔŘÓŃ"
-#: ../../network/netconnect.pm_.c:42
+#: ../../network/netconnect.pm_.c:38
msgid "Disconnect"
msgstr "ďÔËĚŔŢÉÔŘÓŃ"
-#: ../../network/netconnect.pm_.c:44
+#: ../../network/netconnect.pm_.c:40
msgid "Configure the connection"
msgstr "îÁÓÔŇĎÉÔŘ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:49
+#: ../../network/netconnect.pm_.c:45
msgid "Internet connection & configuration"
msgstr "đĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ É ÎÁÓÔŇĎĘËÁ"
-#: ../../network/netconnect.pm_.c:99
+#: ../../network/netconnect.pm_.c:95
#, c-format
msgid "We are now going to configure the %s connection."
-msgstr "óĹĘŢÁÓ ÍŮ ÓĎÂÉŇÁĹÍÓŃ ÎÁÓÔŇĎÉÔŘ %s ÓĎĹÄÉÎĹÎÉĹ."
+msgstr "óĹĘŢÁÓ ÍŮ ÓĎÂÉŇÁĹÍÓŃ ÎÁÓÔŇĎÉÔŘ ÓĎĹÄÉÎĹÎÉĹ %s."
-#: ../../network/netconnect.pm_.c:108
+#: ../../network/netconnect.pm_.c:104
#, c-format
msgid ""
"\n"
@@ -6953,12 +7399,12 @@ msgstr ""
"\n"
"îÁÖÍÉÔĹ ďë ÄĚŃ ĐŇĎÄĎĚÖĹÎÉŃ."
-#: ../../network/netconnect.pm_.c:137 ../../network/netconnect.pm_.c:255
-#: ../../network/netconnect.pm_.c:275 ../../network/tools.pm_.c:63
+#: ../../network/netconnect.pm_.c:133 ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:271 ../../network/tools.pm_.c:63
msgid "Network Configuration"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:138
+#: ../../network/netconnect.pm_.c:134
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -6969,7 +7415,7 @@ msgstr ""
"îÁÖÍÉÔĹ ďë, ŢÔĎÂŮ ÓĎČŇÁÎÉÔŘ ÔĹËŐÝÉĹ ÎÁÓÔŇĎĘËÉ, ÉĚÉ ďÔÍĹÎÁ, ŢÔĎÂŮ\n"
"ĐĹŇĹÎÁÓÔŇĎÉÔŘ Ó×ĎĹ ĐĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ É ĚĎËÁĚŘÎĎĘ ÓĹÔÉ.\n"
-#: ../../network/netconnect.pm_.c:164
+#: ../../network/netconnect.pm_.c:160
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
@@ -6981,72 +7427,72 @@ msgstr ""
"óĹĘŢÁÓ ÍŮ ÎÁÓÔŇĎÉÍ ×ÁŰĹ ĐĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ É/ÉĚÉ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ.\n"
"ĺÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ, ÓÎÉÍÉÔĹ ÇÁĚĎŢËŐ.\n"
-#: ../../network/netconnect.pm_.c:170
+#: ../../network/netconnect.pm_.c:166
msgid "Choose the profile to configure"
msgstr "÷ŮÂĹŇÉÔĹ ĐŇĎĆÉĚŘ ÄĚŃ ÎÁÓÔŇĎĘËÉ"
-#: ../../network/netconnect.pm_.c:171
+#: ../../network/netconnect.pm_.c:167
msgid "Use auto detection"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
+msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:172 ../../printerdrake.pm_.c:3151
+#: ../../network/netconnect.pm_.c:168 ../../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:386
+#: ../../network/netconnect.pm_.c:174 ../../printerdrake.pm_.c:386
msgid "Detecting devices..."
msgstr "ďĐŇĹÄĹĚŃŔÔÓŃ ŐÓÔŇĎĘÓÔ×Á..."
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
msgid "Normal modem connection"
msgstr "ďÂŮŢÎĎĹ ÍĎÄĹÍÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
+#: ../../network/netconnect.pm_.c:185 ../../network/netconnect.pm_.c:194
#, c-format
msgid "detected on port %s"
msgstr "ÎÁĘÄĹÎ ÎÁ ĐĎŇÔŐ %s"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
msgid "ISDN connection"
msgstr "óĎĹÄÉÎĹÎÉĹ ISDN"
-#: ../../network/netconnect.pm_.c:190 ../../network/netconnect.pm_.c:199
+#: ../../network/netconnect.pm_.c:186 ../../network/netconnect.pm_.c:195
#, c-format
msgid "detected %s"
msgstr "ĎÂÎÁŇŐÖĹÎ %s"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
msgid "ADSL connection"
msgstr "óĎĹÄÉÎĹÎÉĹ ADSL"
-#: ../../network/netconnect.pm_.c:191 ../../network/netconnect.pm_.c:200
+#: ../../network/netconnect.pm_.c:187 ../../network/netconnect.pm_.c:196
#, c-format
msgid "detected on interface %s"
msgstr "ĎÂÎÁŇŐÖĹÎ ÎÁ ÉÎÔĹŇĆĹĘÓĹ %s"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "Cable connection"
msgstr "ëÁÂĹĚŘÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:192 ../../network/netconnect.pm_.c:201
+#: ../../network/netconnect.pm_.c:188 ../../network/netconnect.pm_.c:197
msgid "cable connection detected"
msgstr "ĎÂÎÁŇŐÖĹÎĎ ËÁÂĹĚŘÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "LAN connection"
msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:193 ../../network/netconnect.pm_.c:202
+#: ../../network/netconnect.pm_.c:189 ../../network/netconnect.pm_.c:198
msgid "ethernet card(s) detected"
msgstr "ĎÂÎÁŇŐÖĹÎÁ(Ů) ËÁŇÔÁ(Ů) ethernet"
-#: ../../network/netconnect.pm_.c:205
+#: ../../network/netconnect.pm_.c:201
msgid "Choose the connection you want to configure"
msgstr "÷ŮÂĹŇÉÔĹ ÓĎĹÄÉÎĹÎÉĹ, ËĎÔĎŇĎĹ ×Ů ČĎÔÉÔĹ ÎÁÓÔŇĎÉÔŘ"
-#: ../../network/netconnect.pm_.c:229
+#: ../../network/netconnect.pm_.c:225
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
@@ -7056,23 +7502,23 @@ msgstr ""
"÷ŮÂĹŇÉÔĹ ÔĎ, ËĎÔĎŇĎĹ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ.\n"
"\n"
-#: ../../network/netconnect.pm_.c:230
+#: ../../network/netconnect.pm_.c:226
msgid "Internet connection"
msgstr "đĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ"
-#: ../../network/netconnect.pm_.c:236
+#: ../../network/netconnect.pm_.c:232
msgid "Do you want to start the connection at boot?"
msgstr "čĎÔÉÔĹ ĚÉ ×Ů ÚÁĐŐÓËÁÔŘ ĐĎÄËĚŔŢĹÎÉĹ ĐŇÉ ÚÁÇŇŐÚËĹ?"
-#: ../../network/netconnect.pm_.c:250
+#: ../../network/netconnect.pm_.c:246
msgid "Network configuration"
msgstr "îÁÓÔŇĎĘËÁ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:251
+#: ../../network/netconnect.pm_.c:247
msgid "The network needs to be restarted"
msgstr "îĹĎÂČĎÄÉÍÁ ĐĹŇĹÚÁÇŇŐÚËÁ ÓĹÔÉ"
-#: ../../network/netconnect.pm_.c:255
+#: ../../network/netconnect.pm_.c:251
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
@@ -7083,7 +7529,7 @@ msgstr ""
"\n"
"%s"
-#: ../../network/netconnect.pm_.c:265
+#: ../../network/netconnect.pm_.c:261
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
@@ -7093,7 +7539,7 @@ msgstr ""
"\n"
"óĹĘŢÁÓ ËĎÎĆÉÇŐŇÁĂÉŃ ÂŐÄĹÔ ĐŇÉÍĹÎĹÎÁ Ë ×ÁŰĹĘ ÓÉÓÔĹÍĹ.\n"
-#: ../../network/netconnect.pm_.c:269
+#: ../../network/netconnect.pm_.c:265
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
@@ -7101,7 +7547,7 @@ msgstr ""
"đĎÓĚĹ ÜÔĎÇĎ ÍŮ ŇĹËĎÍĹÎÄŐĹÍ ĐĹŇĹÚÁĐŐÓÔÉÔŘ Ó×ĎŔ ĎÂĎĚĎŢËŐ č, ŢÔĎÂŮ ÉÚÂĹÖÁÔŘ "
"ĐŇĎÂĚĹÍ, Ó×ŃÚÁÎÎŮČ ÓĎ ÓÍĹÎĎĘ ÉÍĹÎÉ ČĎÓÔÁ."
-#: ../../network/netconnect.pm_.c:270
+#: ../../network/netconnect.pm_.c:266
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
@@ -7111,7 +7557,7 @@ msgstr ""
"đŇĎ×ĹŇŘÔĹ Ó×ĎĹ ĐĎÄËĚŔŢĹÎÉĹ ĐŇÉ ĐĎÍĎÝÉ net_monitor ÉĚÉ mcc. ĺÓĚÉ ×ÁŰĹ "
"ĐĎÄËĚŔŢĹÎÉĹ ÎĹ ŇÁÂĎÔÁĹÔ, ×Ů ÍĎÖĹÔĹ ĐĹŇĹÚÁĐŐÓÔÉÔŘ ÎÁÓÔŇĎĘËŐ."
-#: ../../network/network.pm_.c:294
+#: ../../network/network.pm_.c:291
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
@@ -7123,7 +7569,7 @@ msgstr ""
"đŇĎÓÔĎ ĎÓÔÁ×ŘÔĹ ËĎÎĆÉÇŐŇÁĂÉŔ ÜÔĎÇĎ ŐÓÔŇĎĘÓÔ×Á ÂĹÚ ÉÚÍĹÎĹÎÉĘ.\n"
"éÚÍĹÎĹÎÉĹ ĐŇĹÄÓÔÁ×ĚĹÎÎŮČ ÎÉÖĹ ĐĎĚĹĘ ĐĹŇĹĎĐŇĹÄĹĚÉÔ ÜÔŐ ËĎÎĆÉÇŐŇÁĂÉŔ."
-#: ../../network/network.pm_.c:299
+#: ../../network/network.pm_.c:296
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -7133,42 +7579,42 @@ msgstr ""
"ëÁÖÄŮĘ ĐŐÎËÔ ÄĎĚÖĹÎ ÂŮÔŘ ××ĹÄĹÎ ËÁË IP-ÁÄŇĹÓ × ×ÉÄĹ ÚÁĐÉÓÉ\n"
"ÄĹÓŃÔÉŢÎŮČ ŢÉÓĹĚ, ŇÁÚÄĹĚĹÎÎŮČ ÔĎŢËÁÍÉ (ÎÁĐŇÉÍĹŇ, 1.2.3.4)."
-#: ../../network/network.pm_.c:309 ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:306 ../../network/network.pm_.c:307
#, c-format
msgid "Configuring network device %s"
msgstr "îÁÓÔŇÁÉ×ÁĹÔÓŃ ÓĹÔĹ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď %s"
-#: ../../network/network.pm_.c:310
+#: ../../network/network.pm_.c:307
#, c-format
msgid " (driver %s)"
msgstr "(ÄŇÁĘ×ĹŇ %s)"
-#: ../../network/network.pm_.c:312 ../../standalone/drakconnect_.c:231
+#: ../../network/network.pm_.c:309 ../../standalone/drakconnect_.c:231
#: ../../standalone/drakconnect_.c:467
msgid "IP address"
msgstr "IP-ÁÄŇĹÓ"
-#: ../../network/network.pm_.c:313 ../../standalone/drakconnect_.c:468
+#: ../../network/network.pm_.c:310 ../../standalone/drakconnect_.c:468
msgid "Netmask"
msgstr "óĹÔĹ×ÁŃ ÍÁÓËÁ"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network/network.pm_.c:314
+#: ../../network/network.pm_.c:311
msgid "Automatic IP"
msgstr "á×ÔĎÍÁÔÉŢĹÓËÉĘ IP"
-#: ../../network/network.pm_.c:315
+#: ../../network/network.pm_.c:312
msgid "Start at boot"
msgstr "úÁĐŐÓËÁÔŘ ĐŇÉ ÚÁÇŇŐÚËĹ"
-#: ../../network/network.pm_.c:336 ../../printerdrake.pm_.c:860
+#: ../../network/network.pm_.c:333 ../../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:363
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -7180,54 +7626,62 @@ msgstr ""
"ČĎÓÔÁ, ÔÁËÉÍ ËÁË ``mybox.mylab.myco.com''.÷Ů ÍĎÖĹÔĹ ÔÁËÖĹ ××ĹÓÔÉ IP-ÁÄŇĹÓ "
"ŰĚŔÚÁ, ĹÓĚÉ ĎÎ Ő ×ÁÓ ĹÓÔŘ"
-#: ../../network/network.pm_.c:371
+#: ../../network/network.pm_.c:368
msgid "DNS server"
msgstr "óĹŇ×ĹŇ DNS"
-#: ../../network/network.pm_.c:372
+#: ../../network/network.pm_.c:369
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "űĚŔÚ (ÎÁĐŇÉÍĹŇ, %s)"
-#: ../../network/network.pm_.c:374
+#: ../../network/network.pm_.c:371
msgid "Gateway device"
msgstr "űĚŔÚĎ×ĎĹ ŐÓÔŇĎĘÓÔ×Ď"
-#: ../../network/network.pm_.c:386
+#: ../../network/network.pm_.c:376
+msgid "DNS server address should be in format 1.2.3.4"
+msgstr "áÄŇĹÓ DNS-ÓĹŇ×ĹŇÁ ÄĎĚÖĹÎ ÂŮÔŘ × ĆĎŇÍÁÔĹ 1.2.3.4"
+
+#: ../../network/network.pm_.c:380
+msgid "Gateway address should be in format 1.2.3.4"
+msgstr "áÄŇĹÓ ŰĚŔÚÁ ÄĎĚÖĹÎ ÂŮÔŘ × ĆĎŇÍÁÔĹ 1.2.3.4"
+
+#: ../../network/network.pm_.c:394
msgid "Proxies configuration"
msgstr "îÁÓÔŇĎĘËÁ ĐŇĎËÓÉ"
-#: ../../network/network.pm_.c:387
+#: ../../network/network.pm_.c:395
msgid "HTTP proxy"
msgstr "HTTP-ĐŇĎËÓÉ"
-#: ../../network/network.pm_.c:388
+#: ../../network/network.pm_.c:396
msgid "FTP proxy"
msgstr "FTP-ĐŇĎËÓÉ"
-#: ../../network/network.pm_.c:389
+#: ../../network/network.pm_.c:397
msgid "Track network card id (useful for laptops)"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ id ÓĹÔĹ×ĎĘ ËÁŇÔŮ (ĐĎĚĹÚÎĎ ÄĚŃ ÎĎŐÔÂŐËĎ×)"
-#: ../../network/network.pm_.c:392
+#: ../../network/network.pm_.c:400
msgid "Proxy should be http://..."
msgstr "đŇĎËÓÉ ÄĎĚÖĹÎ ÂŮÔŘ http://..."
-#: ../../network/network.pm_.c:393
-msgid "Proxy should be ftp://..."
-msgstr "đŇĎËÓÉ ÄĎĚÖĹÎ ÂŮÔŘ ftp://..."
+#: ../../network/network.pm_.c:401 ../../proxy.pm_.c:65
+msgid "Url should begin with 'ftp:' or 'http:'"
+msgstr "Url ÄĎĚÖĹÎ ÎÁŢÉÎÁÔŘÓŃ Ó 'ftp:' ÉĚÉ 'http:'"
#: ../../network/shorewall.pm_.c:24
msgid "Firewalling configuration detected!"
-msgstr "ďÂÎÁŇŐÖĹÎÁ ËĎÎĆÉÇŐŇÁĂÉŃ ÂŇÁÎÄÍÁŐÜŇÁ!"
+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"
@@ -7466,7 +7920,7 @@ msgstr "úÁÇĎÎŃÔŘ ÚÁÄÁÎÉĹ × ËĎÍÁÎÄŐ"
#: ../../printer.pm_.c:324 ../../printer.pm_.c:366 ../../printer.pm_.c:533
msgid "Unknown Model"
-msgstr ""
+msgstr "îĹÉÚ×ĹÓÔÎÁŃ ÍĎÄĹĚŘ"
#: ../../printer.pm_.c:735 ../../printer.pm_.c:926 ../../printer.pm_.c:1318
#: ../../printerdrake.pm_.c:2260 ../../printerdrake.pm_.c:3414
@@ -7516,7 +7970,7 @@ msgstr ", ĐĹŢÁÔÁŔÝÉĘ %s"
#: ../../printer.pm_.c:792
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
-msgstr ""
+msgstr " ÎÁ ÓĹŇ×ĹŇĹ LPD \"%s\", ĐŇÉÎÔĹŇ \"%s\""
#: ../../printer.pm_.c:794
#, c-format
@@ -7526,12 +7980,12 @@ msgstr ", ČĎÓÔ TCP/IP \"%s\", ĐĎŇÔ %s "
#: ../../printer.pm_.c:798
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
-msgstr ""
+msgstr " ÎÁ ÓĹŇ×ĹŇĹ SMB/Windows \"%s\", ŇĹÓŐŇÓ \"%s\""
#: ../../printer.pm_.c:802
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
-msgstr ""
+msgstr " ÎÁ ÓĹŇ×ĹŇĹ Novell \"%s\", ĐŇÉÎÔĹŇ \"%s\""
#: ../../printer.pm_.c:804
#, c-format
@@ -7584,6 +8038,7 @@ msgstr ""
#: ../../printerdrake.pm_.c:36
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr ""
+"á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ĐŇÉÎÔĹŇÁ (ĚĎËÁĚŘÎŮĹ, TCP/Socket É SMB-ĐŇÉÎÔĹŇŮ)"
#: ../../printerdrake.pm_.c:84 ../../printerdrake.pm_.c:3135
msgid "CUPS configuration"
@@ -7666,34 +8121,37 @@ msgid "Printerdrake"
msgstr "Printerdrake"
#: ../../printerdrake.pm_.c:178
-#, fuzzy
msgid "Checking your system..."
-msgstr "ëÁËŐŔ ÓÉÓÔĹÍŐ ĐĹŢÁÔÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ?"
+msgstr "đŇĎ×ĹŇŃĹÔÓŃ ×ÁŰÁ ÓÉÓÔĹÍÁ..."
#: ../../printerdrake.pm_.c:186
msgid ""
"There are no printers found which are directly connected to your machine"
-msgstr ""
+msgstr "îĹ ÎÁĘÄĹÎŮ ĐŇÉÎÔĹŇŮ, ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ ĐĎÄËĚŔŢĹÎÎŮĹ Ë ×ÁŰĹĘ ÍÁŰÉÎĹ."
#: ../../printerdrake.pm_.c:198
-#, fuzzy
msgid ""
"The following printers\n"
"\n"
-msgstr "âŐÄŐÔ ŐÄÁĚĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ"
+msgstr ""
+"óĚĹÄŐŔÝÉĹ ĐŇÉÎÔĹŇŮ\n"
+"\n"
#: ../../printerdrake.pm_.c:199
-#, fuzzy
msgid ""
"The following printer\n"
"\n"
-msgstr "âŐÄŐÔ ŐÄÁĚĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ"
+msgstr ""
+"óĚĹÄŐŔÝÉĘ ĐŇÉÎÔĹŇ\n"
+"\n"
#: ../../printerdrake.pm_.c:201
msgid ""
"\n"
"and one unknown printer are "
msgstr ""
+"\n"
+"É ĎÄÉÎ ÎĹÉÚ×ĹÓÔÎŮĘ ĐŇÉÎÔĹŇ - "
#: ../../printerdrake.pm_.c:203
#, c-format
@@ -7701,29 +8159,36 @@ msgid ""
"\n"
"and %d unknown printers are "
msgstr ""
+"\n"
+"É %d ÎĹÉÚ×ĹÓÔÎŮČ ĐŇÉÎÔĹŇĎ× - "
#: ../../printerdrake.pm_.c:207
msgid ""
"\n"
"are "
msgstr ""
+"\n"
+" - "
#: ../../printerdrake.pm_.c:208
msgid ""
"\n"
"is "
msgstr ""
+"\n"
+" - "
#: ../../printerdrake.pm_.c:210
-#, fuzzy
msgid "directly connected to your system"
-msgstr "îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹÔ ÓĹÔĹ×ĎÇĎ ÁÄÁĐÔĹŇÁ!"
+msgstr "ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ ĐĎÄËĚŔŢĹÎ Ë ×ÁŰĹĘ ÓÉÓÔĹÍĹ"
#: ../../printerdrake.pm_.c:213
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
+"\n"
+"ë ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ ĐĎÄËĚŔŢĹÎ ĎÄÉÎ ÎĹÉÚ×ĹÓÔÎŮĘ ĐŇÉÎÔĹŇ"
#: ../../printerdrake.pm_.c:215
#, c-format
@@ -7731,31 +8196,32 @@ msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
+"\n"
+"ë ×ÁŰĹĘ ÓÉÓÔĹÍĹ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ ĐĎÄËĚŔŢĹÎĎ %d ÎĹÉÚ×ĹÓÔÎŮČ ĐŇÉÎÔĹŇÁ"
#: ../../printerdrake.pm_.c:221
-#, fuzzy
msgid " (Make sure that all your printers are connected and turned on).\n"
-msgstr "÷ŮÂĹŇÉÔĹ, Ë ËÁËĎÍŐ ĐĎÓĚĹÄĎ×ÁÔĹĚŘÎĎÍŐ ĐĎŇÔŐ ĐĎÄËĚŔŢĹÎ ÍĎÄĹÍ."
+msgstr " (őÂĹÄÉÔĹÓŘ, ŢÔĎ ×ÓĹ ×ÁŰÉ ĐŇÉÎÔĹŇŮ ĐĎÄËĚŔŢĹÎŮ É ×ËĚŔŢĹÎŮ).\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 ""
+"čĎÔÉÔĹ ×ËĚŔŢÉÔŘ ĐĹŢÁÔŘ ÎÁ ĐŇÉÎÔĹŇÁČ, ĐĹŇĹŢÉÓĚĹÎÎŮČ ×ŮŰĹ ÉĚÉ ÎÁ ĐŇÉÎÔĹŇÁČ × "
+"ĚĎËÁĚŘÎĎĘ ÓĹÔÉ?\n"
#: ../../printerdrake.pm_.c:236
-#, fuzzy
msgid "Do you want to enable printing on printers in the local network?\n"
-msgstr "čĎÔÉÔĹ ×ŮĐĎĚÎÉÔŘ ĐŇĎÂÎŐŔ ĐĹŢÁÔŘ?"
+msgstr "čĎÔÉÔĹ ×ËĚŔŢÉÔŘ ĐĹŢÁÔŘ ÎÁ ĐŇÉÎÔĹŇÁČ × ĚĎËÁĚŘÎĎĘ ÓĹÔÉ?\n"
#: ../../printerdrake.pm_.c:238
-#, fuzzy
msgid "Do you want to enable printing on the printers mentioned above?\n"
-msgstr "čĎÔÉÔĹ ĚÉ ×Ů, ŢÔĎÂŮ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ ÚÁĐŐÓËÁĚĎÓŘ ĐŇÉ ÚÁÇŇŐÚËĹ?"
+msgstr "čĎÔÉÔĹ ×ËĚŔŢÉÔŘ ĐĹŢÁÔŘ ÎÁ ĐŇÉÎÔĹŇÁČ, ŐĐĎÍŃÎŐÔŮČ ×ŮŰĹ?\n"
#: ../../printerdrake.pm_.c:239
msgid "Are you sure that you want to set up printing on this machine?\n"
-msgstr ""
+msgstr "÷Ů Ő×ĹŇĹÎŮ, ŢÔĎ ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĐĹŢÁÔŘ ÎÁ ÜÔĎĘ ÍÁŰÉÎĹ?\n"
#: ../../printerdrake.pm_.c:240
#, c-format
@@ -7763,6 +8229,8 @@ msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
+"đňéíĺţáîéĺ: × ÚÁ×ÉÓÉÍĎÓÔÉ ĎÔ ÍĎÄĹĚÉ ĐŇÉÎÔĹŇÁ É ÓÉÓÔĹÍŮ ĐĹŢÁÔÉ ÂŐÄĹÔ "
+"ŐÓÔÁÎĎ×ĚĹÎĎ ÄĎ %d íâ ÄĎĐĎĚÎÉÔĹĚŘÎĎÇĎ ĐŇĎÇŇÁÍÍÎĎÇĎ ĎÂĹÓĐĹŢĹÎÉŃ."
#: ../../printerdrake.pm_.c:269 ../../printerdrake.pm_.c:278
#: ../../printerdrake.pm_.c:3117 ../../printerdrake.pm_.c:3242
@@ -7812,6 +8280,25 @@ 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"
+"äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × íÁÓÔĹŇ ŐÓÔÁÎĎ×ËÉ ĐŇÉÎÔĹŇÁ\n"
+"\n"
+"üÔĎÔ ÍÁÓÔĹŇ ĐĎÍĎÖĹÔ ×ÁÍ ŐÓÔÁÎĎ×ÉÔŘ ×ÁŰÉ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÜÔĎÍŐ\n"
+"ËĎÍĐŘŔÔĹŇŐ, ĐĎÄËĚŔŢĹÎÎŮĹ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ × ÓĹÔŘ ÉĚÉ Ë ŐÄÁĚĹÎÎŮÍ ÍÁŰÉÎÁÍ\n"
+"Windows.\n"
+"\n"
+"ĺÓĚÉ Ő ×ÁÓ ĹÓÔŘ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÜÔĎĘ ÍÁŰÉÎĹ, ĐĎÖÁĚŐĘÓÔÁ,\n"
+"ĐĎÄËĚŔŢÉÔĹ ÉČ Ë ÜÔĎÍŐ ËĎÍĐŘŔÔĹŇŐ É ×ËĚŔŢÉÔĹ ÉČ, ŢÔĎÂŮ ĎÎÉ ÍĎÇĚÉ ÂŮÔŘ\n"
+"Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚĹÎŮ. ÷ÁŰÉ ÓĹÔĹ×ŮĹ ĐŇÉÎÔĹŇŮ É ÎÁ Windows-ÍÁŰÉÎÁČ ÔÁËÖĹ\n"
+"ÄĎĚÖÎŮ ÂŮÔŘ ĐĎÄËĚŔŢĹÎŮ É ×ËĚŔŢĹÎŮ.\n"
+"\n"
+"đĎÍÎÉÔĹ, ŢÔĎ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ÓĹÔĹ×ŮČ ĐŇÉÎÔĹŇĎ× ×ŮĐĎĚÎŃĹÔÓŃ\n"
+"ÚÎÁŢÉÔĹĚŘÎĎ ÄĎĚŘŰĹ, ŢĹÍ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ÔĎĚŘËĎ ĐŇÉÎÔĹŇĎ×,\n"
+"ĐĎÄËĚŔŢĹÎÎŮČ Ë ÜÔĎĘ ÍÁŰÉÎĹ. đĎÜÔĎÍŐ ĎÔËĚŔŢÉÔĹ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ\n"
+"ÓĹÔĹ×ŮČ É/ÉĚÉ Windows-ĐŇÉÎÔĹŇĎ×, ËĎÇÄÁ ĎÎÉ ×ÁÍ ÎĹ ÎŐÖÎŮ.\n"
+"\n"
+"îÁÖÍÉÔĹ \"äÁĚĹĹ\", ËĎÇÄÁ ÂŐÄĹÔĹ ÇĎÔĎ×Ů, É \"ďÔÍĹÎÁ\", ĹÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ\n"
+"ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ Ó×ĎÉ ĐŇÉÎÔĹŇŮ ÓĹĘŢÁÓ."
#: ../../printerdrake.pm_.c:289 ../../printerdrake.pm_.c:306
msgid ""
@@ -7827,6 +8314,18 @@ 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"
+"äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × íÁÓÔĹŇ ŐÓÔÁÎĎ×ËÉ ĐŇÉÎÔĹŇÁ\n"
+"\n"
+"üÔĎÔ ÍÁÓÔĹŇ ĐĎÍĎÖĹÔ ×ÁÍ ŐÓÔÁÎĎ×ÉÔŘ ×ÁŰÉ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÜÔĎÍŐ\n"
+"ËĎÍĐŘŔÔĹŇŐ.\n"
+"\n"
+"ĺÓĚÉ Ő ×ÁÓ ĹÓÔŘ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÜÔĎĘ ÍÁŰÉÎĹ, ĐĎÖÁĚŐĘÓÔÁ,\n"
+"ĐĎÄËĚŔŢÉÔĹ ÉČ Ë ÜÔĎÍŐ ËĎÍĐŘŔÔĹŇŐ É ×ËĚŔŢÉÔĹ ÉČ, ŢÔĎÂŮ ĎÎÉ ÍĎÇĚÉ ÂŮÔŘ\n"
+"Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚĹÎŮ.\n"
+"\n"
+"îÁÖÍÉÔĹ \"äÁĚĹĹ\", ËĎÇÄÁ ÂŐÄĹÔĹ ÇĎÔĎ×Ů, É \"ďÔÍĹÎÁ\", ĹÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ\n"
+"ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ Ó×ĎÉ ĐŇÉÎÔĹŇŮ ÓĹĘŢÁÓ."
#: ../../printerdrake.pm_.c:297
msgid ""
@@ -7847,19 +8346,40 @@ 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"
+"äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × íÁÓÔĹŇ ŐÓÔÁÎĎ×ËÉ ĐŇÉÎÔĹŇÁ\n"
+"\n"
+"üÔĎÔ ÍÁÓÔĹŇ ĐĎÍĎÖĹÔ ×ÁÍ ŐÓÔÁÎĎ×ÉÔŘ ×ÁŰÉ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÜÔĎÍŐ\n"
+"ËĎÍĐŘŔÔĹŇŐ ÉĚÉ ĐĎÄËĚŔŢĹÎÎŮĹ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ × ÓĹÔŘ.\n"
+"\n"
+"ĺÓĚÉ Ő ×ÁÓ ĹÓÔŘ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÜÔĎĘ ÍÁŰÉÎĹ, ĐĎÖÁĚŐĘÓÔÁ,\n"
+"ĐĎÄËĚŔŢÉÔĹ ÉČ Ë ÜÔĎÍŐ ËĎÍĐŘŔÔĹŇŐ É ×ËĚŔŢÉÔĹ ÉČ, ŢÔĎÂŮ ĎÎÉ ÍĎÇĚÉ ÂŮÔŘ\n"
+"Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚĹÎŮ. ÷ÁŰÉ ÓĹÔĹ×ŮĹ ĐŇÉÎÔĹŇŮ ÔÁËÖĹ ÄĎĚÖÎŮ ÂŮÔŘ\n"
+"ĐĎÄËĚŔŢĹÎŮ É ×ËĚŔŢĹÎŮ.\n"
+"\n"
+"đĎÍÎÉÔĹ, ŢÔĎ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ÓĹÔĹ×ŮČ ĐŇÉÎÔĹŇĎ× ×ŮĐĎĚÎŃĹÔÓŃ\n"
+"ÚÎÁŢÉÔĹĚŘÎĎ ÄĎĚŘŰĹ, ŢĹÍ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ÔĎĚŘËĎ ĐŇÉÎÔĹŇĎ×,\n"
+"ĐĎÄËĚŔŢĹÎÎŮČ Ë ÜÔĎĘ ÍÁŰÉÎĹ. đĎÜÔĎÍŐ ĎÔËĚŔŢÉÔĹ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ\n"
+"ÓĹÔĹ×ŮČ ĐŇÉÎÔĹŇĎ×, ËĎÇÄÁ ĎÎÉ ×ÁÍ ÎĹ ÎŐÖÎŮ.\n"
+"\n"
+"îÁÖÍÉÔĹ \"äÁĚĹĹ\", ËĎÇÄÁ ÂŐÄĹÔĹ ÇĎÔĎ×Ů, É \"ďÔÍĹÎÁ\", ĹÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ\n"
+"ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ Ó×ĎÉ ĐŇÉÎÔĹŇŮ ÓĹĘŢÁÓ."
#: ../../printerdrake.pm_.c:315
-#, fuzzy
msgid "Auto-detect printers connected to this machine"
-msgstr "őÄÁĚĹÎÎŮĘ ĐŇÉÎÔĹŇ"
+msgstr "á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚÉÔŘ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÜÔĎĘ ÍÁŰÉÎĹ"
#: ../../printerdrake.pm_.c:318
msgid "Auto-detect printers connected directly to the local network"
msgstr ""
+"á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚÉÔŘ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ Ë ĚĎËÁĚŘÎĎĘ "
+"ÓĹÔÉ"
#: ../../printerdrake.pm_.c:321
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
+"á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚÉÔŘ ĐŇÉÎÔĹŇŮ, ĐĎÄËĚŔŢĹÎÎŮĹ Ë ÍÁŰÉÎÁÍ Ó ŇÁÂĎÔÁŔÝĹĘ "
+"Microsoft Windows"
#: ../../printerdrake.pm_.c:348 ../../printerdrake.pm_.c:562
#: ../../printerdrake.pm_.c:587
@@ -7892,19 +8412,18 @@ msgstr ""
#: ../../printerdrake.pm_.c:386 ../../printerdrake.pm_.c:577
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Printer auto-detection"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
+msgstr "á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ĐŇÉÎÔĹŇÁ"
#: ../../printerdrake.pm_.c:408
#, c-format
msgid ", network printer \"%s\", port %s"
-msgstr ""
+msgstr ", ÓĹÔĹ×ĎĘ ĐŇÉÎÔĹŇ \"%s\", ĐĎŇÔ %s"
#: ../../printerdrake.pm_.c:410
-#, fuzzy, c-format
+#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+msgstr ", ĐŇÉÎÔĹŇ \"%s\" ÎÁ ÓĹŇ×ĹŇĹ SMB/Windows \"%s\""
#: ../../printerdrake.pm_.c:416
#, c-format
@@ -7924,14 +8443,14 @@ msgid "USB printer \\/*%s"
msgstr "đŇÉÎÔĹŇ USB \\/*%s"
#: ../../printerdrake.pm_.c:424
-#, fuzzy, c-format
+#, c-format
msgid "Network printer \"%s\", port %s"
-msgstr "óĹÔĹ×ĎĘ ĐŇÉÎÔĹŇ (ÓĎËĹÔ)"
+msgstr "óĹÔĹ×ĎĘ ĐŇÉÎÔĹŇ \"%s\", ĐĎŇÔ %s"
#: ../../printerdrake.pm_.c:426
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
-msgstr "SMB/Windows 95/98/NT"
+msgstr "đŇÉÎÔĹŇ \"%s\" ÎÁ ÓĹŇ×ĹŇĹ SMB/Windows \"%s\""
#: ../../printerdrake.pm_.c:563
msgid ""
@@ -7950,14 +8469,12 @@ msgid "You must enter a device or file name!"
msgstr "÷Ů ÄĎĚÖÎŮ ××ĹÓÔÉ ŐÓÔŇĎĘÓÔ×Ď ÉĚÉ ÉÍŃ ĆÁĘĚÁ! "
#: ../../printerdrake.pm_.c:578
-#, fuzzy
msgid "No printer found!"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
+msgstr "đŇÉÎÔĹŇ ÎĹ ÎÁĘÄĹÎ!"
#: ../../printerdrake.pm_.c:588
-#, fuzzy
msgid "Available printers"
-msgstr "ěĎËÁĚŘÎŮĘ ĐŇÉÎÔĹŇ"
+msgstr "äĎÓÔŐĐÎŮĹ ĐŇÉÎÔĹŇŮ"
#: ../../printerdrake.pm_.c:592
msgid ""
@@ -7972,6 +8489,9 @@ 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:595
msgid ""
@@ -8056,24 +8576,23 @@ msgid "Remote printer name missing!"
msgstr "ďÔÓŐÔÓÔ×ŐĹÔ ÉÍŃ ŐÄÁĚĹÎÎĎÇĎ ĐŇÉÎÔĹŇÁ!"
#: ../../printerdrake.pm_.c:712 ../../printerdrake.pm_.c:1225
-#, fuzzy, c-format
+#, c-format
msgid "Detected model: %s %s"
-msgstr "ÎÁĘÄĹÎĎ %s"
+msgstr "ďÂÎÁŇŐÖĹÎÁ ÍĎÄĹĚŘ: %s %s"
#: ../../printerdrake.pm_.c:790 ../../printerdrake.pm_.c:1030
-#, fuzzy
msgid "Scanning network..."
-msgstr "úÁĐŐÓË ÷ÁŰĹÇĎ ÓĎĹÄÉÎĹÎÉŃ..."
+msgstr "óËÁÎÉŇŐĹÔÓŃ ÓĹÔŘ..."
#: ../../printerdrake.pm_.c:799 ../../printerdrake.pm_.c:820
#, c-format
msgid ", printer \"%s\" on server \"%s\""
-msgstr ""
+msgstr ", ĐŇÉÎÔĹŇ \"%s\" ÎÁ ÓĹŇ×ĹŇĹ \"%s\""
#: ../../printerdrake.pm_.c:802 ../../printerdrake.pm_.c:823
-#, fuzzy, c-format
+#, c-format
msgid "Printer \"%s\" on server \"%s\""
-msgstr "äĹÁËÔÉ×ÉÚÁĂÉŃ ÓĹÔÉ"
+msgstr "đŇÉÎÔĹŇ \"%s\" ÎÁ ÓĹŇ×ĹŇĹ \"%s\""
#: ../../printerdrake.pm_.c:843
msgid "SMB (Windows 9x/NT) Printer Options"
@@ -8097,6 +8616,9 @@ 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:846
msgid "SMB server host"
@@ -8115,9 +8637,8 @@ msgid "Workgroup"
msgstr "ňÁÂĎŢÁŃ ÇŇŐĐĐÁ"
#: ../../printerdrake.pm_.c:853
-#, fuzzy
msgid "Auto-detected"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
+msgstr "ďĐŇĹÄĹĚĹÎ Á×ÔĎÍÁÔÉŢĹÓËÉ"
#: ../../printerdrake.pm_.c:864
msgid "Either the server name or the server's IP must be given!"
@@ -8163,7 +8684,7 @@ msgstr ""
"\n"
"íŮ ŇĹËĎÍĹÎÄŐĹÍ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĎÄÉÎ ÉÚ ÓĚĹÄŐŔÝÉČ ×ÁŇÉÁÎÔĎ× (×Ď ĚŔÂĎÍ ÓĚŐŢÁĹ ×Ů "
"ÄĎĚÖÎŮ ŐÂĹÄÉÔŘÓŃ, ŢÔĎ ÔĎĚŘËĎ ÍÁŰÉÎŮ ÉÚ ×ÁŰĹĘ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ ÉÍĹŔÔ ÄĎÓÔŐĐ Ë "
-"×ÁŰĹÍŐ ÓĹŇ×ĹŇŐ Windows, ÎÁĐŇÉÍĹŇ, ĐĎÓŇĹÄÓÔ×ĎÍ ÂŇÁÎÄÍÁŐÜŇÁ):\n"
+"×ÁŰĹÍŐ ÓĹŇ×ĹŇŐ Windows, ÎÁĐŇÉÍĹŇ, ĐĎÓŇĹÄÓÔ×ĎÍ ĆÁĘĹŇ×ĎĚÁ):\n"
"éÓĐĎĚŘÚŐĘÔĹ ÎÁ Ó×ĎĹÍ ÓĹŇ×ĹŇĹ Windows ŐŢĹÔÎŐŔ ÚÁĐÉÓŘ ÂĹÚ ĐÁŇĎĚŃ, ÔÁËŐŔ ËÁË "
"ŐŢĹÔÎÁŃ ÚÁĐÉÓŘ \"çďóôř\" ÉĚÉ ÓĐĹĂÉÁĚŘÎŐŔ ŐŢĹÔÎŐŔ ÚÁĐÉÓŘ, ĐŇĹÄÎÁÚÎÁŢĹÎÎŐŔ ÄĚŃ "
"ĐĹŢÁÔÉ. îĹ ÓÎÉÍÁĘÔĹ ÚÁÝÉÔŐ ĐÁŇĎĚĹÍ Ó ĚÉŢÎĎĘ ŐŢĹÔÎĎĘ ÚÁĐÉÓÉ ÉĚÉ ŐŢĹÔÎĎĘ "
@@ -8234,12 +8755,12 @@ msgstr "ďÔÓŐÔÓÔ×ŐĹÔ ÉÍŃ ĎŢĹŇĹÄÉ ÚÁÄÁÎÉĘ ÎÁ ĐĹŢÁÔŘ NCP!"
#: ../../printerdrake.pm_.c:1039 ../../printerdrake.pm_.c:1059
#, c-format
msgid ", host \"%s\", port %s"
-msgstr ""
+msgstr ", ČĎÓÔ \"%s\", ĐĎŇÔ %s"
#: ../../printerdrake.pm_.c:1042 ../../printerdrake.pm_.c:1062
#, c-format
msgid "Host \"%s\", port %s"
-msgstr ""
+msgstr "čĎÓÔ \"%s\", ĐĎŇÔ %s"
#: ../../printerdrake.pm_.c:1082
msgid "TCP/Socket Printer Options"
@@ -8250,6 +8771,9 @@ 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 ""
+"÷ŮÂĹŇÉÔĹ ĎÄÉÎ ÉÚ Á×ÔĎÍÁÔÉŢĹÓËÉ ĎĐŇĹÄĹĚĹÎÎŮČ ĐŇÉÎÔĹŇĎ× ÉÚ ÓĐÉÓËÁ ÉĚÉ ××ĹÄÉÔĹ "
+"ÉÍŃ ČĎÓÔÁ ÉĚÉ IP-ÁÄŇĹÓ É ÎĹĎÂŃÚÁÔĹĚŘÎŮĘ ÎĎÍĹŇ ĐĎŇÔÁ (ĐĎ ŐÍĎĚŢÁÎÉŔ ŇÁ×ĹÎ "
+"9100) × ĐĎĚŃČ ÄĚŃ ××ĎÄÁ ÄÁÎÎŮČ."
#: ../../printerdrake.pm_.c:1085
msgid ""
@@ -8258,16 +8782,18 @@ msgid ""
"JetDirect servers the port number is usually 9100, on other servers it can "
"vary. See the manual of your hardware."
msgstr ""
+"ţÔĎÂŮ ĐĹŢÁÔÁÔŘ ÎÁ ĐŇÉÎÔĹŇĹ TCP ÉĚÉ socket, ×ÁÍ ÎĹĎÂČĎÄÉÍĎ ŐËÁÚÁÔŘ ÉÍŃ ČĎÓÔÁ "
+"ÉĚÉ IP-ÁÄŇĹÓ ĐŇÉÎÔĹŇÁ É ÎĹĎÂŃÚÁÔĹĚŘÎŮĘ ÎĎÍĹŇ ĐĎŇÔÁ (ĐĎ ŐÍĎĚŢÁÎÉŔ ŇÁ×ĹÎ "
+"9100). îÁ ÓĹŇ×ĹŇÁČ HP JetDirect ÎĎÍĹŇ ĐĎŇÔÁ ĎÂŮŢÎĎ ŇÁ×ĹÎ 9100, ÎÁ ÄŇŐÇÉČ "
+"ÓĹŇ×ĹŇÁČ ĎÎ ÍĎÖĹÔ ĎÔĚÉŢÁÔŘÓŃ. óÍĎÔŇÉÔĹ ÉÎÓÔŇŐËĂÉŔ Ë Ó×ĎĹÍŐ ĎÂĎŇŐÄĎ×ÁÎÉŔ."
#: ../../printerdrake.pm_.c:1090
-#, fuzzy
msgid "Printer host name or IP missing!"
-msgstr "éÍŃ ÍÁŰÉÎŮ Ó ĐŇÉÎÔĹŇĎÍ"
+msgstr "ďÔÓŐÔÓÔ×ŐĹÔ ÉÍŃ ČĎÓÔÁ ĐŇÉÎÔĹŇÁ ÉĚÉ IP!"
#: ../../printerdrake.pm_.c:1112
-#, fuzzy
msgid "Printer host name or IP"
-msgstr "éÍŃ ÍÁŰÉÎŮ Ó ĐŇÉÎÔĹŇĎÍ"
+msgstr "éÍŃ ČĎÓÔÁ ÍÁŰÉÎŮ ĐŇÉÎÔĹŇÁ ÉĚÉ IP"
#: ../../printerdrake.pm_.c:1160 ../../printerdrake.pm_.c:1162
msgid "Printer Device URI"
@@ -8418,7 +8944,6 @@ msgstr ""
"ÎÁÓÔŇĎĘÔĹ ĹÇĎ ÎÁ ÍÁŰÉÎĹ, Ë ËĎÔĎŇĎĘ ĎÎ ĐĎÄËĚŔŢĹÎ."
#: ../../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."
@@ -8431,18 +8956,18 @@ msgid ""
msgstr ""
"ţÔĎÂŮ ĐĹŢÁÔÁÔŘ ÎÁ Ó×ĎĹÍ Lexmark inkjet É Ó ÜÔĎĘ ËĎÎĆÉÇŐŇÁĂÉĹĘ, ×ÁÍ ÎŐÖÎŮ "
"ÄŇÁĘ×ĹŇŮ ĐŇÉÎÔĹŇÁ inkjet, ĐŇĹÄĎÓÔÁ×ĚŃĹÍŮĹ Lexmark'ĎÍ (http://www.lexmark."
-"com/). éÄÉÔĹ ÎÁ ÓÁĘÔ US É ËĚÉËÎÉÔĹ ÎÁ ËÎĎĐËŐ \"Drivers\". úÁÔĹÍ ×ŮÂĹŇÉÔĹ "
-"Ó×ĎŔ ÍĎÄĹĚŘ, Á ÚÁÔĹÍ ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ \"Linux\". äŇÁĘ×ĹŇŮ ĐĎÓÔÁ×ĚŃŔÔÓŃ × "
-"×ÉÄĹ ĐÁËĹÔĎ× RPM ÉĚÉ ÓËŇÉĐÔĎ× ËĎÍÁÎÄÎĎÇĎ ĐŇĎĂĹÓÓĎŇÁ Ó ÉÎÔĹŇÁËÔÉ×ÎĎĘ "
-"ÇŇÁĆÉŢĹÓËĎĘ ŐÓÔÁÎĎ×ËĎĘ. ÷ÁÍ ÎĹÔ ÎĹĎÂČĎÄÉÍĎÓÔÉ ×ŮĐĎĚÎŃÔŘ ÜÔŐ ÎÁÓÔŇĎĘËŐ "
-"ĐĎÓŇĹÄÓÔ×ĎÍ ÇŇÁĆÉŢĹÓËĎÇĎ ÉÎÔĹŇĆĹĘÓÁ. ďÔÍĹÎÉÔĹ ĹĹ ÓŇÁÚŐ ĐĎÓĚĹ ĚÉĂĹÎÚÉĎÎÎĎÇĎ "
-"ÓĎÇĚÁŰĹÎÉŃ. úÁÔĹÍ ÎÁĐĹŢÁÔÁĘÔĹ ÓÔŇÁÎÉĂŮ ÄĚŃ ŇĹÇŐĚÉŇĎ×ËÉ ĐĹŢÁÔÁŔÝĹĘ ÇĎĚĎ×ËÉ "
-"ĐĎÓŇĹÄÓÔ×ĎÍ \"lexmarkmaintain\" É ĎÔßŔÓÔÉŇŐĘÔĹ ĐĎĚĎÖĹÎÉĹ ÇĎĚĎ×ËÉ ĐŇÉ ĐĎÍĎÝÉ "
-"ÜÔĎĘ ĐŇĎÇŇÁÍÍŮ."
+"com/). ëĚÉËÎÉÔĹ ÎÁ ÓÓŮĚËŐ \"Drivers\". úÁÔĹÍ ×ŮÂĹŇÉÔĹ Ó×ĎŔ ÍĎÄĹĚŘ, Á ÚÁÔĹÍ "
+"ĎĐĹŇÁĂÉĎÎÎŐŔ ÓÉÓÔĹÍŐ \"Linux\". äŇÁĘ×ĹŇŮ ĐĎÓÔÁ×ĚŃŔÔÓŃ × ×ÉÄĹ ĐÁËĹÔĎ× RPM ÉĚÉ "
+"ÓËŇÉĐÔĎ× ËĎÍÁÎÄÎĎÇĎ ĐŇĎĂĹÓÓĎŇÁ Ó ÉÎÔĹŇÁËÔÉ×ÎĎĘ ÇŇÁĆÉŢĹÓËĎĘ ŐÓÔÁÎĎ×ËĎĘ. ÷ÁÍ "
+"ÎĹÔ ÎĹĎÂČĎÄÉÍĎÓÔÉ ×ŮĐĎĚÎŃÔŘ ÜÔŐ ÎÁÓÔŇĎĘËŐ ĐĎÓŇĹÄÓÔ×ĎÍ ÇŇÁĆÉŢĹÓËĎÇĎ "
+"ÉÎÔĹŇĆĹĘÓÁ. ďÔÍĹÎÉÔĹ ĹĹ ÓŇÁÚŐ ĐĎÓĚĹ ĚÉĂĹÎÚÉĎÎÎĎÇĎ ÓĎÇĚÁŰĹÎÉŃ. úÁÔĹÍ "
+"ÎÁĐĹŢÁÔÁĘÔĹ ÓÔŇÁÎÉĂŮ ÄĚŃ ŇĹÇŐĚÉŇĎ×ËÉ ĐĹŢÁÔÁŔÝĹĘ ÇĎĚĎ×ËÉ ĐĎÓŇĹÄÓÔ×ĎÍ "
+"\"lexmarkmaintain\" É ĎÔßŔÓÔÉŇŐĘÔĹ ĐĎĚĎÖĹÎÉĹ ÇĎĚĎ×ËÉ ĐŇÉ ĐĎÍĎÝÉ ÜÔĎĘ "
+"ĐŇĎÇŇÁÍÍŮ."
#: ../../printerdrake.pm_.c:1816
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
-msgstr ""
+msgstr "ěÁÚĹŇÎŮĘ ĐŇÉÎÔĹŇ GDI, ÉÓĐĎĚŘÚŐŔÝÉĘ ĆĎŇÍÁÔ Zenographics ZJ-Stream"
#: ../../printerdrake.pm_.c:1817
msgid ""
@@ -8466,6 +8991,25 @@ msgid ""
"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 ""
+"÷ÁŰ ĐŇÉÎÔĹŇ ĐŇÉÎÁÄĚĹÖÉÔ Ë ÇŇŐĐĐĹ ĚÁÚĹŇÎŮČ ĐŇÉÎÔĹŇĎ× GDI (win-ĐŇÉÎÔĹŇŮ), "
+"ĐŇĎÄÁ×ÁĹÍŮČ ŇÁÚĚÉŢÎŮÍÉ ĐŇĎÉÚ×ĎÄÉÔĹĚŃÍÉ, ËĎÔĎŇŮĹ ÉÓĐĎĚŘÚŐŔÔ ÄĚŃ ÄÁÎÎŮČ, "
+"ĎĐŇÁ×ĚŃĹÍŮČ ÎÁ ĐĹŢÁÔŘ, ŇÁÓÔŇĎ×ŮĘ ĆĎŇÍÁÔ Zenographics ZJ-stream. äŇÁĘ×ĹŇ ÄĚŃ "
+"ÜÔĎÇĎ ĐŇÉÎÔĹŇÁ ×ÓĹ ĹÝĹ ÎÁČĎÄÉÔÓŃ ÎÁ ŇÁÎÎĹĘ ÓÔÁÄÉÉ ŇÁÚŇÁÂĎÔËÉ, É ĐĎÜÔĎÍŐ, "
+"×ĎÚÍĎÖÎĎ, ĎÎ ÎĹ ×ÓĹÇÄÁ ŇÁÂĎÔÁĹÔ ËĎŇŇĹËÔÎĎ. ëŇĎÍĹ ÔĎÇĎ, ×ĎÚÍĎÖÎĎ, ŢÔĎ ÜÔÉ "
+"ĐŇÉÎÔĹŇŮ ÂŐÄŐÔ ŇÁÂĎÔÁÔŘ ÔĎĚŘËĎ, ĹÓĚÉ ×Ů ×ŮÂĹŇĹÔĹ ŇÁÚÍĹŇ ÂŐÍÁÇÉ á4.\n"
+"\n"
+"÷ ÎĹËĎÔĎŇŮĹ ÉÚ ÜÔÉČ ĐŇÉÎÔĹŇĎ×, ÔÁËÉĹ ËÁË HP LaserJet 1000, ÄĚŃ ËĎÔĎŇŮČ "
+"ÉÚÎÁŢÁĚŘÎĎ ÂŮĚ ÓĎÚÄÁÎ ÜÔĎÔ ÄŇÁĘ×ĹŇ, ĐĎÓĚĹ ×ËĚŔŢĹÎÉŃ ÎĹĎÂČĎÄÉÍĎ ÚÁÇŇŐÚÉÔŘ "
+"firmware. ÷ ÓĚŐŢÁĹ Ó HP LaserJet 1000 ×Ů ÄĎĚÖÎŮ ÎÁĘÔÉ ËĎÍĐÁËÔ Ó ÄŇÁĘ×ĹŇĎÍ "
+"Windows ÄĚŃ ÜÔĎÇĎ ĐŇÉÎÔĹŇÁ ÉĚÉ ĆÁĘĚ \"sihp1000.img\" ÎÁ Ó×ĎĹÍ ŇÁÚÄĹĚĹ "
+"Windows É ÚÁÇŇŐÚÉÔŘ ĹÇĎ × ĐŇÉÎÔĹŇ ĐŇÉ ĐĎÍĎÝÉ ĎÄÎĎĘ ÉÚ ÜÔÉČ ËĎÍÁÎÄ:\n"
+"\n"
+" lpr -o raw sihp1000.img\n"
+" cat sihp1000.img > /dev/usb/lp0\n"
+"\n"
+"đĹŇ×ÁŃ ËĎÍÁÎÄÁ ÍĎÖĹÔ ÂŮÔŘ ×ŮĐĎĚÎĹÎÁ ĚŔÂŮÍ ĎÂŮŢÎŮÍ ĐĎĚŘÚĎ×ÁÔĹĚĹÍ, ×ÔĎŇÁŃ "
+"ÄĎĚÖÎÁ ÂŮÔŘ ×ŮĐĎĚÎĹÎÁ root'ĎÍ. đĎÓĚĹ ÔĎÇĎ, ËÁË ÜÔĎ ÂŐÄĹÔ ×ŮĐĎĚÎĹÎĎ, ×Ů "
+"ÓÍĎÖĹÔĹ ÎĎŇÍÁĚŘÎĎ ĐĹŢÁÔÁÔŘ.\n"
#: ../../printerdrake.pm_.c:2040
msgid ""
@@ -8731,7 +9275,7 @@ msgstr "đĹŢÁÔŘ ÎÁ ĐŇÉÎÔĹŇĹ \"%s\""
#: ../../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:1558 ../../standalone/drakbackup_.c:4206
+#: ../../standalone/drakbackup_.c:1562 ../../standalone/drakbackup_.c:4210
#: ../../standalone/drakbug_.c:130 ../../standalone/drakfont_.c:705
#: ../../standalone/drakfont_.c:1014
msgid "Close"
@@ -8754,6 +9298,16 @@ msgid ""
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
+"÷ÁŰĹ ÍÎĎÇĎĆŐÎËĂÉĎÎÁĚŘÎĎĹ ŐÓÔŇĎĘÓÔ×Ď ÂŮĚĎ Á×ÔĎÍÁÔÉŢĹÓËÉ ÎÁÓÔŇĎĹÎĎ ÄĚŃ "
+"ÓËÁÎÉŇĎ×ÁÎÉŃ. ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÓËÁÎÉŇĎ×ÁÔŘ ĐŇÉ ĐĎÍĎÝÉ \"scanimage"
+"\" (\"scanimage -d hp:%s\", ŢÔĎÂŮ ŐËÁÚÁÔŘ ÓËÁÎĹŇ, ĹÓĚÉ Ő ×ÁÓ ÉČ ÂĎĚŘŰĹ "
+"ĎÄÎĎÇĎ) ÉÚ ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ ÉĚÉ ŢĹŇĹÚ ÇŇÁĆÉŢĹÓËÉĹ ÉÎÔĹŇĆĹĘÓŮ \"xscanimage\" "
+"ÉĚÉ \"xsane\". ĺÓĚÉ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ GIMP, ×Ů ÔÁËÖĹ ÍĎÖĹÔĹ ÓËÁÎÉŇĎ×ÁÔŘ, ×ŮÂŇÁ× "
+"ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĘ ĐŐÎËÔ × ÍĹÎŔ \"ćÁĘĚ\"/\"éÍĐĎŇÔ\". úÁĐŐÓÔÉÔĹ ÔÁËÖĹ × "
+"ËĎÍÁÎÄÎĎĘ ÓÔŇĎËĹ \"man scanimage\", ŢÔĎÂŮ ĐĎĚŐŢÉÔŘ ÄĎĐĎĚÎÉÔĹĚŘÎŐŔ "
+"ÉÎĆĎŇÍÁĂÉŔ.\n"
+"\n"
+"îĹ ÉÓĐĎĚŘÚŐĘÔĹ \"scannerdrake\" ÄĚŃ ÜÔĎÇĎ ŐÓÔŇĎĘÓÔ×Á!"
#: ../../printerdrake.pm_.c:2394
msgid ""
@@ -8767,6 +9321,16 @@ msgid ""
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
+"÷ÁŰ ĐŇÉÎÔĹŇ ÂŮĚ Á×ÔĎÍÁÔÉŢĹÓËÉ ÎÁÓÔŇĎĹÎ, ŢÔĎÂŮ ĎÂĹÓĐĹŢÉÔŘ ×ÁÍ ÄĎÓÔŐĐ Ë ÄÉÓËÁÍ "
+"ĆĎÔĎËÁŇÔŮ ÓĎ Ó×ĎĹÇĎ đë. ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ĐĎĚŐŢÉÔŘ ÄĎÓÔŐĐ Ë Ó×ĎÉÍ ĆĎÔĎËÁŇÔÁÍ, "
+"ÉÓĐĎĚŘÚŐŃ ÇŇÁĆÉŢĹÓËŐŔ ĐŇĎÇŇÁÍÍŐ \"MtoolsFM\" (ÍĹÎŔ: \"đŇÉĚĎÖĹÎÉŃ\" -> "
+"\"ćÁĘĚĎ×ŮĹ ŐÔÉĚÉÔŮ\" -> \"ćÁĘĚĎ×ŮĘ ÍĹÎĹÄÖĹŇ Mtools\") ÉĚÉ ŐÔÉĚÉÔŮ ÄĚŃ "
+"ËĎÍÁÎÄÎĎĘ ÓÔŇĎËÉ \"mtools\" (××ĹÄÉÔĹ × ËĎÍÁÎÄÎĎĘ ÓÔŇĎËĹ \"man mtools\" ÄĚŃ "
+"ĐĎĚŐŢĹÎÉŃ ÄĎĐĎĚÎÉÔĹĚŘÎĎĘ ÉÎĆĎŇÍÁĂÉÉ). ÷Ů ÎÁĘÄĹÔĹ ĆÁĘĚĎ×ŐŔ ÓÉÓÔĹÍŐ ËÁŇÔŮ ĐĎÄ "
+"ÂŐË×ĎĘ \"p:\" ÉĚÉ ĐĎÄ ÓĚĹÄŐŔÝÉÍÉ ÂŐË×ÁÍÉ ÄÉÓËÁ, ĹÓĚÉ Ő ×ÁÓ ĹÓÔŘ ÂĎĚĹĹ, ŢĹÍ "
+"ĎÄÉÎ ĐŇÉÎÔĹŇ HP Ó ÄÉÓËÁÍÉ ĆĎÔĎËÁŇÔŮ. ÷ \"MtoolsFM\" ×Ů ÍĎÖĹÔĹ ĐĹŇĹËĚŔŢÁÔŘÓŃ "
+"ÍĹÖÄŐ ÉÍĹÎÁÍÉ ÄÉÓËĎ× × ĐĎĚĹ, ŇÁÓĐĎĚĎÖĹÎÎĎÍ × ĐŇÁ×ĎÍ ×ĹŇČÎĹÍ ŐÇĚŐ ÓĐÉÓËÁ "
+"ĆÁĘĚĎ×."
#: ../../printerdrake.pm_.c:2416 ../../printerdrake.pm_.c:2875
#: ../../printerdrake.pm_.c:3170
@@ -8776,7 +9340,7 @@ msgstr "ţÉÔÁĹÔÓŃ ÂÁÚÁ ÄÁÎÎŮČ ĐŇÉÎÔĹŇĎ×..."
#: ../../printerdrake.pm_.c:2436 ../../printerdrake.pm_.c:2464
#: ../../printerdrake.pm_.c:2499
msgid "Transfer printer configuration"
-msgstr "óËĎĐÉŇĎ×ÁÔŘ ËĎÎĆÉÇŐŇÁĂÉŔ ĐŇÉÎÔĹŇÁ"
+msgstr "đĹŇĹÄÁÔŘ ËĎÎĆÉÇŐŇÁĂÉŔ ĐŇÉÎÔĹŇÁ"
#: ../../printerdrake.pm_.c:2437
#, c-format
@@ -8787,8 +9351,8 @@ msgid ""
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
-"÷Ů ÍĎÖĹÔĹ ĐĹŇĹÎĹÓÔÉ ËĎÎĆÉÇŐŇÁĂÉŔ ĐŇÉÎÔĹŇÁ, ÓĎÂŇÁÎÎŐŔ ÄĚŃ ÓĐŐĚĹŇÁ, %s ÎÁ %s - "
-"×ÁŰ ÔĹËŐÝÉĘ ÓĐŐĚĹŇ. âŐÄŐÔ ĐĹŇĹÄÁÎŮ ×ÓĹ ÄÁÎÎŮĹ ËĎÎĆÉÇŐŇÁĂÉÉ (ÉÍŃ ĐŇÉÎÔĹŇÁ, "
+"÷Ů ÍĎÖĹÔĹ ÓËĎĐÉŇĎ×ÁÔŘ ËĎÎĆÉÇŐŇÁĂÉŔ ĐŇÉÎÔĹŇÁ, ÓĎÂŇÁÎÎŐŔ ÄĚŃ ÓĐŐĚĹŇÁ, %s ÎÁ %s "
+"- ×ÁŰ ÔĹËŐÝÉĘ ÓĐŐĚĹŇ. âŐÄŐÔ ĐĹŇĹÄÁÎŮ ×ÓĹ ÄÁÎÎŮĹ ËĎÎĆÉÇŐŇÁĂÉÉ (ÉÍŃ ĐŇÉÎÔĹŇÁ, "
"ĎĐÉÓÁÎÉĹ, ŇÁÓĐĎĚĎÖĹÎÉĹ, ÔÉĐ ĐĎÄËĚŔŢĹÎÉŃ É ÎÁÓÔŇĎĘËÉ ĐĎ ŐÍĎĚŢÁÎÉŔ), ÎĎ "
"ÚÁÄÁÎÉŃ ĐĹŇĹÎĹÓĹÎŮ ÎĹ ÂŐÄŐÔ.\n"
"îĹ ×ÓĹ ĎŢĹŇĹÄÉ ÚÁÄÁÎÉĘ ÎÁ ĐĹŢÁÔŘ ÍĎÇŐÔ ÂŮÔŘ ĐĹŇĹÎĹÓĹÎŮ ĐĎ ÓĚĹÄŐŔÝÉÍ "
@@ -8879,6 +9443,7 @@ msgstr ""
msgid "New printer name"
msgstr "îĎ×ĎĹ ÉÍŃ ĐŇÉÎÔĹŇÁ"
+# ../../printerdrake.pm_.c:2489 #, c-format
#: ../../printerdrake.pm_.c:2489
#, c-format
msgid "Transferring %s..."
@@ -9060,9 +9625,8 @@ msgid "Printer options"
msgstr "đÁŇÁÍĹÔŇŮ ĐŇÉÎÔĹŇÁ"
#: ../../printerdrake.pm_.c:2989
-#, fuzzy
msgid "Preparing Printerdrake..."
-msgstr "ţÔĹÎÉĹ ÂÁÚŮ ÄŇÁĘ×ĹŇĎ× CUPS..."
+msgstr "đĎÄÇĎÔÁ×ĚÉ×ÁĹÔÓŃ Printerdrake..."
#: ../../printerdrake.pm_.c:3007 ../../printerdrake.pm_.c:3580
msgid "Configuring applications..."
@@ -9077,15 +9641,16 @@ msgid "Printing system: "
msgstr "óÉÓÔĹÍÁ ĐĹŢÁÔÉ: "
#: ../../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/GIMP."
msgstr ""
-"éÍĹŔÔÓŃ ÓĚĹÄŐŔÝÉĹ ĎŢĹŇĹÄÉ ĐĹŢÁÔÉ.\n"
-"÷Ů ÍĎÖĹÔĹ ÄĎÂÁ×ÉÔŘ ÎĎ×ŮĹ ÉĚÉ ÉÚÍĹÎÉÔŘ ÓŐÝĹÓÔ×ŐŔÝÉĹ."
+"îÁÓÔŇĎĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐŇÉÎÔĹŇŮ. ýĹĚËÎÉÔĹ Ä×ÁÖÄŮ ÎÁ ĐŇÉÎÔĹŇĹ, ŢÔĎÂŮ ÉÚÍĹÎÉÔŘ "
+"ĹÇĎ ÎÁÓÔŇĎĘËÉ; ÓÄĹĚÁÔŘ ĹÇĎ ÉÓĐĎĚŘÚŐĹÍŮÍ ĐĎ ŐÍĎĚŢÁÎÉŔ; ĐŇĎÓÍĎÔŇĹÔŘ ÉÎĆĎŇÍÁĂÉŔ "
+"Ď ÎĹÍ; ÉĚÉ ÓÄĹĚÁÔŘ ĐŇÉÎÔĹŇ ÎÁ ŐÄÁĚĹÎÎĎÍ ÓĹŇ×ĹŇĹ CUPS ÄĎÓÔŐĐÎŮÍ ÄĚŃ Star "
+"Office/OpenOffice.org/GIMP."
#: ../../printerdrake.pm_.c:3100
msgid ""
@@ -9094,7 +9659,8 @@ msgid ""
"it."
msgstr ""
"îÁÓÔŇĎĹÎŮ ÓĚĹÄŐŔÝÉĹ ĐŇÉÎÔĹŇŮ. ä×ÁÖÄŮ ÝĹĚËÎÉÔĹ ÎÁ ĐŇÉÎÔĹŇĹ, ŢÔĎÂŮ ÉÚÍĹÎÉÔŘ "
-"ĹÇĎ ÎÁÓÔŇĎĘËÉ, ÓÄĹĚÁÔŘ ĹÇĎ ĐŇÉÎÔĹŇĎÍ ĐĎ ŐÍĎĚŢÁÎÉŔ, Ő×ÉÄĹÔŘ ÉÎĆĎŇÍÁĂÉŔ Ď ÎĹÍ"
+"ĹÇĎ ÎÁÓÔŇĎĘËÉ; ÓÄĹĚÁÔŘ ĹÇĎ ĐŇÉÎÔĹŇĎÍ ĐĎ ŐÍĎĚŢÁÎÉŔ; ĐŇĎÓÍĎÔŇĹÔŘ ÉÎĆĎŇÍÁĂÉŔ Ď "
+"ÎĹÍ"
#: ../../printerdrake.pm_.c:3127
msgid "Refresh printer list (to display all available remote CUPS printers)"
@@ -9153,11 +9719,11 @@ msgstr "óÄĹĚÁÔŘ ÜÔĎÔ ĐŇÉÎÔĹŇ ÉÓĐĎĚŘÚŐĹÍŮÍ ĐĎ ŐÍĎĚŢÁÎÉŔ"
#: ../../printerdrake.pm_.c:3421 ../../printerdrake.pm_.c:3499
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "äĎÂÁ×ÉÔŘ ÜÔĎÔ ĐŇÉÎÔĹŇ × Star Office/OpenOffice.org/GIMP"
#: ../../printerdrake.pm_.c:3422 ../../printerdrake.pm_.c:3508
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "őÄÁĚÉÔŘ ÜÔĎÔ ĐŇÉÎÔĹŇ ÉÚ Star Office/OpenOffice.org/GIMP"
#: ../../printerdrake.pm_.c:3423 ../../printerdrake.pm_.c:3517
msgid "Print test pages"
@@ -9187,35 +9753,39 @@ msgstr "đŇÉÎÔĹŇ \"%s\" ÓÄĹĚÁÎ ÔĹĐĹŇŘ ÉÓĐĎĚŘÚŐĹÍŮÍ ĐĎ ŐÍĎĚŢÁÎÉŔ."
#: ../../printerdrake.pm_.c:3502 ../../printerdrake.pm_.c:3505
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "äĎÂÁ×ĚŃĹÔÓŃ ĐŇÉÎÔĹŇ × Star Office/OpenOffice.org/GIMP"
#: ../../printerdrake.pm_.c:3503
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
-msgstr ""
+msgstr "đŇÉÎÔĹŇ \"%s\" ÂŮĚ ŐÓĐĹŰÎĎ ÄĎÂÁ×ĚĹÎ × Star Office/OpenOffice.org/GIMP."
#: ../../printerdrake.pm_.c:3506
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
+"äĎÂÁ×ĚĹÎÉĹ ĐŇÉÎÔĹŇÁ \"%s\" × Star Office/OpenOffice.org/GIMP ÚÁ×ĹŇŰÉĚĎÓŘ "
+"ÎĹŐÄÁŢĹĘ."
#: ../../printerdrake.pm_.c:3511 ../../printerdrake.pm_.c:3514
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
-msgstr ""
+msgstr "őÄÁĚŃĹÔÓŃ ĐŇÉÎÔĹŇ ÉÚ Star Office/OpenOffice.org/GIMP"
#: ../../printerdrake.pm_.c:3512
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
-msgstr ""
+msgstr "đŇÉÎÔĹŇ \"%s\" ÂŮĚ ŐÓĐĹŰÎĎ ŐÄÁĚĹÎ ÉÚ Star Office/OpenOffice.org/GIMP."
#: ../../printerdrake.pm_.c:3515
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
+"őÄÁĚĹÎÉĹ ĐŇÉÎÔĹŇÁ \"%s\" ÉÚ Star Office/OpenOffice.org/GIMP ÚÁ×ĹŇŰÉĚĎÓŘ "
+"ÎĹŐÄÁŢĹĘ."
#: ../../printerdrake.pm_.c:3523
#, c-format
@@ -9276,11 +9846,6 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ÚÁĐĎĚÎÉÔĹ ĐĎĚŃ ÉÎĆĎŇÍÁĂÉĹĘ Ď ftp-ĐŇĎËÓÉ\n"
"ďÓÔÁ×ŘÔĹ ÉČ ĐŐÓÔŮÍÉ, ĹÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ftp-ĐŇĎËÓÉ"
-#: ../../proxy.pm_.c:65
-#, fuzzy
-msgid "Url should begin with 'ftp:' or 'http:'"
-msgstr "Proxy ÄĎĚÖÎĎ ÂŮÔŘ http://..."
-
#: ../../proxy.pm_.c:79
msgid ""
"Please enter proxy login and password, if any.\n"
@@ -9328,6 +9893,40 @@ msgstr "mkraid ÚÁ×ĹŇŰÉĚÓŃ ÎĹŐÄÁŢĹĘ (ÍĎÖĹÔ ÂŮÔŘ, ĎÔÓŐÔÓÔ×ŐŔÔ raidtools?)"
msgid "Not enough partitions for RAID level %d\n"
msgstr "îĹÄĎÓÔÁÔĎŢÎĎ ŇÁÚÄĹĚĎ× ÄĚŃ RAID ŐŇĎ×ÎŃ %d\n"
+#: ../../security/main.pm_.c:66
+msgid "Security Level:"
+msgstr "őŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ:"
+
+#: ../../security/main.pm_.c:74
+msgid "Security Alerts:"
+msgstr "đŇĹÄŐĐŇĹÖÄĹÎÉŃ Ď ÂĹÚĎĐÁÓÎĎÓÔÉ:"
+
+#: ../../security/main.pm_.c:83
+msgid "Security Administrator:"
+msgstr "áÄÍÉÎÉÓÔŇÁÔĎŇ ĐĎ ÂĹÚĎĐÁÓÎĎÓÔÉ:"
+
+#: ../../security/main.pm_.c:114 ../../security/main.pm_.c:150
+#, c-format
+msgid " (default: %s)"
+msgstr " (đĎ ŐÍĎĚŢÁÎÉŔ: %s)"
+
+#: ../../security/main.pm_.c:118 ../../security/main.pm_.c:154
+#: ../../security/main.pm_.c:179
+msgid ""
+"The following options can be set to customize your\n"
+"system security. If you need explanations, click on Help.\n"
+msgstr ""
+"óĚĹÄŐŔÝÉĹ ĐÁŇÁÍĹÔŇŮ ÍĎÇŐÔ ÂŮÔŘ ŐÓÔÁÎĎ×ĚĹÎŮ, ŢÔĎÂŮ ×ŮÂĎŇĎŢÎĎ ÎÁÓÔŇĎÉÔŘ\n"
+"ÂĹÚĎĐÁÓÎĎÓÔŘ ×ÁŰĹĘ ÓÉÓÔĹÍŮ. ĺÓĚÉ ×ÁÍ ÎŐÖÎŮ ĐĎŃÓÎĹÎÉŃ, ÎÁÖÍÉÔĹ ÎÁ óĐŇÁ×ËŐ.\n"
+
+#: ../../security/main.pm_.c:256
+msgid "Please wait, setting security level..."
+msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ, ÎÁÓÔŇÁÉ×ÁĹÔÓŃ ŐŇĎ×ĹÎŘ ÂĹÚĎĐÁÓÎĎÓÔÉ..."
+
+#: ../../security/main.pm_.c:262
+msgid "Please wait, setting security options..."
+msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ, ÎÁÓÔŇÁÉ×ÁŔÔÓŃ ĐÁŇÁÍĹÔŇŮ ÂĹÚĎĐÁÓÎĎÓÔÉ..."
+
#: ../../services.pm_.c:14
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr ""
@@ -9414,7 +10013,7 @@ msgid ""
"up a firewall to protect your machine from network attacks."
msgstr ""
"úÁĐŐÓË ĆÉĚŘÔŇÁĂÉÉ ĐÁËĹÔĎ× ÄĚŃ ŃÄĹŇ Linux ÓĹŇÉÉ 2.2, ŢÔĎÂŮ ŐÓÔÁÎĎ×ÉÔŘ\n"
-"ÂŇÁÎÄÍÁŐÜŇ ÄĚŃ ÚÁÝÉÔŮ Ó×ĎĹĘ ÍÁŰÉÎŮ ĎÔ ÓĹÔĹ×ŮČ ÁÔÁË."
+"ĆÁĘĹŇ×ĎĚ ÄĚŃ ÚÁÝÉÔŮ Ó×ĎĹĘ ÍÁŰÉÎŮ ĎÔ ÓĹÔĹ×ŮČ ÁÔÁË."
#: ../../services.pm_.c:35
msgid ""
@@ -9638,7 +10237,7 @@ msgstr "éÎÔĹŇÎĹÔ"
msgid "File sharing"
msgstr "óĎ×ÍĹÓÔÎĎĹ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ĆÁĘĚĎ×"
-#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1742
+#: ../../services.pm_.c:128 ../../standalone/drakbackup_.c:1746
msgid "System"
msgstr "óÉÓÔĹÍÁ"
@@ -9692,9 +10291,8 @@ msgid "Stop"
msgstr "ďÓÔÁÎĎ×ÉÔŘ"
#: ../../share/advertising/01-thanks.pl_.c:9
-#, fuzzy
msgid "Thank you for choosing Mandrake Linux 9.0"
-msgstr "âĚÁÇĎÄÁŇÉÍ ×ÁÓ ÚÁ ×ŮÂĎŇ Mandrake Linux 8.2"
+msgstr "âĚÁÇĎÄÁŇÉÍ ×ÁÓ ÚÁ ÔĎ, ŢÔĎ ×ŮÂŇÁĚÉ Mandrake Linux 9.0"
#: ../../share/advertising/01-thanks.pl_.c:10
msgid "Welcome to the Open Source world"
@@ -9711,16 +10309,14 @@ msgstr ""
"ŇÁÂĎÔŮ ÇŇŐĐĐŮ ĚŔÄĹĘ ÉÚ ×ÓĹÍÉŇÎĎÇĎ óĎĎÂÝĹÓÔ×Á Linux."
#: ../../share/advertising/02-community.pl_.c:9
-#, fuzzy
msgid "Get involved in the Free Software world"
-msgstr "ďÓÔÁĚŘÎĎĘ ÍÉŇ"
+msgstr "đĎÇŇŐÚÉÔĹÓŘ × ÍÉŇ ďÔËŇŮÔĎÇĎ ĐŇĎÇŇÁÍÍÎĎÇĎ ĎÂĹÓĐĹŢĹÎÉŃ"
#: ../../share/advertising/02-community.pl_.c:10
msgid "Want to know more about the Open Source community?"
-msgstr ""
+msgstr "čĎÔÉÔĹ ŐÚÎÁÔŘ ÂĎĚŘŰĹ Ď ÓĎĎÂÝĹÓÔ×Ĺ ďÔËŇŮÔŮČ ÉÓČĎÄÎŮČ ÔĹËÓÔĎ×?"
#: ../../share/advertising/02-community.pl_.c:11
-#, fuzzy
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
@@ -9731,48 +10327,47 @@ msgstr ""
"\"."
#: ../../share/advertising/03-internet.pl_.c:9
-#, fuzzy
msgid "Get the most from the Internet"
-msgstr "đĎÄÓĎĹÄÉÎÉÔŘÓŃ Ë éÎÔĹŇÎĹÔ"
+msgstr "éÚ×ĚĹËÉÔĹ ÍÁËÓÉÍŐÍ ×ĎÚÍĎÖÎĎÓÔĹĘ ÉÚ éÎÔĹŇÎĹÔÁ"
#: ../../share/advertising/03-internet.pl_.c:10
-#, fuzzy
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"
msgstr ""
-"Mandrake Linux 8.2 ĐŇĹÄĚÁÇÁĹÔ ÎÁÉĚŐŢŰĹĹ ĐŇĎÇŇÁÍÍÎĎĹ ĎÂĹÓĐĹŢĹÎÉĹ ÄĚŃ ÄĎÓÔŐĐÁ "
-"ËĎ ×ÓĹÍŐ, ŢÔĎ ÍĎÖĹÔ ĐŇĹÄĚĎÖÉÔŘ ×ÁÍ éÎÔĹŇÎĹÔ: ÓĹŇĆÉÎÇ ĐĎ ĐÁŐÔÉÎĹ É ĐŇĎÓÍĎÔŇ "
-"ÁÎÉÍÁĂÉÉ ĐŇÉ ĐĎÍĎÝÉ Mozilla É Konqueror, ĎÂÍĹÎ ÜĚĹËÔŇĎÎÎĎĘ ĐĎŢÔĎĘ É "
-"ĎŇÇÁÎÉÚÁĂÉŃ ×ÁŰĹĘ ĚÉŢÎĎĘ ÉÎĆĎŇÍÁĂÉÉ ĐŇÉ ĐĎÍĎÝÉ Evolution É Kmail É ÍÎĎÇĎĹ "
-"ÄŇŐÇĎĹ"
+"Mandrake Linux 9.0 ×ŮÂŇÁĚ ÄĚŃ ×ÁÓ ÎÁÉĚŐŢŰĹĹ ĐŇĎÇŇÁÍÍÎĎĹ ĎÂĹÓĐĹŢĹÎÉĹ. "
+"úÁÎÉÍÁĘÔĹÓŘ ÓĹŇĆÉÎÇĎÍ ĐĎ ĐŇĎÓÔĎŇÁÍ ĐÁŐÔÉÎŮ É ĐŇĎÓÍÁÔŇÉ×ÁĘÔĹ ÁÎÉÍÁĂÉÉ ĐŇÉ "
+"ĐĎÍĎÝÉ Mozilla É Konqueror, ÉĚÉ ŢÉÔÁĘÔĹ Ó×ĎŔ ĐĎŢÔŐ É ŐĐŇÁ×ĚŃĘÔĹ Ó×ĎĹĘ ĚÉŢÎĎĘ "
+"ÉÎĆĎŇÍÁĂÉĹĘ ĐŇÉ ĐĎÍĎÝÉ Evolution É Kmail."
#: ../../share/advertising/04-multimedia.pl_.c:9
msgid "Discover the most up-to-date graphical and multimedia tools!"
-msgstr ""
+msgstr "ďÔËŇĎĘÔĹ ÓÁÍŮĹ ÓĎ×ŇĹÍĹÎÎŮĹ ÇŇÁĆÉŢĹÓËÉĹ É ÍŐĚŘÔÉÍĹÄÉĘÎŮĹ ÉÎÓÔŇŐÍĹÎÔŮ!"
#: ../../share/advertising/04-multimedia.pl_.c:10
msgid "Push multimedia to its limits!"
-msgstr ""
+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"
msgstr ""
+"Mandrake Linux 9.0 ĐĎÚ×ĎĚŃĹÔ ×ÁÍ ÉÓĐĎĚŘÚĎ×ÁÔŘ ÓÁÍĎĹ Ó×ĹÖĹĹ ĐŇĎÇŇÁÍÍÎĎĹ "
+"ĎÂĹÓĐĹŢĹÎÉĹ ÄĚŃ ×ĎÓĐŇĎÉÚ×ĹÄĹÎÉŃ ÁŐÄÉĎĆÁĘĚĎ×, ŇĹÄÁËÔÉŇĎ×ÁÎÉŃ É ŐĐŇÁ×ĚĹÎÉŃ "
+"Ó×ĎÉÍÉ ÉÚĎÂŇÁÖĹÎÉŃÍÉ ÉĚÉ ĆĎÔĎÇŇÁĆÉŃÍÉ É ĐŇĎÓÍĎÔŇÁ ×ÉÄĹĎ"
#: ../../share/advertising/05-games.pl_.c:9
msgid "Games"
msgstr "éÇŇŮ"
#: ../../share/advertising/05-games.pl_.c:10
-#, fuzzy
msgid ""
"Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
-"Mandrake Linux 8.2 ĐŇĹÄĚÁÇÁĹÔ ÎÁÉĚŐŢŰÉĹ ÉÇŇŮ Ó ďÔËŇŮÔŮÍÉ ÉÓČĎÄÎŮÍÉ ÔĹÓÔÁÍÉ - "
+"Mandrake Linux 9.0 ĐŇĹÄĚÁÇÁĹÔ ÎÁÉĚŐŢŰÉĹ ÉÇŇŮ Ó ďÔËŇŮÔŮÍÉ ÉÓČĎÄÎŮÍÉ ÔĹÓÔÁÍÉ - "
"ÁŇËÁÄŮ, ÜËŰĹÎŮ, ËÁŇÔŮ, ÓĐĎŇÔÉ×ÎŮĹ, ÓÔŇÁÔĹÇÉÉ, ..."
#: ../../share/advertising/06-mcc.pl_.c:9 ../../standalone/drakbug_.c:69
@@ -9784,6 +10379,8 @@ msgid ""
"Mandrake Linux 9.0 provides a powerful tool to fully customize and configure "
"your machine"
msgstr ""
+"Mandrake Linux 9.0 ĐŇĹÄĎÓÔÁ×ĚŃĹÔ ÍĎÝÎŮĹ ÉÎÓÔŇŐÍĹÎÔŮ ÄĚŃ ĐĎĚÎĎĘ ÎÁÓÔŇĎĘËÉ É "
+"ÎÁĚÁÄËÉ ×ÁŰĹĘ ÍÁŰÉÎŮ"
#: ../../share/advertising/07-desktop.pl_.c:9
msgid "User interfaces"
@@ -9791,33 +10388,35 @@ msgstr "éÎÔĹŇĆĹĘÓ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
#: ../../share/advertising/07-desktop.pl_.c:10
msgid ""
-"Mandrake Linux 9.0 provides you with 11 user interfaces which can be fully "
+"Mandrake Linux 9.0 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
+"Mandrake Linux 9.0 ĐŇĹÄĎÓÔÁ×ĚŃĹÔ ×ÁÍ 11 ÉÎÔĹŇĆĹĘÓĎ× ĐĎĚŘÚĎ×ÁÔĹĚŃ, ËĎÔĎŇŮĹ "
+"ÍĎÇŐÔ ÂŮÔŘ ĐĎĚÎĎÓÔŘŔ ÉÚÍĹÎĹÎŮ: KDE 3, Gnome 2, WindowMaker, ..."
#: ../../share/advertising/08-development.pl_.c:9
-#, fuzzy
msgid "Development simplified"
-msgstr "ňÁÚŇÁÂĎÔËÁ"
+msgstr "ňÁÚŇÁÂĎÔËÁ ŐĐŇĎÝĹÎÁ"
#: ../../share/advertising/08-development.pl_.c:10
msgid "Mandrake Linux 9.0 is the ultimate development platform"
-msgstr ""
+msgstr "Mandrake Linux 9.0 Ń×ĚŃĹÔÓŃ ŐÎÉËÁĚŘÎĎĘ ĐĚÁÔĆĎŇÍĎĘ ÄĚŃ ŇÁÚŇÁÂĎÔËÉ"
#: ../../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"
msgstr ""
+"éÓĐĎĚŘÚŐĘÔĹ ×ÓŔ ÓÉĚŐ ËĎÍĐÉĚŃÔĎŇÁ GNU gcc 3, Á ÔÁËÖĹ ÎÁÉĚŐŢŰÉĹ ÓŇĹÄŮ "
+"ŇÁÚŇÁÂĎÔËÉ éÓČĎÄÎŮČ ÔĹËÓÔĎ×"
#: ../../share/advertising/09-server.pl_.c:9
msgid "Turn your machine into a reliable server"
-msgstr ""
+msgstr "đŇĹ×ŇÁÔÉÔĹ Ó×ĎŔ ÍÁŰÉÎŐ × ÎÁÄĹÖÎŮĘ ÓĹŇ×ĹŇ"
#: ../../share/advertising/09-server.pl_.c:10
-#, fuzzy
msgid ""
-"Transform your machine into a powerful Linux server in a few clicks of your "
+"Transform your machine into a powerful Linux server with a few clicks of your "
"mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"đŇĹ×ŇÁÔÉÔĹ Ó×ĎŔ ÍÁŰÉÎŐ × ÍĎÝÎŮĘ ÓĹŇ×ĹŇ ×ÓĹÇĎ ĚÉŰŘ ÎĹÓËĎĚŘËÉÍÉ ÝĹĚŢËÁÍÉ ÍŮŰÉ: "
@@ -9826,40 +10425,43 @@ msgstr ""
#: ../../share/advertising/10-mnf.pl_.c:9
msgid "Optimize your security"
-msgstr ""
+msgstr "ďĐÔÉÍÉÚÉŇŐĘÔĹ Ó×ĎŔ ÂĹÚĎĐÁÓÎĎÓÔŘ"
#: ../../share/advertising/10-mnf.pl_.c:10
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
msgstr ""
+"đÁËĹÔ MandrakeSecurity ×ËĚŔŢÁĹÔ × ÓĹÂŃ ĐŇĎÇŇÁÍÍÎŮĘ ĐŇĎÄŐËÔ 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 "
+"This firewall product includes network features that 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 ""
+msgstr "üÔĎÔ ĐŇĎÄŐËÔ ÄĎÓÔŐĐĹÎ ÎÁ ×ĹÂ-ÓÁĘÔĹ MandrakeStore"
#: ../../share/advertising/11-mdkstore.pl_.c:9
msgid "The official MandrakeSoft store"
-msgstr ""
+msgstr "ďĆÉĂÉÁĚŘÎŮĘ ÍÁÇÁÚÉÎ MandrakeSoft"
#: ../../share/advertising/11-mdkstore.pl_.c:10
-#, fuzzy
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
-"other \"goodies\", are available online on our e-store:"
+"other \"goodies,\" are available online on our e-store:"
msgstr ""
"đĎĚÎŮĘ ÄÉÁĐÁÚĎÎ ŇĹŰĹÎÉĘ Linux, Á ÔÁËÖĹ ÓĐĹĂÉÁĚŘÎŮĹ ĐŇĹÄĚĎÖĹÎÉŃ ĐĎ ĐŇĎÄŐËÔÁÍ "
"É 'goodies' ÄĎÓÔŐĐÎŮ × ÎÁŰĹÍ ĎÎĚÁĘÎĎ×ĎÍ ÜĚĹËÔŇĎÎÎĎÍ ÍÁÇÁÚÉÎĹ"
#: ../../share/advertising/12-mdkstore.pl_.c:9
msgid "Strategic partners"
-msgstr ""
+msgstr "óÔŇÁÔĹÇÉŢĹÓËÉĹ ĐÁŇÔÎĹŇŮ"
#: ../../share/advertising/12-mdkstore.pl_.c:10
msgid ""
@@ -9867,20 +10469,25 @@ msgid ""
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
+"MandrakeSoft ÂĎË Ď ÂĎË ŇÁÂĎÔÁĹÔ Ó ŇŃÄĎÍ ËĎÍĐÁÎÉĘ, ĐŇĹÄĚÁÇÁŔÝÉČ "
+"ĐŇĎĆĹÓÓÉĎÎÁĚŘÎŮĹ ŇĹŰĹÎÉŃ, ÓĎ×ÍĹÓÔÉÍŮĹ Ó Mandrake Linux; ÓĐÉÓĎË ÜÔÉČ "
+"ĐÁŇÔÎĹŇĎ× ÄĎÓÔŐĐĹÎ × MandrakeStore"
#: ../../share/advertising/13-mdkcampus.pl_.c:9
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
-msgstr ""
+msgstr "ďÔËŇĎĘÔĹ ŐŢĹÂÎŐŔ ĐŇĎÇŇÁÍÍŐ MandrakeSoft'Á - Linux-Campus"
#: ../../share/advertising/13-mdkcampus.pl_.c:10
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
+"đŇĎÇŇÁÍÍÁ ĎÂŐŢĹÎÉŃ ÂŮĚÁ ÓĎÚÄÁÎÁ ÄĚŃ ŐÄĎ×ĚĹÔ×ĎŇĹÎÉŃ ĐĎÔŇĹÂÎĎÓÔĹĘ "
+"ĐĎĚŘÚĎ×ÁÔĹĚĹĘ É ÜËÓĐĹŇÔĎ× (ÓĹÔĹ×ŮČ É ÓÉÓÔĹÍÎŮČ ÁÄÍÉÎÉÓÔŇÁÔĎŇĎ×)"
#: ../../share/advertising/13-mdkcampus.pl_.c:11
msgid "Certify yourself on Linux"
-msgstr ""
+msgstr "đĎÄÔ×ĹŇÄÉÔĹ Ó×ĎĹ ÚÎÁÎÉĹ Linux"
#: ../../share/advertising/13-mdkcampus.pl_.c:12
msgid ""
@@ -9888,43 +10495,53 @@ msgid ""
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
+"őŢÉÔĹÓŘ ĚÉ × ĎÎĚÁĘÎĹ ÉĚÉ ĐĎÓŇĹÄÓÔ×ĎÍ ÎÁŰĹĘ ÓĹÔÉ ĎÂŐŢÁŔÝÉČ ĐÁŇÔÎĹŇĎ×, "
+"ĐŇĎÇŇÁÍÍÁ Mandrake-Campus ĐĎÄÇĎÔĎ×ÉÔ ×ÁÓ Ë ĎÂÝĹĐŇÉÚÎÁÎÎĎĘ ĐŇĎÇŇÁÍÍĹ "
+"ÓĹŇÔÉĆÉËÁĂÉÉ LPI (×ÓĹÍÉŇÎÁŃ ĐŇĎĆĹÓÓÉĎÎÁĚŘÎÁŃ ÔĹČÎÉŢĹÓËÁŃ ÓĹŇÔÉĆÉËÁĂÉŃ)"
#: ../../share/advertising/14-mdkexpert.pl_.c:9
-#, fuzzy
msgid "Become a MandrakeExpert"
-msgstr "üËÓĐĹŇÔ"
+msgstr "óÔÁÎŘÔĹ ÜËÓĐĹŇÔĎÍ Mandrake"
#: ../../share/advertising/14-mdkexpert.pl_.c:10
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
msgstr ""
+"îÁĘÄÉÔĹ ŇĹŰĹÎÉĹ ÄĚŃ Ó×ĎÉČ ÚÁÄÁŢ ĐŇÉ ĐĎÍĎÝÉ ËĎÍĐĚĹËÓÁ ĎÎĚÁĘÎĎ×ĎĘ ĐĎÄÄĹŇÖËÉ "
+"MandrakeSoft"
#: ../../share/advertising/14-mdkexpert.pl_.c:11
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
-"your knowledge and help your 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 ""
+"đŇÉÓĎĹÄÉÎŃĘÔĹÓŘ Ë ËĎÍÁÎÄÁÍ ĐĎÄÄĹŇÖËÉ MandrakeSoft É óĎĎÂÝĹÓÔ×Ő Linux × "
+"ĎÎĚÁĘÎĹ, ŢÔĎÂŮ ĐĎÄĹĚÉÔŘÓŃ Ó×ĎÉÍÉ ÚÎÁÎÉŃÍÉ É ĐĎÍĎŢŘ ÄŇŐÇÉÍ, ÓÔÁ× ĐŇÉÚÎÁÎÎŮÍ "
+"üËÓĐĹŇÔĎÍ ÎÁ ×ĹÂ-ÓÁĘÔĹ ĎÎĚÁĘÎĎ×ĎĘ ÔĹČÎÉŢĹÓËĎĘ ĐĎÄÄĹŇÖËÉ:"
#: ../../share/advertising/15-mdkexpert-corporate.pl_.c:9
-#, fuzzy
msgid "MandrakeExpert Corporate"
-msgstr "üËÓĐĹŇÔ"
+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 ""
+"÷ÓĹ ÉÎĂÉÄĹÎÔŮ ÂŐÄŐÔ ŇÁÓÓÍĎÔŇĹÎŮ ĎÄÎÉÍ ÉÚ Ë×ÁĚÉĆÉĂÉŇĎ×ÁÎÎŮČ ÔĹČÎÉŢĹÓËÉČ "
+"ÜËÓĐĹŇÔĎ× ÉÚ MandrakeSoft"
#: ../../share/advertising/17-mdkclub.pl_.c:9
msgid "Discover MandrakeClub and Mandrake Corporate Club"
-msgstr ""
+msgstr "ďÔËŇĎĘÔĹ MandrakeClub É ëĎŇĐĎŇÁÔÉ×ÎŮĘ ËĚŐ Mandrake"
#: ../../share/advertising/17-mdkclub.pl_.c:10
msgid ""
@@ -9935,16 +10552,22 @@ msgid ""
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
+"MandrakeClub É ëĎŇĐĎŇÁÔÉ×ÎŮĘ ËĚŐ Mandrake ÂŮĚÉ ÓĎÚÄÁÎŮ ÄĚŃ ÄĹĚĎ×ŮČ É\n"
+"ŢÁÓÔÎŮČ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ Mandrake Linux, ËĎÔĎŇŮĹ ČĎÔŃÔ ÎĹĐĎÓŇĹÄÓÔ×ĹÎÎĎ\n"
+"ĐĎÄÄĹŇÖÁÔŘ Ó×ĎĘ ĚŔÂÉÍŮĘ ÄÉÓÔŇÉÂŐÔÉ× Linux, ĐĎĚŐŢÁŃ ĐŇÉ ÜÔĎÍ ĎÓĎÂŮĹ\n"
+"ĐŇÉ×ÉĚĹÇÉÉ. ĺÓĚÉ ×Ů ÄĎ×ĎĚŘÎŮ ÎÁŰÉÍÉ ĐŇĎÄŐËÔÁÍÉ, ĹÓĚÉ ×ÁŰÁ ËĎÍĐÁÎÉŃ\n"
+"ÉÚ×ĚĹËÁĹÔ ×ŮÇĎÄŐ ÉÚ ÎÁŰÉČ ĐŇĎÄŐËÔĎ× × ÂĎŇŘÂĹ Ó ËĎÎËŐŇĹÎÔÁÍÉ, ĹÓĚÉ ×Ů\n"
+"ČĎÔÉÔĹ ĐĎÄÄĹŇÖÁÔŘ ŇÁÚŇÁÂĎÔËŐ Mandrake Linux, ×ÓÔŐĐÁĘÔĹ × MandrakeClub!"
#: ../../standalone.pm_.c:41
msgid "Installing packages..."
msgstr "őÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ ĐÁËĹÔŮ..."
-#: ../../standalone/XFdrake_.c:145
+#: ../../standalone/XFdrake_.c:147
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮĘÄÉÔĹ ÉÚ ÓÉÓÔĹÍŮ, Á ÚÁÔĹÍ ÉÓĐĎĚŘÚŐĘÔĹ Ctrl-Alt-BackSpace"
-#: ../../standalone/XFdrake_.c:149
+#: ../../standalone/XFdrake_.c:151
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ĎĘÄÉÔĹ ĹÝĹ ŇÁÚ × %s, ŢÔĎÂŮ ĐŇÉÍĹÎÉÔŘ ÉÚÍĹÎĹÎÉŃ"
@@ -9985,16 +10608,6 @@ msgstr "äĎÂÁ×ÉÔŘ/őÄÁĚÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
msgid "Add/Del Clients"
msgstr "äĎÂÁ×ÉÔŘ/őÄÁĚÉÔŘ ËĚÉĹÎÔĎ×"
-#: ../../standalone/drakTermServ_.c:246 ../../standalone/drakbackup_.c:3928
-#: ../../standalone/drakbackup_.c:3961 ../../standalone/drakbackup_.c:3987
-#: ../../standalone/drakbackup_.c:4014 ../../standalone/drakbackup_.c:4041
-#: ../../standalone/drakbackup_.c:4080 ../../standalone/drakbackup_.c:4101
-#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
-#: ../../standalone/drakbackup_.c:4184 ../../standalone/drakbackup_.c:4209
-#: ../../standalone/drakfont_.c:700
-msgid "Help"
-msgstr "óĐŇÁ×ËÁ"
-
#: ../../standalone/drakTermServ_.c:436
msgid "Boot Floppy"
msgstr "úÁÇŇŐÚĎŢÎÁŃ ÄÉÓËĹÔÁ"
@@ -10043,48 +10656,64 @@ msgstr "äĎÂÁ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ -->"
msgid "<-- Del User"
msgstr "<-- őÄÁĚÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../standalone/drakTermServ_.c:703
+#: ../../standalone/drakTermServ_.c:694
+msgid "No net boot images created!"
+msgstr "ďÂŇÁÚŮ ÓĹÔĹ×ŮČ ÚÁÇŇŐÚĎŢÎŮČ ÄÉÓËĎ× ÎĹ ÓĎÚÄÁÎŮ!"
+
+#: ../../standalone/drakTermServ_.c:710
msgid "Add Client -->"
msgstr "äĎÂÁ×ÉÔŘ ËĚÉĹÎÔÁ -->"
-#: ../../standalone/drakTermServ_.c:735
+#: ../../standalone/drakTermServ_.c:742
msgid "<-- Del Client"
msgstr "<-- őÄÁĚÉÔŘ ËĚÉĹÎÔÁ"
-#: ../../standalone/drakTermServ_.c:741
+#: ../../standalone/drakTermServ_.c:748
msgid "dhcpd Config..."
msgstr "îÁÓÔŇÁÉ×ÁĹÔÓŃ dhcpd..."
-#: ../../standalone/drakTermServ_.c:870
+#: ../../standalone/drakTermServ_.c:873
+msgid "dhcpd Server Configuration"
+msgstr "îÁÓÔŇĎĘËÁ ÓĹŇ×ĹŇÁ dhcp"
+
+#: ../../standalone/drakTermServ_.c:874
+msgid ""
+"Most of these values were extracted\n"
+"from your running system. You can modify as needed."
+msgstr ""
+"âĎĚŘŰÉÎÓÔ×Ď ÜÔÉČ ÚÎÁŢĹÎÉĘ ÂŮĚĎ ÉÚ×ĚĹŢĹÎĎ ÉÚ ×ÁŰĹĘ\n"
+"ŇÁÂĎÔÁŔÝĹĘ ÓÉÓÔĹÍŮ. đŇÉ ÎĹĎÂČĎÄÉÍĎÓÔÉ ÉČ ÍĎÖÎĎ ÉÚÍĹÎÉÔŘ."
+
+#: ../../standalone/drakTermServ_.c:875
msgid "Write Config"
msgstr "úÁĐÉÓÁÔŘ ÎÁÓÔŇĎĘËŐ"
-#: ../../standalone/drakTermServ_.c:960
+#: ../../standalone/drakTermServ_.c:965
msgid "Please insert floppy disk:"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ÓÔÁ×ŘÔĹ ÄÉÓËĹÔŐ:"
-#: ../../standalone/drakTermServ_.c:964
+#: ../../standalone/drakTermServ_.c:969
msgid "Couldn't access the floppy!"
msgstr "îĹ×ĎÚÍĎÖÎĎ ĐĎĚŐŢÉÔŘ ÄĎÓÔŐĐ Ë ÄÉÓËĹÔĹ!"
-#: ../../standalone/drakTermServ_.c:966
+#: ../../standalone/drakTermServ_.c:971
msgid "Floppy can be removed now"
msgstr "ôĹĐĹŇŘ ÄÉÓËĹÔÁ ÍĎÖĹÔ ÂŮÔŘ ÉÚ×ĚĹŢĹÎÁ"
-#: ../../standalone/drakTermServ_.c:969
+#: ../../standalone/drakTermServ_.c:974
msgid "No floppy drive available!"
msgstr "îĹ ÄĎÓÔŐĐĹÎ ÎÉ ĎÄÉÎ ÄÉÓËĎ×ĎÄ!"
-#: ../../standalone/drakTermServ_.c:978
+#: ../../standalone/drakTermServ_.c:983
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "óĹÔĹ×ĎĘ ÚÁÇŇŐÚĎŢÎŮĘ ISO-ĎÂŇÁÚ - %s"
-#: ../../standalone/drakTermServ_.c:980
+#: ../../standalone/drakTermServ_.c:985
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "ţÔĎ-ÔĎ ĐĎŰĚĎ ÎĹ ÔÁË! - őÓÔÁÎĎ×ĚĹÎÁ ĚÉ mkisofs?"
-#: ../../standalone/drakTermServ_.c:999
+#: ../../standalone/drakTermServ_.c:1004
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "óÎÁŢÁĚÁ ÎĹĎÂČĎÄÉÍĎ ÓĎÚÄÁÔŘ /etc/dhcpd.conf"
@@ -10176,20 +10805,19 @@ msgstr "őÄÁĚÉÔŘ ĐĎÓĚĹÄÎÉĘ ĐŐÎËÔ"
#: ../../standalone/drakbackup_.c:617
msgid "Cron not available yet as non-root"
-msgstr ""
+msgstr "Cron ÂĎĚŘŰĹ ÎĹ ÄĎÓÔŐĐĹÎ ËÁË ÂĹÚ ĐŇÁ× root'a"
#: ../../standalone/drakbackup_.c:723
msgid "WARNING"
-msgstr ""
+msgstr "đňĺäőđňĺöäĺîéĺ"
#: ../../standalone/drakbackup_.c:724
-#, fuzzy
msgid "FATAL"
-msgstr "FAT"
+msgstr "çňőâůę"
#: ../../standalone/drakbackup_.c:725
msgid "INFO"
-msgstr ""
+msgstr "éîćďňíáăéń"
#: ../../standalone/drakbackup_.c:737
msgid ""
@@ -10225,13 +10853,12 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:833
-#: ../../standalone/drakbackup_.c:887
-#, fuzzy
+#: ../../standalone/drakbackup_.c:763 ../../standalone/drakbackup_.c:836
+#: ../../standalone/drakbackup_.c:891
msgid "Total progess"
-msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
+msgstr "÷ĹÓŘ ĐŇĎĂĹÓÓ"
-#: ../../standalone/drakbackup_.c:815
+#: ../../standalone/drakbackup_.c:818
#, c-format
msgid ""
"%s exists, delete?\n"
@@ -10239,42 +10866,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 ÓŐÝĹÓÔ×ŐĹÔ, ŐÄÁĚÉÔŘ?\n"
+"\n"
+"đŇĹÄŐĐŇĹÖÄĹÎÉĹ: ĹÓĚÉ ×Ů ŐÖĹ ×ŮĐĎĚÎÉĚÉ ÜÔĎÔ ĐŇĎĂĹÓÓ, ×ÁÍ,\n"
+"×ĎÚÍĎÖÎĎ, ĐĎÎÁÄĎÂÉÔÓŃ ŐÄÁĚÉÔŘ ÎĹÎŐÖÎŮĹ ĐŐÎËÔŮ ÉÚ authorized_keys\n"
+"ÎÁ ÓĹŇ×ĹŇĹ."
-#: ../../standalone/drakbackup_.c:824
+#: ../../standalone/drakbackup_.c:827
msgid "This may take a moment to generate the keys."
-msgstr ""
+msgstr "çĹÎĹŇÁĂÉŃ ËĚŔŢĹĘ ÍĎÖĹÔ ÚÁÎŃÔŘ ÎĹËĎÔĎŇĎĹ ×ŇĹÍŃ."
-#: ../../standalone/drakbackup_.c:831
+#: ../../standalone/drakbackup_.c:834
#, c-format
msgid "ERROR: Cannot spawn %s."
-msgstr ""
+msgstr "ďűéâëá: îĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ ĐĎÄĐŇĎĂĹÓÓ %s."
-#: ../../standalone/drakbackup_.c:848
+#: ../../standalone/drakbackup_.c:851
#, c-format
msgid "No password prompt on %s at port %s"
-msgstr ""
+msgstr "ďÔÓŐÔÓÔ×ŐĹÔ ÚÁĐŇĎÓ ĐÁŇĎĚŃ ÄĚŃ %s ÎÁ ĐĎŇÔŐ %s"
-#: ../../standalone/drakbackup_.c:849
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:852
+#, c-format
msgid "Bad password on %s"
-msgstr "îĹÔ ĐÁŇĎĚŃ"
+msgstr "đĚĎČĎĘ ĐÁŇĎĚŘ ÄĚŃ %s"
-#: ../../standalone/drakbackup_.c:850
+#: ../../standalone/drakbackup_.c:853
#, c-format
msgid "Permission denied transferring %s to %s"
-msgstr ""
+msgstr "úÁĐŇĹÝĹÎ ÄĎÓÔŐĐ ÄĚŃ ĐĹŇĹÄÁŢÉ %s ÎÁ %s"
-#: ../../standalone/drakbackup_.c:851
-#, fuzzy, c-format
+#: ../../standalone/drakbackup_.c:854
+#, c-format
msgid "Can't find %s on %s"
-msgstr "îĹ×ĎÚÍĎÖÎĎ ĎÔËŇŮÔŘ %s: %s\n"
+msgstr "îĹ×ĎÚÍĎÖÎĎ ÎÁĘÔÉ %s ÎÁ %s"
-#: ../../standalone/drakbackup_.c:854
+#: ../../standalone/drakbackup_.c:857
#, c-format
msgid "%s not responding"
-msgstr ""
+msgstr "%s ÎĹ ĎÔ×ĹŢÁĹÔ"
-#: ../../standalone/drakbackup_.c:858
+#: ../../standalone/drakbackup_.c:861
#, c-format
msgid ""
"Transfer successful\n"
@@ -10284,66 +10916,71 @@ msgid ""
"\n"
"without being prompted for a password."
msgstr ""
+"đĹŇĹÄÁŢÁ ÚÁ×ĹŇŰĹÎÁ\n"
+"÷Ů ÍĎÖĹÔĹ ĐŇĎ×ĹŇÉÔŘ É ÚÁĘÔÉ ÎÁ ÓĹŇ×ĹŇ, ÉÓĐĎĚŘÚŐŃ:\n"
+"\n"
+"ssh -i %s %s\\@%s\n"
+"\n"
+"ÂĹÚ ÚÁĐŇĎÓÁ ĐÁŇĎĚŃ."
-#: ../../standalone/drakbackup_.c:901
+#: ../../standalone/drakbackup_.c:905
msgid "WebDAV remote site already in sync!"
-msgstr ""
+msgstr "őÄÁĚĹÎÎŮĘ ÓÁĘÔ WebDAV ŐÖĹ ÓÉÎČŇĎÎÉÚÉŇŐĹÔÓŃ!"
-#: ../../standalone/drakbackup_.c:905
+#: ../../standalone/drakbackup_.c:909
msgid "WebDAV transfer failed!"
-msgstr ""
+msgstr "đĹŇĹÄÁŢÁ WebDAV ÚÁ×ĹŇŰÉĚÁÓŘ ÎĹŐÄÁŢĹĘ!"
-#: ../../standalone/drakbackup_.c:926
+#: ../../standalone/drakbackup_.c:930
msgid "No CDR/DVDR in drive!"
-msgstr ""
+msgstr "÷ ĐŇÉ×ĎÄĹ ĎÔÓŐÔÓÔ×ŐĹÔ CDR/DVDR!"
-#: ../../standalone/drakbackup_.c:930
+#: ../../standalone/drakbackup_.c:934
msgid "Does not appear to be recordable media!"
-msgstr ""
+msgstr "đĎČĎÖĹ, ŢÔĎ ÜÔĎ ÎĹ ĐĹŇĹÚÁĐÉÓŮ×ÁĹÍŮĘ ÎÁËĎĐÉÔĹĚŘ!"
-#: ../../standalone/drakbackup_.c:934
+#: ../../standalone/drakbackup_.c:938
msgid "Not erasable media!"
-msgstr ""
+msgstr "ďÔÓŐÔÓÔ×ŐĹÔ ÎÁËĎĐÉÔĹĚŘ ÄĚŃ ÓÔÉŇÁÎÉŃ!"
-#: ../../standalone/drakbackup_.c:973
+#: ../../standalone/drakbackup_.c:977
msgid "This may take a moment to erase the media."
-msgstr ""
+msgstr "óÔÉŇÁÎÉĹ ÎÁËĎĐÉÔĹĚŃ ÍĎÖĹÔ ÚÁÎŃÔŘ ÎĹËĎÔĎŇĎĹ ×ŇĹÍŃ."
-#: ../../standalone/drakbackup_.c:1058
+#: ../../standalone/drakbackup_.c:1062
msgid "Permission problem accessing CD."
-msgstr ""
+msgstr "đŇĎÂĚĹÍÁ Ó ÄĎÓÔŐĐĎÍ Ë ËĎÍĐÁËÔ-ÄÉÓËŐ."
-#: ../../standalone/drakbackup_.c:1085
+#: ../../standalone/drakbackup_.c:1089
#, c-format
msgid "No tape in %s!"
-msgstr ""
+msgstr "÷ %s ĎÔÓŐÔÓÔ×ŐĹÔ ĚĹÎÔÁ!"
-#: ../../standalone/drakbackup_.c:1197 ../../standalone/drakbackup_.c:1246
+#: ../../standalone/drakbackup_.c:1201 ../../standalone/drakbackup_.c:1250
msgid "Backup system files..."
msgstr "ňĹÚĹŇ×ÉŇŐŔÔÓŃ ÓÉÓÔĹÍÎŮĹ ĆÁĘĚŮ..."
-#: ../../standalone/drakbackup_.c:1247 ../../standalone/drakbackup_.c:1314
+#: ../../standalone/drakbackup_.c:1251 ../../standalone/drakbackup_.c:1318
msgid "Hard Disk Backup files..."
msgstr "ňĹÚĹŇ×ÉŇŐŔÔÓŃ ĆÁĘĚŮ ÖĹÓÔËĎÇĎ ÄÉÓËÁ... "
-#: ../../standalone/drakbackup_.c:1259
+#: ../../standalone/drakbackup_.c:1263
msgid "Backup User files..."
msgstr "ňĹÚĹŇ×ÉŇŐŔÔÓŃ ĆÁĘĚŮ ĐĎĚŘÚĎ×ÁÔĹĚŃ..."
-#: ../../standalone/drakbackup_.c:1260
+#: ../../standalone/drakbackup_.c:1264
msgid "Hard Disk Backup Progress..."
msgstr "ňĹÚĹŇ×ÉŇŐĹÔÓŃ ÖĹÓÔËÉĘ ÄÉÓË..."
-#: ../../standalone/drakbackup_.c:1313
+#: ../../standalone/drakbackup_.c:1317
msgid "Backup Other files..."
msgstr "ňĹÚĹŇ×ÉŇŐŔÔÓŃ ÄŇŐÇÉĹ ĆÁĘĚŮ..."
-#: ../../standalone/drakbackup_.c:1319
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1323
msgid "No changes to backup!"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
+msgstr "ďÔÓŐÔÓÔ×ŐŔÔ ÉÚÍĹÎĹÎÉŃ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ!"
-#: ../../standalone/drakbackup_.c:1335 ../../standalone/drakbackup_.c:1358
+#: ../../standalone/drakbackup_.c:1339 ../../standalone/drakbackup_.c:1362
#, c-format
msgid ""
"\n"
@@ -10354,7 +10991,7 @@ msgstr ""
"Drakbackup ×ŮĐĎĚÎŃĹÔÓŃ ÎÁ %s:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1342
+#: ../../standalone/drakbackup_.c:1346
#, c-format
msgid ""
"file list sent by FTP: %s\n"
@@ -10363,7 +11000,7 @@ msgstr ""
"ÓĐÉÓĎË ĆÁĘĚĎ×, ĎĐŇÁ×ĚĹÎÎŮĘ ŢĹŇĹÚ FTP : %s\n"
" "
-#: ../../standalone/drakbackup_.c:1345
+#: ../../standalone/drakbackup_.c:1349
msgid ""
"\n"
" FTP connection problem: It was not possible to send your backup files by "
@@ -10373,7 +11010,7 @@ msgstr ""
" đŇĎÂĚĹÍÁ FTP-ÓĎĹÄÉÎĹÎÉŃ: ×ÁŰÉ ŇĹÚĹŇ×ÎŮĹ ĆÁĘĚŮ ÎĹ ÓÍĎÇĚÉ ÂŮÔŘ ĎÔĐŇÁ×ĚĹÎŮ ĐĎ "
"FTP.\n"
-#: ../../standalone/drakbackup_.c:1363
+#: ../../standalone/drakbackup_.c:1367
msgid ""
"\n"
"Drakbackup activities via CD:\n"
@@ -10383,7 +11020,7 @@ msgstr ""
"Drakbackup ×ŮĐĎĚÎŃĹÔÓŃ ÎÁ ËĎÍĐÁËÔ-ÄÉÓËĹ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1368
+#: ../../standalone/drakbackup_.c:1372
msgid ""
"\n"
"Drakbackup activities via tape:\n"
@@ -10393,24 +11030,24 @@ msgstr ""
"Drakbackup ×ŮĐĎĚÎŃĹÔÓŃ ÎÁ ĚĹÎÔĹ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:1377
+#: ../../standalone/drakbackup_.c:1381
msgid " Error during mail sending. \n"
msgstr "ďŰÉÂËÁ ĐŇÉ ĎÔĐŇÁ×ËĹ ĐÉÓŘÍÁ. \n"
-#: ../../standalone/drakbackup_.c:1402
+#: ../../standalone/drakbackup_.c:1406
msgid "Can't create catalog!"
-msgstr ""
+msgstr "îĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ ËÁÔÁĚĎÇ!"
-#: ../../standalone/drakbackup_.c:1515 ../../standalone/drakbackup_.c:1526
+#: ../../standalone/drakbackup_.c:1519 ../../standalone/drakbackup_.c:1530
#: ../../standalone/drakfont_.c:1004
msgid "File Selection"
msgstr "÷ŮÂĎŇ ĆÁĘĚÁ"
-#: ../../standalone/drakbackup_.c:1554
+#: ../../standalone/drakbackup_.c:1558
msgid "Select the files or directories and click on 'Add'"
msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚŮ ÉĚÉ ËÁÔÁĚĎÇÉ É ÎÁÖÍÉÔĹ 'äĎÂÁ×ÉÔŘ'"
-#: ../../standalone/drakbackup_.c:1598
+#: ../../standalone/drakbackup_.c:1602
msgid ""
"\n"
"Please check all options that you need.\n"
@@ -10418,29 +11055,28 @@ msgstr ""
"\n"
"đĎÖÁĚŐĘÓÔÁ, ĐŇĎ×ĹŇŘÔĹ ×ÓĹ ÎŐÖÎŮĹ ×ÁÍ ĎĐĂÉÉ.\n"
-#: ../../standalone/drakbackup_.c:1599
+#: ../../standalone/drakbackup_.c:1603
msgid ""
"These options can backup and restore all files in your /etc directory.\n"
msgstr ""
"üÔÉ ĎĐĂÉÉ ÍĎÇŐÔ ÚÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ É ×ĎÓÓÔÁÎĎ×ÉÔŘ ×ÓĹ ĆÁĘĚŮ × ×ÁŰĹÍ ËÁÔÁĚĎÇĹ /"
"etc.\n"
-#: ../../standalone/drakbackup_.c:1600
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1604
msgid "Backup your System files. (/etc directory)"
-msgstr "đĚĎČĎĘ ĆÁĘĚ Ó ŇĹÚĹŇ×ÎĎĘ ËĎĐÉĹĘ"
+msgstr "úÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ Ó×ĎÉ ÓÉÓÔĹÍÎŮĹ ĆÁĘĚŮ (ËÁÔÁĚĎÇ /etc)."
-#: ../../standalone/drakbackup_.c:1601
+#: ../../standalone/drakbackup_.c:1605
msgid "Use incremental backup (do not replace old backups)"
msgstr ""
"éÓĐĎĚŘÚĎ×ÁÔŘ ÎÁËÁĐĚÉ×ÁŔÝĹĹÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹ (ÎĹ ÚÁÍĹÎŃÔŘ ÓÔÁŇŮĹ ŇĹÚĹŇ×ÎŮĹ "
"ËĎĐÉÉ)"
-#: ../../standalone/drakbackup_.c:1602
+#: ../../standalone/drakbackup_.c:1606
msgid "Do not include critical files (passwd, group, fstab)"
msgstr "îĹ ×ËĚŔŢÁÔŘ ×ÁÖÎŮĹ ĆÁĘĚŮ (passwd, group, fstab)"
-#: ../../standalone/drakbackup_.c:1603
+#: ../../standalone/drakbackup_.c:1607
msgid ""
"With this option you will be able to restore any version\n"
" of your /etc directory."
@@ -10448,133 +11084,142 @@ msgstr ""
"đŇÉ ĐĎÍĎÝÉ ÜÔĎĘ ĎĐĂÉÉ ×Ů ÓÍĎÖĹÔĹ ×ĎÓÓÔÁÎĎ×ÉÔŘ ĚŔÂŐŔ ×ĹŇÓÉŔ Ó×ĎĹÇĎ ËÁÔÁĚĎÇÁ /"
"etc."
-#: ../../standalone/drakbackup_.c:1620
+#: ../../standalone/drakbackup_.c:1624
msgid "Please check all users that you want to include in your backup."
msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ ×ÓĹČ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ, ËĎÔĎŇŮČ ×Ů ČĎÔÉÔĹ ×ËĚŔŢÉÔŘ × Ó×ĎŔ "
"ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ."
-#: ../../standalone/drakbackup_.c:1647
+#: ../../standalone/drakbackup_.c:1651
msgid "Do not include the browser cache"
msgstr "îĹ ×ËĚŔŢÁÔŘ ËÜŰ ÂŇĎŐÚĹŇÁ"
-#: ../../standalone/drakbackup_.c:1648 ../../standalone/drakbackup_.c:1672
+#: ../../standalone/drakbackup_.c:1652 ../../standalone/drakbackup_.c:1676
msgid "Use Incremental Backups (do not replace old backups)"
msgstr ""
"éÓĐĎĚŘÚĎ×ÁÔŘ Ő×ĹĚÉŢÉ×ÁŔÝÉĹÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹ (ÎĹ ÚÁÍĹÎŃÔŘ ÓÔÁŇŮĹ ŇĹÚĹŇ×ÎŮĹ "
"ËĎĐÉÉ)"
-#: ../../standalone/drakbackup_.c:1670 ../../standalone/drakfont_.c:1058
+#: ../../standalone/drakbackup_.c:1674 ../../standalone/drakfont_.c:1058
msgid "Remove Selected"
msgstr "őÄÁĚÉÔŘ ×ŮÂŇÁÎÎŮĹ"
-#: ../../standalone/drakbackup_.c:1708
+#: ../../standalone/drakbackup_.c:1712
msgid "Windows (FAT32)"
msgstr "Windows (FAT32)"
-#: ../../standalone/drakbackup_.c:1747
+#: ../../standalone/drakbackup_.c:1751
msgid "Users"
msgstr "đĎĚŘÚĎ×ÁÔĹĚÉ"
-#: ../../standalone/drakbackup_.c:1773
+#: ../../standalone/drakbackup_.c:1777
msgid "Use network connection to backup"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÓĹÔĹ×ĎĹ ÓĎĹÄÉÎĹÎÉĹ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakbackup_.c:1775
+#: ../../standalone/drakbackup_.c:1779
msgid "Net Method:"
-msgstr ""
+msgstr "óĹÔĹ×ĎĘ ÍĹÔĎÄ:"
-#: ../../standalone/drakbackup_.c:1779
+#: ../../standalone/drakbackup_.c:1783
msgid "Use Expect for SSH"
-msgstr ""
+msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Expect ÄĚŃ SSH"
-#: ../../standalone/drakbackup_.c:1780
+#: ../../standalone/drakbackup_.c:1784
msgid ""
"Create/Transfer\n"
"backup keys for SSH"
msgstr ""
+"óĎÚÄÁÔŘ/ĐĹŇĹÓĚÁÔŘ\n"
+"ŇĹÚĹŇ×ÎŮĹ ËĚŔŢÉ ÄĚŃ SSH"
-#: ../../standalone/drakbackup_.c:1781
+#: ../../standalone/drakbackup_.c:1785
msgid ""
" Transfer \n"
"Now"
msgstr ""
+" đĹŇĹÓĚÁÔŘ \n"
+"ÓĹĘŢÁÓ"
-#: ../../standalone/drakbackup_.c:1782
-msgid "Keys in place already"
+#: ../../standalone/drakbackup_.c:1786
+msgid ""
+"Other (not drakbackup)\n"
+"keys in place already"
msgstr ""
+"äŇŐÇÉĹ (ÎĹ drakbackup)\n"
+"ËĚŔŢÉ ŐÖĹ ÎÁ ÍĹÓÔĹ"
-#: ../../standalone/drakbackup_.c:1786
+#: ../../standalone/drakbackup_.c:1790
msgid "Please enter the host name or IP."
msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ÉÍŃ ČĎÓÔÁ ÉĚÉ IP"
-#: ../../standalone/drakbackup_.c:1791
+#: ../../standalone/drakbackup_.c:1795
msgid ""
"Please enter the directory (or module) to\n"
" put the backup on this host."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ËÁÔÁĚĎÇ (ÉĚÉ ÍĎÄŐĚŘ),ŇĹÚĹŇ×ÉŇŐĹÍŮĘ ÎÁ ÜÔĎÔ ČĎÓÔ."
+msgstr ""
+"đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ËÁÔÁĚĎÇ (ÉĚÉ ÍĎÄŐĚŘ),\n"
+"ŇĹÚĹŇ×ÉŇŐĹÍŮĘ ÎÁ ÜÔĎÔ ČĎÓÔ."
-#: ../../standalone/drakbackup_.c:1796
+#: ../../standalone/drakbackup_.c:1800
msgid "Please enter your login"
msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ Ó×ĎĘ ĚĎÇÉÎ"
-#: ../../standalone/drakbackup_.c:1801
+#: ../../standalone/drakbackup_.c:1805
msgid "Please enter your password"
msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ Ó×ĎĘ ĐÁŇĎĚŘ"
-#: ../../standalone/drakbackup_.c:1807
+#: ../../standalone/drakbackup_.c:1811
msgid "Remember this password"
msgstr "úÁĐĎÍÎÉÔĹ ÜÔĎÔ ĐÁŇĎĚŘ"
-#: ../../standalone/drakbackup_.c:1818
+#: ../../standalone/drakbackup_.c:1822
msgid "Need hostname, username and password!"
-msgstr ""
+msgstr "îŐÖÎŮ ÉÍŃ ČĎÓÔÁ, ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ É ĐÁŇĎĚŘ!"
-#: ../../standalone/drakbackup_.c:1913
+#: ../../standalone/drakbackup_.c:1917
msgid "Use CD/DVDROM to backup"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ CD/DVDROM"
-#: ../../standalone/drakbackup_.c:1916
+#: ../../standalone/drakbackup_.c:1920
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 ""
+"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ Ó×ĎĘ ĐŇÉ×ĎÄ CD/DVD\n"
+"(ÎÁÖÍÉÔĹ Enter, ŢÔĎÂŮ ÓËĎĐÉŇĎ×ÁÔŘ ÎÁÓÔŇĎĘËÉ × ÄŇŐÇÉĹ ĐĎĚŃ.\n"
+"üÔĎ ĐĎĚĹ ÎĹĎÂŃÚÁÔĹĚŘÎĎ, ÜÔĎ ĐŇĎÓÔĎ ÉÎÓÔŇŐÍĹÎÔ ÄĚŃ ÚÁĐĎĚÎĹÎÉŃ ĆĎŇÍŮ)."
-#: ../../standalone/drakbackup_.c:1921
-#, fuzzy
-msgid "Please choose your CD/DVD media size"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÓËĚÁÄËŐ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
+#: ../../standalone/drakbackup_.c:1925
+msgid "Please choose your CD/DVD media size (Mb)"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ŇÁÚÍĹŇ Ó×ĎĹÇĎ ÎÁËĎĐÉÔĹĚŃ CD/DVD"
-#: ../../standalone/drakbackup_.c:1927
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1931
msgid "Please check for multisession CD"
-msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ ÄĚŃ ÍÎĎÇĎÓĹÁÎÓĎ×ĎÇĎ ËĎÍĐÁËÔ-ÄÉÓËÁ"
-#: ../../standalone/drakbackup_.c:1933
+#: ../../standalone/drakbackup_.c:1937
msgid "Please check if you are using CDRW media"
msgstr "đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ ÎÁËĎĐÉÔĹĚŘ CDRW"
-#: ../../standalone/drakbackup_.c:1939
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1943
msgid "Please check if you want to erase your RW media (1st Session)"
-msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
+msgstr ""
+"đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÓÔĹŇĹÔŘ Ó×ĎĘ RW-ÎÁËĎĐÉÔĹĚŘ(1-ŮĘ ÓĹÁÎÓ)"
-#: ../../standalone/drakbackup_.c:1940
+#: ../../standalone/drakbackup_.c:1944
msgid " Erase Now "
-msgstr ""
+msgstr " óÔĹŇĹÔŘ ÎĹÍĹÄĚĹÎÎĎ "
-#: ../../standalone/drakbackup_.c:1946
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1950
msgid "Please check if you are using a DVDR device"
-msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ ŐÓÔŇĎĘÓÔ×Ď DVDR"
-#: ../../standalone/drakbackup_.c:1952
-#, fuzzy
+#: ../../standalone/drakbackup_.c:1956
msgid "Please check if you are using a DVDRAM device"
-msgstr "đĎÖÁĚŐĘÓÔÁ ÎÁÖÍÉÔĹ ÎÁ ŇÁÚÄĹĚ"
+msgstr "đĎÖÁĚŐĘÓÔÁ? ďÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ÉÓĐĎĚŘÚŐĹÔĹ ŐÓÔŇĎĘÓÔ×Ď DVDRAM"
-#: ../../standalone/drakbackup_.c:1965
+#: ../../standalone/drakbackup_.c:1969
msgid ""
"Please enter your CD Writer device name\n"
" ex: 0,1,0"
@@ -10582,37 +11227,36 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ÉÍŃ Ó×ĎĹÇĎ ŐÓÔŇĎĘÓÔ×Á ÄĚŃ ÚÁĐÉÓÉ ËĎÍĐÁËÔ-ÄÉÓËĎ×\n"
" ĐŇÉÍĹŇ: 0,1,0"
-#: ../../standalone/drakbackup_.c:1998
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2002
msgid "No CD device defined!"
-msgstr "÷ŮÂĹŇÉÔĹ ĆÁĘĚ"
+msgstr "őÓÔŇĎĘÓÔ×Ď CD ÎĹ ×ŮÂŇÁÎĎ!"
-#: ../../standalone/drakbackup_.c:2046
+#: ../../standalone/drakbackup_.c:2050
msgid "Use tape to backup"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ ÍÁÇÎÉÔÎŐŔ ĚĹÎÔŐ"
-#: ../../standalone/drakbackup_.c:2049
+#: ../../standalone/drakbackup_.c:2053
msgid "Please enter the device name to use for backup"
msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ÉÍŃ ŐÓÔŇĎĘÓÔ×Á, ÉÓĐĎĚŘÚŐĹÍĎÇĎ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakbackup_.c:2055
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2059
msgid "Please check if you want to use the non-rewinding device."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
+msgstr ""
+"đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ŐÓÔŇĎĘÓÔ×Ď ÂĹÚ ĐĹŇĹÍĎÔËÉ."
-#: ../../standalone/drakbackup_.c:2061
+#: ../../standalone/drakbackup_.c:2065
msgid "Please check if you want to erase your tape before the backup."
msgstr ""
-"đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÓÔĹŇĹÔŘ ÍÁÇÎÉÔÎŐŔ ĚĹÎÔŐ ĐĹŇĹÄ "
-"ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹÍ"
+"đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÓÔĹŇĹÔŘ Ó×ĎŔ ĚĹÎÔŐ ĐĹŇĹÄ "
+"ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹÍ."
-#: ../../standalone/drakbackup_.c:2067
-#, fuzzy
+#: ../../standalone/drakbackup_.c:2071
msgid "Please check if you want to eject your tape after the backup."
-msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐÁËĹÔŮ, ËĎÔĎŇŮĹ ×Ů ČĎÔÉÔĹ ŐÓÔÁÎĎ×ÉÔŘ"
+msgstr ""
+"đĎÖÁĚŐĘÓÔÁ, ĎÔÍĹÔŘÔĹ, ĹÓĚÉ ×Ů ČĎÔÉÔĹ ÉÚ×ĚĹŢŘ Ó×ĎŔ ĚĹÎÔŐ ĐĎÓĚĹ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ."
-#: ../../standalone/drakbackup_.c:2073 ../../standalone/drakbackup_.c:2147
-#: ../../standalone/drakbackup_.c:3114
+#: ../../standalone/drakbackup_.c:2077 ../../standalone/drakbackup_.c:2151
+#: ../../standalone/drakbackup_.c:3118
msgid ""
"Please enter the maximum size\n"
" allowed for Drakbackup"
@@ -10620,55 +11264,55 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ÍÁËÓÉÍÁĚŘÎŮĘ ŇÁÚÍĹŇ,\n"
" ŇÁÚŇĹŰĹÎÎŮĘ ÄĚŃ Drakbackup"
-#: ../../standalone/drakbackup_.c:2138
+#: ../../standalone/drakbackup_.c:2142
msgid "Please enter the directory to save to:"
msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ËÁÔÁĚĎÇ ÄĚŃ ÓĎČŇÁÎĹÎÉŃ:"
-#: ../../standalone/drakbackup_.c:2153 ../../standalone/drakbackup_.c:3120
+#: ../../standalone/drakbackup_.c:2157 ../../standalone/drakbackup_.c:3124
msgid "Use quota for backup files."
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Ë×ĎÔŮ ÄĚŃ ŇĹÚĹŇ×ÎŮČ ĆÁĘĚĎ×"
-#: ../../standalone/drakbackup_.c:2219
+#: ../../standalone/drakbackup_.c:2223
msgid "Network"
msgstr "óĹÔŘ"
-#: ../../standalone/drakbackup_.c:2224
+#: ../../standalone/drakbackup_.c:2228
msgid "CDROM / DVDROM"
msgstr "CDROM / DVDROM"
-#: ../../standalone/drakbackup_.c:2229
+#: ../../standalone/drakbackup_.c:2233
msgid "HardDrive / NFS"
msgstr "öĹÓÔËÉĘ ÄÉÓË / NFS"
-#: ../../standalone/drakbackup_.c:2234
+#: ../../standalone/drakbackup_.c:2238
msgid "Tape"
msgstr "íÁÇÎÉÔÎÁŃ ĚĹÎÔÁ"
-#: ../../standalone/drakbackup_.c:2248 ../../standalone/drakbackup_.c:2252
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2252 ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2260
msgid "hourly"
msgstr "ËÁÖÄŮĘ ŢÁÓ"
-#: ../../standalone/drakbackup_.c:2249 ../../standalone/drakbackup_.c:2253
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2253 ../../standalone/drakbackup_.c:2257
+#: ../../standalone/drakbackup_.c:2260
msgid "daily"
msgstr "ËÁÖÄŮĘ ÄĹÎŘ"
-#: ../../standalone/drakbackup_.c:2250 ../../standalone/drakbackup_.c:2254
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2254 ../../standalone/drakbackup_.c:2258
+#: ../../standalone/drakbackup_.c:2260
msgid "weekly"
msgstr "ËÁÖÄŐŔ ÎĹÄĹĚŔ"
-#: ../../standalone/drakbackup_.c:2251 ../../standalone/drakbackup_.c:2255
-#: ../../standalone/drakbackup_.c:2256
+#: ../../standalone/drakbackup_.c:2255 ../../standalone/drakbackup_.c:2259
+#: ../../standalone/drakbackup_.c:2260
msgid "monthly"
msgstr "ËÁÖÄŮĘ ÍĹÓŃĂ"
-#: ../../standalone/drakbackup_.c:2269
+#: ../../standalone/drakbackup_.c:2273
msgid "Use daemon"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÄĹÍĎÎ"
-#: ../../standalone/drakbackup_.c:2274
+#: ../../standalone/drakbackup_.c:2278
msgid ""
"Please choose the time \n"
"interval between each backup"
@@ -10676,7 +11320,7 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ĐŇĎÍĹÖŐÔĎË\n"
"×ŇĹÍĹÎÉ ÍĹÖÄŐ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃÍÉ"
-#: ../../standalone/drakbackup_.c:2280
+#: ../../standalone/drakbackup_.c:2284
msgid ""
"Please choose the\n"
"media for backup."
@@ -10684,7 +11328,7 @@ msgstr ""
"đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ\n"
"ÎÁËĎĐÉÔĹĚŘ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakbackup_.c:2287
+#: ../../standalone/drakbackup_.c:2291
msgid ""
"Please be sure that the cron daemon is included in your services. \n"
"\n"
@@ -10694,71 +11338,72 @@ msgstr ""
"\n"
"úÁĐĎÍÎÉÔĹ, ÔĎ ×ÓĹ ÓĹĘŢÁÓ 'ÓĹÔĹ×ŮĹ' ÎÁËĎĐÉÔĹĚÉ ÔÁËÖĹ ÉÓĐĎĚŘÚŐŔÔ ÖĹÓÔËÉĘ ÄÉÓË."
-#: ../../standalone/drakbackup_.c:2324
+#: ../../standalone/drakbackup_.c:2328
msgid "Send mail report after each backup to:"
msgstr "ďÔĐŇÁ×ÉÔŘ ĐÉÓŘÍĎ Ó ĎÔŢĹÔĎÍ ĐĎÓĚĹ ËÁÖÄĎÇĎ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ:"
-#: ../../standalone/drakbackup_.c:2330
+#: ../../standalone/drakbackup_.c:2334
msgid "Delete Hard Drive tar files after backup to other media."
msgstr ""
+"őÄÁĚÉÔŘ tar-ĆÁĘĚŮ Ó ÖĹÓÔËĎÇĎ ÄÉÓËÁ ĐĎÓĚĹ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ ÎÁ ÄŇŐÇÉĹ ÎÁËĎĐÉÔĹĚÉ."
-#: ../../standalone/drakbackup_.c:2369
+#: ../../standalone/drakbackup_.c:2373
msgid "What"
msgstr "ţÔĎ"
-#: ../../standalone/drakbackup_.c:2374
+#: ../../standalone/drakbackup_.c:2378
msgid "Where"
msgstr "çÄĹ"
-#: ../../standalone/drakbackup_.c:2379
+#: ../../standalone/drakbackup_.c:2383
msgid "When"
msgstr "ëĎÇÄÁ"
-#: ../../standalone/drakbackup_.c:2384
+#: ../../standalone/drakbackup_.c:2388
msgid "More Options"
msgstr "äĎĐĎĚÎÉÔĹĚŘÎŮĹ ĎĐĂÉÉ"
-#: ../../standalone/drakbackup_.c:2403 ../../standalone/drakbackup_.c:4528
+#: ../../standalone/drakbackup_.c:2407 ../../standalone/drakbackup_.c:4532
msgid "Drakbackup Configuration"
msgstr "îÁÓÔŇĎĘËÁ Drakbackup"
-#: ../../standalone/drakbackup_.c:2421
+#: ../../standalone/drakbackup_.c:2425
msgid "Please choose where you want to backup"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ, ËŐÄÁ ×Ů ČĎÔÉÔĹ ŇĹÚĹŇ×ÉŇĎ×ÁÔŘ"
-#: ../../standalone/drakbackup_.c:2423
+#: ../../standalone/drakbackup_.c:2427
msgid "on Hard Drive"
msgstr "ÎÁ ÖĹÓÔËÉĘ ÄÉÓË"
-#: ../../standalone/drakbackup_.c:2433
+#: ../../standalone/drakbackup_.c:2437
msgid "across Network"
msgstr "ŢĹŇĹÚ ÓĹÔŘ"
-#: ../../standalone/drakbackup_.c:2443
+#: ../../standalone/drakbackup_.c:2447
msgid "on CDROM"
-msgstr ""
+msgstr "ÎÁ ËĎÍĐÁËÔ-ÄÉÓË"
-#: ../../standalone/drakbackup_.c:2451
+#: ../../standalone/drakbackup_.c:2455
msgid "on Tape Device"
-msgstr ""
+msgstr "ÎÁ ÍÁÇÎÉÔÎŐŔ ĚĹÎÔŐ"
-#: ../../standalone/drakbackup_.c:2494
+#: ../../standalone/drakbackup_.c:2498
msgid "Please choose what you want to backup"
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ, ŢÔĎ ×Ů ČĎÔÉÔĹ ÚÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ"
-#: ../../standalone/drakbackup_.c:2495
+#: ../../standalone/drakbackup_.c:2499
msgid "Backup system"
msgstr "ňĹÚĹŇ×ÉŇĎ×ÁÎÉĹ ÓÉÓÔĹÍŮ"
-#: ../../standalone/drakbackup_.c:2496
+#: ../../standalone/drakbackup_.c:2500
msgid "Backup Users"
msgstr "ňĹÚĹŇ×ÉŇĎ×ÁÎÉĹ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ"
-#: ../../standalone/drakbackup_.c:2499
+#: ../../standalone/drakbackup_.c:2503
msgid "Select user manually"
msgstr "÷ŮÂŇÁÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ ×ŇŐŢÎŐŔ"
-#: ../../standalone/drakbackup_.c:2582
+#: ../../standalone/drakbackup_.c:2586
msgid ""
"\n"
"Backup Sources: \n"
@@ -10766,7 +11411,7 @@ msgstr ""
"\n"
"éÓÔĎŢÎÉËÉ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ:\n"
-#: ../../standalone/drakbackup_.c:2583
+#: ../../standalone/drakbackup_.c:2587
msgid ""
"\n"
"- System Files:\n"
@@ -10774,7 +11419,7 @@ msgstr ""
"\n"
"- óÉÓÔĹÍÎŮĹ ĆÁĘĚŮ:\n"
-#: ../../standalone/drakbackup_.c:2585
+#: ../../standalone/drakbackup_.c:2589
msgid ""
"\n"
"- User Files:\n"
@@ -10782,7 +11427,7 @@ msgstr ""
"\n"
"- ćÁĘĚŮ ĐĎĚŘÚĎ×ÁÔĹĚŃ:\n"
-#: ../../standalone/drakbackup_.c:2587
+#: ../../standalone/drakbackup_.c:2591
msgid ""
"\n"
"- Other Files:\n"
@@ -10790,7 +11435,7 @@ msgstr ""
"\n"
"- äŇŐÇÉĹ ĆÁĘĚŮ:\n"
-#: ../../standalone/drakbackup_.c:2589
+#: ../../standalone/drakbackup_.c:2593
#, c-format
msgid ""
"\n"
@@ -10799,13 +11444,15 @@ msgstr ""
"\n"
"- óĎČŇÁÎÉÔŘ ÎÁ ÖĹÓÔËÉĘ ÄÉÓË × ËÁÔÁĚĎÇ : %s\n"
-#: ../../standalone/drakbackup_.c:2592
+#: ../../standalone/drakbackup_.c:2596
msgid ""
"\n"
"- Delete hard drive tar files after backup.\n"
msgstr ""
+"\n"
+"- őÄÁĚÉÔŘ tar-ĆÁĘĚŮ Ó ÖĹÓÔËĎÇĎ ÄÉÓËÁ ĐĎÓĚĹ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ.\n"
-#: ../../standalone/drakbackup_.c:2598
+#: ../../standalone/drakbackup_.c:2602
msgid ""
"\n"
"- Burn to CD"
@@ -10813,20 +11460,20 @@ msgstr ""
"\n"
"- úÁĐÉÓÁÔŘ ÎÁ ËĎÍĐÁËÔ-ÄÉÓË"
-#: ../../standalone/drakbackup_.c:2599
+#: ../../standalone/drakbackup_.c:2603
msgid "RW"
msgstr "RW"
-#: ../../standalone/drakbackup_.c:2600
+#: ../../standalone/drakbackup_.c:2604
#, c-format
msgid " on device: %s"
msgstr " ÎÁ ŐÓÔŇĎĘÓÔ×Ď : %s"
-#: ../../standalone/drakbackup_.c:2601
+#: ../../standalone/drakbackup_.c:2605
msgid " (multi-session)"
-msgstr ""
+msgstr " (ÍÎĎÇĎÓĹÁÎÓĎ×ŮĘ)"
-#: ../../standalone/drakbackup_.c:2602
+#: ../../standalone/drakbackup_.c:2606
#, c-format
msgid ""
"\n"
@@ -10835,12 +11482,12 @@ msgstr ""
"\n"
"- óĎČŇÁÎÉÔŘ ÎÁ ĚĹÎÔŐ ÎÁ ŐÓÔŇĎĘÓÔ×Ď : %s"
-#: ../../standalone/drakbackup_.c:2603
+#: ../../standalone/drakbackup_.c:2607
#, c-format
msgid "\t\tErase=%s"
msgstr "\t\tóÔĹŇĹÔŘ=%s"
-#: ../../standalone/drakbackup_.c:2606
+#: ../../standalone/drakbackup_.c:2610
#, c-format
msgid ""
"\n"
@@ -10849,7 +11496,7 @@ msgstr ""
"\n"
"- óĎČŇÁÎÉÔŘ ŢĹŇĹÚ %s ÎÁ ČĎÓÔ : %s\n"
-#: ../../standalone/drakbackup_.c:2607
+#: ../../standalone/drakbackup_.c:2611
#, c-format
msgid ""
"\t\t user name: %s\n"
@@ -10858,7 +11505,7 @@ msgstr ""
"\t\t ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ: %s\n"
"\t\t × ËÁÔÁĚĎÇ: %s \n"
-#: ../../standalone/drakbackup_.c:2608
+#: ../../standalone/drakbackup_.c:2612
msgid ""
"\n"
"- Options:\n"
@@ -10866,19 +11513,19 @@ msgstr ""
"\n"
"- ďĐĂÉÉ:\n"
-#: ../../standalone/drakbackup_.c:2609
+#: ../../standalone/drakbackup_.c:2613
msgid "\tDo not include System Files\n"
msgstr "\tîĹ ×ËĚŔŢÁÔŘ ÓÉÓÔĹÍÎŮĹ ĆÁĘĚŮ\n"
-#: ../../standalone/drakbackup_.c:2612
+#: ../../standalone/drakbackup_.c:2616
msgid "\tBackups use tar and bzip2\n"
msgstr "\täĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ ÉÓĐĎĚŘÚŐĹÔÓŃ tar É bzip2\n"
-#: ../../standalone/drakbackup_.c:2614
+#: ../../standalone/drakbackup_.c:2618
msgid "\tBackups use tar and gzip\n"
msgstr "\täĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ ÉÓĐĎĚŘÚŐĹÔÓŃ tar É gzip\n"
-#: ../../standalone/drakbackup_.c:2617
+#: ../../standalone/drakbackup_.c:2621
#, c-format
msgid ""
"\n"
@@ -10887,39 +11534,39 @@ msgstr ""
"\n"
"- äĹÍĎÎ (%s) ×ËĚŔŢÁĹÔ :\n"
-#: ../../standalone/drakbackup_.c:2618
+#: ../../standalone/drakbackup_.c:2622
msgid "\t-Hard drive.\n"
msgstr "\t-öĹÓÔËÉĘ ÄÉÓË.\n"
-#: ../../standalone/drakbackup_.c:2619
+#: ../../standalone/drakbackup_.c:2623
msgid "\t-CDROM.\n"
msgstr "\t-ëĎÍĐÁËÔ-ÄÉÓË.\n"
-#: ../../standalone/drakbackup_.c:2620
+#: ../../standalone/drakbackup_.c:2624
msgid "\t-Tape \n"
msgstr "\t-íÁÇÎÉÔÎŐŔ ĚĹÎÔŐ \n"
-#: ../../standalone/drakbackup_.c:2621
+#: ../../standalone/drakbackup_.c:2625
msgid "\t-Network by FTP.\n"
msgstr "\t-óĹÔŘ Ó FTP.\n"
-#: ../../standalone/drakbackup_.c:2622
+#: ../../standalone/drakbackup_.c:2626
msgid "\t-Network by SSH.\n"
msgstr "\t-óĹÔŘ Ó SSH.\n"
-#: ../../standalone/drakbackup_.c:2623
+#: ../../standalone/drakbackup_.c:2627
msgid "\t-Network by rsync.\n"
msgstr "\t-óĹÔŘ Ó rsync.\n"
-#: ../../standalone/drakbackup_.c:2624
+#: ../../standalone/drakbackup_.c:2628
msgid "\t-Network by webdav.\n"
msgstr "\t-óĹÔŘ Ó webdav.\n"
-#: ../../standalone/drakbackup_.c:2626
+#: ../../standalone/drakbackup_.c:2630
msgid "No configuration, please click Wizard or Advanced.\n"
msgstr "îĹÔ ËĎÎĆÉÇŐŇÁĂÉÉ, ĐĎÖÁĚŐĘÓÔÁ, ÎÁÖÍÉÔĹ íÁÓÔĹŇ ÉĚÉ äĎĐĎĚÎÉÔĹĚŘÎĎ.\n"
-#: ../../standalone/drakbackup_.c:2632
+#: ../../standalone/drakbackup_.c:2636
msgid ""
"List of data to restore:\n"
"\n"
@@ -10927,7 +11574,7 @@ msgstr ""
"óĐÉÓĎË ÄÁÎÎŮČ ÄĚŃ ×ĎÓÓÔÁÎ×ĚĹÎÉŃ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2799
+#: ../../standalone/drakbackup_.c:2803
msgid ""
"List of data corrupted:\n"
"\n"
@@ -10935,265 +11582,265 @@ msgstr ""
"óĐÉÓĎË ĐĎ×ŇĹÖÄĹÎÎŮČ ÄÁÎÎŮČ:\n"
"\n"
-#: ../../standalone/drakbackup_.c:2801
+#: ../../standalone/drakbackup_.c:2805
msgid "Please uncheck or remove it on next time."
msgstr "đĎÖÁĚŐĘÓÔÁ, ÎĹ ĎÔÍĹŢÁĘÔĹ ÉĚÉ ŐÄÁĚÉÔĹ ĹÇĎ × ÓĚĹÄŐŔÝÉĘ ŇÁÚ."
-#: ../../standalone/drakbackup_.c:2811
+#: ../../standalone/drakbackup_.c:2815
msgid "Backup files are corrupted"
msgstr "ňĹÚĹŇ×ÎŮĹ ĆÁĘĚŮ ĐĎ×ŇĹÖÄĹÎŮ"
-#: ../../standalone/drakbackup_.c:2832
+#: ../../standalone/drakbackup_.c:2836
msgid " All of your selected data have been "
-msgstr ""
+msgstr " ÷ÓĹ ×ŮÂŇÁÎÎŮĹ ×ÁÍÉ ÄÁÎÎŮĹ ÂŮĚÉ "
-#: ../../standalone/drakbackup_.c:2833
+#: ../../standalone/drakbackup_.c:2837
#, c-format
msgid " Successfuly Restored on %s "
msgstr " ŐÓĐĹŰÎĎ ×ĎÓÓÔÁÎĎ×ĚĹÎŮ ÎÁ %s "
-#: ../../standalone/drakbackup_.c:2951
+#: ../../standalone/drakbackup_.c:2955
msgid " Restore Configuration "
msgstr " îÁÓÔŇĎĘËÁ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ "
-#: ../../standalone/drakbackup_.c:2969
+#: ../../standalone/drakbackup_.c:2973
msgid "OK to restore the other files."
msgstr "ďë, ŢÔĎÂŮ ×ĎÓÓÔÁÎĎ×ÉÔŘ ÄŇŐÇÉĹ ĆÁĘĚŮ."
-#: ../../standalone/drakbackup_.c:2986
+#: ../../standalone/drakbackup_.c:2990
msgid "User list to restore (only the most recent date per user is important)"
msgstr ""
"óĐÉÓĎË ĐĎĚŘÚĎ×ÁÔĹĚĹĘ ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ (ÄĚŃ ËÁÖÄĎÇĎ ĐĎĚŘÚĎ×ÁÔĹĚŃ ×ÁÖÎŮ "
"ÔĎĚŘËĎ ÎÁÉÂĎĚĹĹ ĐĎÚÄÎÉĹ ÄÁÔŮ)"
-#: ../../standalone/drakbackup_.c:3064
+#: ../../standalone/drakbackup_.c:3068
msgid "Backup the system files before:"
msgstr "úÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ÓÉÓÔĹÍÎŮĹ ĆÁĘĚŮ ĐĹŇĹÄ:"
-#: ../../standalone/drakbackup_.c:3066
+#: ../../standalone/drakbackup_.c:3070
msgid "please choose the date to restore"
msgstr "ĐĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ÄÁÔŐ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ"
-#: ../../standalone/drakbackup_.c:3103
+#: ../../standalone/drakbackup_.c:3107
msgid "Use Hard Disk to backup"
msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ ÖĹÓÔËÉĘ ÄÉÓË ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakbackup_.c:3106
+#: ../../standalone/drakbackup_.c:3110
msgid "Please enter the directory to save:"
-msgstr "đĎÖÁĚŐĘÓÔÁ ××ĹÄÉÔĹ ËÁÔÁĚĎÇ ÄĚŃ ÓĎČŇÁÎĹÎÉŃ:"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ËÁÔÁĚĎÇ ÄĚŃ ÓĎČŇÁÎĹÎÉŃ:"
-#: ../../standalone/drakbackup_.c:3149
+#: ../../standalone/drakbackup_.c:3153
msgid "FTP Connection"
msgstr "óĎĹÄÉÎĹÎÉĹ ĐĎ FTP"
-#: ../../standalone/drakbackup_.c:3156
+#: ../../standalone/drakbackup_.c:3160
msgid "Secure Connection"
msgstr "âĹÚĎĐÁÓÎĎĹ ÓĎĹÄÉÎĹÎÉĹ"
-#: ../../standalone/drakbackup_.c:3182
+#: ../../standalone/drakbackup_.c:3186
msgid "Restore from Hard Disk."
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÖĹÓÔËĎÇĎ ÄÉÓËÁ"
-#: ../../standalone/drakbackup_.c:3184
+#: ../../standalone/drakbackup_.c:3188
msgid "Please enter the directory where backups are stored"
msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ËÁÔÁĚĎÇ ÄĚŃ ÓĎČŇÁÎĹÎÉŃ ŇĹÚĹŇ×ÎŮČ ËĎĐÉĘ"
-#: ../../standalone/drakbackup_.c:3252
+#: ../../standalone/drakbackup_.c:3256
msgid "Select another media to restore from"
msgstr "÷ŮÂĹŇÉÔĹ ÄŇŐÇĎĘ ÎÁËĎĐÉÔĹĚŘ ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ"
-#: ../../standalone/drakbackup_.c:3254
+#: ../../standalone/drakbackup_.c:3258
msgid "Other Media"
msgstr "äŇŐÇÉĹ ÎÁËĎĐÉÔĹĚÉ"
-#: ../../standalone/drakbackup_.c:3259
+#: ../../standalone/drakbackup_.c:3263
msgid "Restore system"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÓÉÓÔĹÍŐ"
-#: ../../standalone/drakbackup_.c:3260
+#: ../../standalone/drakbackup_.c:3264
msgid "Restore Users"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ"
-#: ../../standalone/drakbackup_.c:3261
+#: ../../standalone/drakbackup_.c:3265
msgid "Restore Other"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÄŇŐÇĎĹ"
-#: ../../standalone/drakbackup_.c:3263
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3267
msgid "select path to restore (instead of /)"
-msgstr "đĎÖÁĚŐĘÓÔÁ, ŐËÁÖÉÔĹ ÔÉĐ ×ÁŰĹĘ ÍŮŰÉ"
+msgstr "×ŮÂĹŇÉÔĹ ĐŐÔŘ ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ (×ÍĹÓÔĎ /)"
-#: ../../standalone/drakbackup_.c:3267
+#: ../../standalone/drakbackup_.c:3271
msgid "Do new backup before restore (only for incremental backups.)"
msgstr ""
"÷ŮĐĎĚÎÉÔŘ ÎĎ×ĎĹ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹ ĐĹŇĹÄ ×ĎÓÓÔÁÎĎ×ĚĹÎÉĹÍ (ÔĎĚŘËĎ ÄĚŃ "
"Ő×ĹĚÉŢÉ×ÁŔÝÉČÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĘ.)"
-#: ../../standalone/drakbackup_.c:3269
+#: ../../standalone/drakbackup_.c:3273
msgid "Remove user directories before restore."
msgstr "őÄÁĚÉÔŘ ËÁÔÁĚĎÇÉ ĐĎĚŘÚĎ×ÁÔĹĚŃ ĐĹŇĹÄ ×ĎÓÓÔÁÎĎ×ĚĹÎÉĹÍ."
-#: ../../standalone/drakbackup_.c:3382
+#: ../../standalone/drakbackup_.c:3386
msgid ""
"Restore Selected\n"
"Catalog Entry"
msgstr ""
+"÷ĎÓÓÔÁÎĎ×ÉÔŘ ×ŮÂŇÁÎÎŮĘ\n"
+"ĐŐÎËÔ ËÁÔÁĚĎÇÁ"
-#: ../../standalone/drakbackup_.c:3392
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3396
msgid ""
"Restore Selected\n"
"Files"
-msgstr "őÄÁĚÉÔŘ ĎŢĹŇĹÄŘ"
+msgstr ""
+"÷ĎÓÓÔÁÎĎ×ÉÔŘ\n"
+"×ŮÂŇÁÎÎŮĹ ĆÁĘĚŮ"
-#: ../../standalone/drakbackup_.c:3409
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3413
msgid ""
"Change\n"
"Restore Path"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
+msgstr ""
+"éÚÍĹÎÉÔŘ ĐŐÔŘ\n"
+"×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ"
-#: ../../standalone/drakbackup_.c:3475
+#: ../../standalone/drakbackup_.c:3479
#, c-format
msgid "Backup files not found at %s."
-msgstr ""
+msgstr "ňĹÚĹŇ×ÎŮĹ ĆÁĘĚŮ × %s ÎĹ ÎÁĘÄĹÎŮ."
-#: ../../standalone/drakbackup_.c:3488
+#: ../../standalone/drakbackup_.c:3492
#, c-format
msgid ""
"Insert the CD with volume label %s\n"
" in the CD drive under mount point /mnt/cdrom"
msgstr ""
+"÷ÓÔÁ×ŘÔĹ ËĎÍĐÁËÔ-ÄÉÓË Ó ÍĹÔËĎĘ ÔĎÍÁ %s\n"
+"× CD-ĐŇÉ×ĎÄ Ó ÔĎŢËĎĘ ÍĎÎÔÉŇĎ×ÁÎÉŃ /mnt/cdrom"
-#: ../../standalone/drakbackup_.c:3488
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3492
msgid "Restore From CD"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ÄÉÓËĹÔŮ"
+msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ËĎÍÁËÔ-ÄÉÓËÁ"
-#: ../../standalone/drakbackup_.c:3490
+#: ../../standalone/drakbackup_.c:3494
#, c-format
msgid "Not the correct CD label. Disk is labelled %s."
-msgstr ""
+msgstr "îĹ×ĹŇÎÁŃ ÍĹÔËÁ ËĎÍĐÁËÔ-ÄÉÓËÁ. äÉÓË ÉÍĹĹÔ ÍĹÔËŐ %s."
-#: ../../standalone/drakbackup_.c:3500
+#: ../../standalone/drakbackup_.c:3504
#, c-format
msgid ""
"Insert the tape with volume label %s\n"
" in the tape drive device %s"
msgstr ""
+"÷ÓÔÁ×ŘÔĹ ĚĹÎÔŐ Ó ÍĹÔËĎĘ ÔĎÍÁ %s\n"
+"× ÎÁËĎĐÉÔĹĚŘ ÎÁ ÍÁÇÎÉÔÎĎĘ ĚĹÎÔĹ %s"
-#: ../../standalone/drakbackup_.c:3500
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3504
msgid "Restore From Tape"
-msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
+msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ Ó ĚĹÎÔŮ"
-#: ../../standalone/drakbackup_.c:3502
+#: ../../standalone/drakbackup_.c:3506
#, c-format
msgid "Not the correct tape label. Tape is labelled %s."
-msgstr ""
+msgstr "îĹ×ĹŇÎÁŃ ÍĹÔËÁ ĚĹÎÔŮ. ěĹÎÔÁ ÉÍĹĹÔ ÍĹÔËŐ %s."
-#: ../../standalone/drakbackup_.c:3522
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3526
msgid "Restore Via Network"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
+msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ĐĎ ÓĹÔÉ"
-#: ../../standalone/drakbackup_.c:3522
+#: ../../standalone/drakbackup_.c:3526
#, c-format
msgid "Restore Via Network Protocol: %s"
-msgstr ""
+msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ĐĎ ÓĹÔĹ×ĎÍŐ ĐŇĎÔĎËĎĚŐ: %s"
-#: ../../standalone/drakbackup_.c:3523
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3527
msgid "Host Name"
-msgstr "éÍŃ ÍÁŰÉÎŮ"
+msgstr "éÍŃ ČĎÓÔÁ"
-#: ../../standalone/drakbackup_.c:3524
+#: ../../standalone/drakbackup_.c:3528
msgid "Host Path or Module"
-msgstr ""
+msgstr "đŐÔŘ Ë ČĎÓÔŐ ÉĚÉ ÍĎÄŐĚŔ"
-#: ../../standalone/drakbackup_.c:3531
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3535
msgid "Password required"
-msgstr "đÁŇĎĚŘ"
+msgstr "ôŇĹÂŐĹÔÓŃ ĐÁŇĎĚŘ"
-#: ../../standalone/drakbackup_.c:3537
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3541
msgid "Username required"
-msgstr "đĎĚŘÚĎ×ÁÔĹĚŘÓËĎĹ ÉÍŃ"
+msgstr "ôŇĹÂŐĹÔÓŃ ÉÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../standalone/drakbackup_.c:3540
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3544
msgid "Hostname required"
-msgstr "éÍŃ ËĎÍĐŘŔÔĹŇÁ:"
+msgstr "ôŇĹÂŐĹÔÓŃ ÉÍŃ ČĎÓÔÁ"
-#: ../../standalone/drakbackup_.c:3545
+#: ../../standalone/drakbackup_.c:3549
msgid "Path or Module required"
-msgstr ""
+msgstr "ôŇĹÂŐĹÔÓŃ ĐŐÔŘ Ë ČĎÓÔŐ ÉĚÉ ÍĎÄŐĚŔ"
-#: ../../standalone/drakbackup_.c:3558
+#: ../../standalone/drakbackup_.c:3562
msgid "Files Restored..."
-msgstr ""
+msgstr "÷ĎÓÓÔÁÎÁ×ĚÉ×ÁŔÔÓŃ ĆÁĘĚŮ..."
-#: ../../standalone/drakbackup_.c:3561
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3565
msgid "Restore Failed..."
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
+msgstr "÷ĎÓÓÔÁÎĎ×ĚĹÎÉĹ ÚÁ×ĹŇŰÉĚĎÓŘ ÎĹŐÄÁŢĹĘ"
-#: ../../standalone/drakbackup_.c:3799
+#: ../../standalone/drakbackup_.c:3803
msgid "Restore all backups"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ×ÓĹ ŇĹÚĹŇ×ÎŮĹ ËĎĐÉÉ"
-#: ../../standalone/drakbackup_.c:3808
+#: ../../standalone/drakbackup_.c:3812
msgid "Custom Restore"
msgstr "÷ŮÂĎŇĎŢÎĎĹ ×ĎÓÓÔÁÎĎ×ĚĹÎÉĹ"
-#: ../../standalone/drakbackup_.c:3854
+#: ../../standalone/drakbackup_.c:3858
msgid "CD in place - continue."
-msgstr ""
+msgstr "ëĎÍĐÁËÔ-ÄÉÓË ÎÁ ÍĹÓÔĹ - ĐŇĎÄĎĚÖĹÎÉĹ."
-#: ../../standalone/drakbackup_.c:3860
+#: ../../standalone/drakbackup_.c:3864
msgid "Browse to new restore repository."
-msgstr ""
+msgstr "îÁĘÔÉ ÎĎ×ĎĹ ČŇÁÎÉĚÉÝĹ ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ."
-#: ../../standalone/drakbackup_.c:3863
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3867
msgid "Restore From Catalog"
-msgstr "úÁĐÁÓÎÁŃ ÔÁÂĚÉĂÁ ŇÁÚÄĹĚĎ×"
+msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ËÁÔÁĚĎÇÁ"
-#: ../../standalone/drakbackup_.c:3891
-#, fuzzy
+#: ../../standalone/drakbackup_.c:3895
msgid "Restore Progress"
-msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ ÉÚ ĆÁĘĚÁ"
+msgstr "đŇĎĂĹÓÓ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ"
-#: ../../standalone/drakbackup_.c:3933 ../../standalone/drakbackup_.c:3966
-#: ../../standalone/drakbackup_.c:3992 ../../standalone/drakbackup_.c:4019
-#: ../../standalone/drakbackup_.c:4046 ../../standalone/drakbackup_.c:4106
-#: ../../standalone/drakbackup_.c:4133 ../../standalone/drakbackup_.c:4163
-#: ../../standalone/drakbackup_.c:4189
+#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:3970
+#: ../../standalone/drakbackup_.c:3996 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4110
+#: ../../standalone/drakbackup_.c:4137 ../../standalone/drakbackup_.c:4167
+#: ../../standalone/drakbackup_.c:4193
msgid "Previous"
msgstr "îÁÚÁÄ"
-#: ../../standalone/drakbackup_.c:3937 ../../standalone/drakbackup_.c:4023
+#: ../../standalone/drakbackup_.c:3941 ../../standalone/drakbackup_.c:4027
#: ../../standalone/logdrake_.c:223
msgid "Save"
msgstr "óĎČŇÁÎÉÔŘ"
-#: ../../standalone/drakbackup_.c:3996
+#: ../../standalone/drakbackup_.c:4000
msgid "Build Backup"
msgstr "óĎÚÄÁÔŘ ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ"
-#: ../../standalone/drakbackup_.c:4050 ../../standalone/drakbackup_.c:4630
+#: ../../standalone/drakbackup_.c:4054 ../../standalone/drakbackup_.c:4634
msgid "Restore"
msgstr "÷ĎÓÓÔÁÎĎ×ÉÔŘ"
-#: ../../standalone/drakbackup_.c:4229
+#: ../../standalone/drakbackup_.c:4233
msgid ""
"Error during sendmail.\n"
" Your report mail was not sent.\n"
" Please configure sendmail"
msgstr ""
+"ďŰÉÂËÁ ĐŇÉ ĎĐŇÁ×ËĹ ĐÉÓŘÍÁ.\n"
+" ÷ÁŰĹ ĐÉÓŘÍĎ Ó ĎÔŢĹÔĎÍ ÎĹ ÂŮĚĎ ĎÔĐŇÁ×ĚĹÎĎ.\n"
+" đĎÖÁĚŐĘÓÔÁ, ÎÁÓÔŇĎĘÔĹ sendmail"
-#: ../../standalone/drakbackup_.c:4253
+#: ../../standalone/drakbackup_.c:4257
msgid ""
"The following packages need to be installed:\n"
" @list_of_rpm_to_install"
@@ -11201,7 +11848,7 @@ msgstr ""
"óĚĹÄŐŔÝÉĹ ĐÁËĹÔŮ ÄĎĚÖÎŮ ÂŮÔŘ ŐÓÔÁÎĎ×ĚĹÎŮ:\n"
" @list_of_rpm_to_install"
-#: ../../standalone/drakbackup_.c:4276
+#: ../../standalone/drakbackup_.c:4280
msgid ""
"Error during sending file via FTP.\n"
" Please correct your FTP configuration."
@@ -11209,19 +11856,19 @@ msgstr ""
"ďŰÉÂËÁ ĐŇÉ ĎÔĐŇÁ×ËĹ ĆÁĘĚÁ ĐĎ FTP.\n"
"đĎÖÁĚŐĘÓÔÁ, ĐĎÄĐŇÁ×ŘÔĹ Ó×ĎŔ ÎÁÓÔŇĎĘËŐ FTP."
-#: ../../standalone/drakbackup_.c:4299
+#: ../../standalone/drakbackup_.c:4303
msgid "Please select data to restore..."
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ÄÁÎÎŮĹ ÄĚŃ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ..."
-#: ../../standalone/drakbackup_.c:4320
+#: ../../standalone/drakbackup_.c:4324
msgid "Please select media for backup..."
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ÎÁËĎĐÉÔĹĚŘ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ..."
-#: ../../standalone/drakbackup_.c:4342
+#: ../../standalone/drakbackup_.c:4346
msgid "Please select data to backup..."
msgstr "đĎÖÁĚŐĘÓÔÁ, ×ŮÂĹŇÉÔĹ ÄÁÎÎŮĹ ÄĚŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ..."
-#: ../../standalone/drakbackup_.c:4364
+#: ../../standalone/drakbackup_.c:4368
msgid ""
"No configuration file found \n"
"please click Wizard or Advanced."
@@ -11229,59 +11876,59 @@ msgstr ""
"ćÁĘĚ ËĎÎĆÉÇŐŇÁĂÉÉ ÎĹ ÎÁĘÄĹÎ, \n"
"ĐĎÖÁĚŐĘÓÔÁ, ÎÁÖÍÉÔĹ íÁÓÔĹŇ ÉĚÉ äĎĐĎĚÎÉÔĹĚŘÎĎ."
-#: ../../standalone/drakbackup_.c:4385
+#: ../../standalone/drakbackup_.c:4389
msgid "Under Devel ... please wait."
msgstr "ňÁÚŇÁÂÁÔŮ×ÁĹÔÓŃ ... ĐĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ."
-#: ../../standalone/drakbackup_.c:4466
+#: ../../standalone/drakbackup_.c:4470
msgid "Backup system files"
msgstr "ňĹÚĹŇ×ÎŮĹ ĆÁĘĚŮ"
-#: ../../standalone/drakbackup_.c:4468
+#: ../../standalone/drakbackup_.c:4472
msgid "Backup user files"
msgstr "úÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ĆÁĘĚŮ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
-#: ../../standalone/drakbackup_.c:4470
+#: ../../standalone/drakbackup_.c:4474
msgid "Backup other files"
msgstr "úÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ÄŇŐÇÉĹ ĆÁĘĚŮ"
-#: ../../standalone/drakbackup_.c:4472 ../../standalone/drakbackup_.c:4505
+#: ../../standalone/drakbackup_.c:4476 ../../standalone/drakbackup_.c:4509
msgid "Total Progress"
msgstr "ďÂÝÉĘ ĐŇĎĂĹÓÓ"
-#: ../../standalone/drakbackup_.c:4496
+#: ../../standalone/drakbackup_.c:4500
msgid "files sending by FTP"
msgstr "ĎÔĐŇÁ×ËÁ ĆÁĘĚĎ× ĐĎ FTP"
-#: ../../standalone/drakbackup_.c:4500
+#: ../../standalone/drakbackup_.c:4504
msgid "Sending files..."
msgstr "ćÁĘĚŮ ĎÔĐŇÁ×ĚŃŔÔÓŃ..."
-#: ../../standalone/drakbackup_.c:4586
+#: ../../standalone/drakbackup_.c:4590
msgid "Backup Now from configuration file"
msgstr "úÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ÎĹÍĹÄĚĹÎÎĎ ÉÚ ĆÁĘĚÁ ËĎÎĆÉÇŐŇÁĂÉÉ"
-#: ../../standalone/drakbackup_.c:4591
+#: ../../standalone/drakbackup_.c:4595
msgid "View Backup Configuration."
msgstr "đĎËÁÚÁÔŘ ËĎÎĆÉÇŐŇÁĂÉŔ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakbackup_.c:4612
+#: ../../standalone/drakbackup_.c:4616
msgid "Wizard Configuration"
msgstr "íÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ"
-#: ../../standalone/drakbackup_.c:4617
+#: ../../standalone/drakbackup_.c:4621
msgid "Advanced Configuration"
msgstr "ňÁÓŰÉŇĹÎÎÁŃ ÎÁÓÔŇĎĘËÁ"
-#: ../../standalone/drakbackup_.c:4622
+#: ../../standalone/drakbackup_.c:4626
msgid "Backup Now"
msgstr "úÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ÎĹÍĹÄĚĹÎÎĎ"
-#: ../../standalone/drakbackup_.c:4656
+#: ../../standalone/drakbackup_.c:4660
msgid "Drakbackup"
msgstr "Drakbackup"
-#: ../../standalone/drakbackup_.c:4705
+#: ../../standalone/drakbackup_.c:4711
msgid ""
"options description:\n"
"\n"
@@ -11312,8 +11959,33 @@ msgid ""
" \n"
"\n"
msgstr ""
+"ĎĐÉÓÁÎÉĹ ĎĐĂÉĘ:\n"
+" - ňĹÖÉÍ ÓÖÁÔÉŃ:\n"
+"\n"
+" ĺÓĚÉ ×Ů ×ŮÂĹŇĹÔĹ ÓÖÁÔÉĹ bzip2, ×Ů ÓĎÖÍĹÔĹ\n"
+" Ó×ĎÉ ÄÁÎÎŮĹ ÓÉĚŘÎĹĹ gzip'Á (ĎËĎĚĎ 2-10%).\n"
+" üÔÁ ĎĐĂÉŃ ĐĎ ŐÍĎĚŢÁÎÉŔ ÎĹ ×ËĚŔŢĹÎÁ, ĐĎÔĎÍŐ ŢÔĎ\n"
+" ÄĚŃ ÜÔĎÇĎ ÓÖÁÔÉŃ ÔŇĹÂŐĹÔÓŃ ÂĎĚŘŰĹ ×ŇĹÍĹÎÉ (ĎËĎĚĎ 1000%).\n"
+" \n"
+" - ňĹÖÉÍ ĎÂÎĎ×ĚĹÎÉŃ:\n"
+"\n"
+" üÔÁ ĎĐĂÉŃ ĎÂÎĎ×ÉÔ ×ÁŰŐ ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ, ÎĎ ÎÁ\n"
+" ÓÁÍĎÍ ÄĹĚĹ ÜÔÁ ĎĐĂÉŃ ÂĹÓĐĎĚĹÚÎÁ, ĐĎÔĎÍŐ ŢÔĎ ×Ů\n"
+" ÄĎĚÖÎŮ ŇÁÓĐÁËĎ×ÁÔŘ Ó×ĎŔ ŇĹÚĹŇ×ÎŐŔ ËĎĐÉŔ ĐĹŇĹÄ ĹĹ ĎÂÎĎ×ĚĹÎÉĹÍ.\n"
+" \n"
+" - ňĹÖÉÍ .backupignore:\n"
+"\n"
+" ëÁË × cvs, Drakbackup ĐŇĎÉÇÎĎŇÉŇŐĹÔ ×ÓĹ Ó×ŃÚÉ,\n"
+" ×ËĚŔŢĹÎÎŮĹ × ĆÁĘĚŮ .backupignore × ËÁÖÄĎĘ ÄÉŇĹËÔĎŇÉÉ.\n"
+" đŇÉÍĹŇ: \n"
+" /*> cat .backupignore*/\n"
+" *.o\n"
+" *~\n"
+" ...\n"
+" \n"
+"\n"
-#: ../../standalone/drakbackup_.c:4735
+#: ../../standalone/drakbackup_.c:4741
msgid ""
"\n"
" Some errors during sendmail are caused by \n"
@@ -11327,7 +11999,7 @@ msgstr ""
" ĎĐŇĹÄĹĚÉÔŘ myhostname ÉĚÉ mydomain × /etc/postfix/main.cf\n"
"\n"
-#: ../../standalone/drakbackup_.c:4743
+#: ../../standalone/drakbackup_.c:4749
msgid ""
"options description:\n"
"\n"
@@ -11367,8 +12039,37 @@ msgid ""
"\n"
"\n"
msgstr ""
+"ĎĐÉÓÁÎÉĹ ĎĐĂÉĘ:\n"
+"\n"
+" - ňĹÚĹŇ×ÉŇĎ×ÁÎÉĹ ÓÉÓÔĹÍÎŮČ ĆÁĘĚĎ×:\n"
+"\n"
+"\tüÔÁ ĎĐĂÉŃ ĐĎÚ×ĎĚŃĹÔ ×ÁÍ ŇĹÚĹŇ×ÉŇĎ×ÁÔŘ Ó×ĎĘ ËÁÔÁĚĎÇ /etc,\n"
+"\tËĎÔĎŇŮĘ ÓĎÄĹŇÖÉÔ ×ÓĹ ĆÁĘĚŮ ÎÁÓÔŇĎĘËÉ. đĎÖÁĚŐĘÓÔÁ, ÂŐÄŘÔĹ\n"
+"\tĎÓÔĎŇĎÖÎŮ ÎÁ ÜÔÁĐĹ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ, ŢÔĎÂŮ ÎĹ ĐĹŇĹÚÁĐÉÓÁÔŘ:\n"
+"\t\t/etc/passwd \n"
+"\t\t/etc/group \n"
+"\t\t/etc/fstab \n"
+"\n"
+" - ňĹÚĹŇ×ÉŇĎ×ÁÎÉĹ ĆÁĘĚĎ× ĐĎĚŘÚĎ×ÁÔĹĚŃ: \n"
+"\n"
+"\tüÔÁ ĎĐĂÉŃ ĐĎÚ×ĎĚŃĹÔ ×ÁÍ ×ŮÂŇÁÔŘ ×ÓĹČ ĐĎĚŘÚĎ×ÁÔĹĚĹĘ,\n"
+"\tÄÁÎÎŮĹ ËĎÔĎŇŮČ ×Ů ČĎÔÉÔĹ ÚÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ.\n"
+"\täĚŃ ÜËĎÎĎÍÉÉ ÄÉÓËĎ×ĎÇĎ ĐŇĎÓÔŇÁÎÓÔ×Á ŇĹËĎÍĹÎÄŐĹÔÓŃ,\n"
+"\tŢÔĎÂŮ ×Ů ÎĹ ×ËĚŔŢÁĚÉ ËÜŰ ÂŇĎŐÚĹŇÁ.\n"
+"\n"
+" - ő×ĹĚÉŢÉ×ÁŔÝÉĹÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ:\n"
+"\tő×ĹĚÉŢÉ×ÁŔÝĹĹÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹ Ń×ĚŃĹÔÓŃ ÎÁÉÂĎĚĹĹ ÍĎÝÎĎĘ\n"
+"\tĎĐĂÉĹĘ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ. üÔÁ ĎĐĂÉŃ ĐĎÚ×ĎĚŃĹÔ ×ÁÍ × ĐĹŇ×ŮĘ\n"
+"\tŇÁÚ ÚÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ×ÓĹ Ó×ĎÉ ÄÁÎÎŮĹ, Á × ÄÁĚŘÎĹĘŰĹÍ\n"
+"\tÔĎĚŘËĎ ÉÚÍĹÎÉ×ŰÉĹÓŃ.\n"
+"\täÁĚĹĹ, ×Ů ÓÍĎÖĹÔĹ ÎÁ ÜÔÁĐĹ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ ×ĎÓÓÔÁÎĎ×ÉÔŘ\n"
+"\tÓ×ĎÉ ÄÁÎÎŮĹ ÚÁ ŐËÁÚÁÎÎŮĘ ĐĹŇÉĎÄ.\n"
+"\tĺÓĚÉ ×Ů ÎĹ ×ŮÂŇÁĚÉ ÜÔŐ ĎĐĂÉŔ, ×ÓĹ ÓÔÁŇŮĹ ĐÁËĹÔŮ ÂŐÄŐÔ\n"
+"\tŐÄÁĚŃÔŘÓŃ ĐĹŇĹÄ ËÁÖÄŮÍ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹÍ.\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:4782
+#: ../../standalone/drakbackup_.c:4788
msgid ""
"restore description:\n"
" \n"
@@ -11395,20 +12096,44 @@ msgid ""
"\n"
"\n"
msgstr ""
+"ĎĐÉÓÁÎÉĹ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ:\n"
+"\n"
+"âŐÄĹÔ ÉÓĐĎĚŘÚĎ×ÁÎÁ ÔĎĚŘËĎ ĐĎÓĚĹÄÎŃŃ ÄÁÔÁ, ĐĎÔĎÍŐ ŢÔĎ ÄĚŃ\n"
+"Ő×ĹĚÉŢÉ×ÁŔÝÉČÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĘ ÎĹĎÂČĎÄÉÍĎ ×ĎÓÓÔÁÎĎ×ÉÔŘ ĎÄÎŐ\n"
+"ÚÁ ÄŇŐÇĎĘ ×ÓĹ ŇĹÚĹŇ×ÎŮĹ ËĎĐÉÉ.\n"
+"\n"
+"đĎÜÔĎÍŐ, ĹÓĚÉ ×Ů ÎĹ ČĎÔÉÔĹ ×ĎÓÓÔÁÎÁ×ĚÉ×ÁÔŘ ÄÁÎÎŮĹ ĐĎĚŘÚĎ×ÁÔĹĚŃ,\n"
+"ĐĎÖÁĚŐĘÓÔÁ, ÓÎÉÍÉÔĹ ×ŮÄĹĚĹÎÉĹ ÓĎ ×ÓĹČ ĹÇĎ ĐŐÎËÔĎ×.\n"
+"\n"
+"÷ ĐŇĎÔÉ×ÎĎÍ ÓĚŐŢÁĹ ×Ů ÓÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÔĎĚŘËĎ ÜÔĎ\n"
+"\n"
+" - ő×ĹĚÉŢÉ×ÁŔÝÉĹÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ:\n"
+"\n"
+"\tő×ĹĚÉŢÉ×ÁŔÝĹĹÓŃ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹ Ń×ĚŃĹÔÓŃ ÎÁÉÂĎĚĹĹ ÍĎÝÎĎĘ\n"
+"\tĎĐĂÉĹĘ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉŃ. üÔÁ ĎĐĂÉŃ ĐĎÚ×ĎĚŃĹÔ ×ÁÍ × ĐĹŇ×ŮĘ\n"
+"\tŇÁÚ ÚÁŇĹÚĹŇ×ÉŇĎ×ÁÔŘ ×ÓĹ Ó×ĎÉ ÄÁÎÎŮĹ, Á × ÄÁĚŘÎĹĘŰĹÍ\n"
+"\tÔĎĚŘËĎ ÉÚÍĹÎÉ×ŰÉĹÓŃ.\n"
+"\täÁĚĹĹ, ×Ů ÓÍĎÖĹÔĹ ÎÁ ÜÔÁĐĹ ×ĎÓÓÔÁÎĎ×ĚĹÎÉŃ ×ĎÓÓÔÁÎĎ×ÉÔŘ\n"
+"tÓ×ĎÉ ÄÁÎÎŮĹ ÚÁ ŐËÁÚÁÎÎŮĘ ĐĹŇÉĎÄ.\n"
+"\tĺÓĚÉ ×Ů ÎĹ ×ŮÂŇÁĚÉ ÜÔŐ ĎĐĂÉŔ, ×ÓĹ ÓÔÁŇŮĹ ĐÁËĹÔŮ ÂŐÄŐÔ\n"
+"\tŐÄÁĚŃÔŘÓŃ ĐĹŇĹÄ ËÁÖÄŮÍ ŇĹÚĹŇ×ÉŇĎ×ÁÎÉĹÍ.\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/drakbackup_.c:4808 ../../standalone/drakbackup_.c:4885
+#: ../../standalone/drakbackup_.c:4814 ../../standalone/drakbackup_.c:4891
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:4810 ../../standalone/drakbackup_.c:4887
+#: ../../standalone/drakbackup_.c:4816 ../../standalone/drakbackup_.c:4893
msgid ""
" updates 2002 MandrakeSoft by Stew Benedict <sbenedict\\@mandrakesoft.com>"
msgstr ""
" ĎÂÎĎ×ĚĹÎÉŃ 2002 MandrakeSoft, Stew Benedict <sbenedict\\@mandrakesoft.com>"
-#: ../../standalone/drakbackup_.c:4812 ../../standalone/drakbackup_.c:4889
+#: ../../standalone/drakbackup_.c:4818 ../../standalone/drakbackup_.c:4895
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"
@@ -11438,7 +12163,7 @@ msgstr ""
" ĐŇĎÇŇÁÍÍĎĘ; ĹÓĚÉ ÎĹÔ - ÎÁĐÉŰÉÔĹ × Free Software Foundation, Inc.,\n"
" 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA."
-#: ../../standalone/drakbackup_.c:4826
+#: ../../standalone/drakbackup_.c:4832
msgid ""
"Description:\n"
"\n"
@@ -11514,7 +12239,7 @@ msgstr ""
"\n"
"\n"
-#: ../../standalone/drakbackup_.c:4864
+#: ../../standalone/drakbackup_.c:4870
msgid ""
"options description:\n"
"\n"
@@ -11532,7 +12257,7 @@ msgstr ""
"Ó×ĎĹÍ ÖĹÓÔËĎÍ ÄÉÓËĹ, Á ŐÖĹ ĐĎÔĎÍ ĎÔĐŇÁ×ĚŃÔŘ ĹĹ ÎÁ ÓĹŇ×ĹŇ.\n"
"\n"
-#: ../../standalone/drakbackup_.c:4873
+#: ../../standalone/drakbackup_.c:4879
msgid ""
"\n"
"Restore Backup Problems:\n"
@@ -11553,7 +12278,7 @@ msgstr ""
"ÄÉŇĹËÔĎŇÉŔ É ×Ů ĐĎÔĹŇŃĹÔĹ ×ÓĹ Ó×ĎÉ ÄÁÎÎŮĹ. âŐÄŘÔĹ ĎÓÔĎŇĎÖÎŮ\n"
"É ÎĹ ÉÚÍĹÎŃĘÔĹ ŇĹÚĹŇ×ÎŮĹ ĆÁĘĚŮ ×ŇŐŢÎŐŔ.\n"
-#: ../../standalone/drakbackup_.c:4903
+#: ../../standalone/drakbackup_.c:4909
msgid ""
"Description:\n"
"\n"
@@ -11645,18 +12370,30 @@ msgid ""
"\n"
"OPTIONS:\n"
msgstr ""
+"drakbug ×ĹŇÓÉŃ %s\n"
+"Copyright (C) 2002 MandrakeSoft.\n"
+"üÔĎ ĎÔËŇŮÔĎĹ ĐŇĎÇŇÁÍÍÎĎĹ ĎÂĹÓĐĹŢĹÎÉĹ É ÍĎÖĹÔ ŇÁÓĐŇĎÓÔŇÁÎŃÔŘÓŃ ÄÁĚŘŰĹ\n"
+"ÎÁ ĎÓÎĎ×ÁÎÉÉ ŐÓĚĎ×ÉŃĘ GNU GPL.\n"
+"\n"
+"ÉÓĐĎĚŘÚĎ×ÁÎÉĹ: drakbug [ďđăéé] [îáú÷áîéĺ_đňďçňáííů]\n"
+"\n"
+"ďđăéé:\n"
#: ../../standalone/drakbug_.c:47
msgid " --help - print this help message.\n"
-msgstr ""
+msgstr " --help - ×Ů×ĹÓÔÉ ÜÔĎ ÓĐŇÁ×ĎŢÎĎĹ ÓĎĎÂÝĹÎÉĹ.\n"
#: ../../standalone/drakbug_.c:48
msgid " --report - program should be one of mandrake tools\n"
msgstr ""
+" --report - ĐŇĎÇŇÁÍÍÁ ÄĎĚÖÎÁ ÂŮÔŘ ĎÄÎĎĘ ÉÚ ÓĹŇ×ÉÓÎŮČ ĐŇĎÇŇÁÍÍ "
+"mandrake\n"
#: ../../standalone/drakbug_.c:49
msgid " --incident - program should be one of mandrake tools\n"
msgstr ""
+" --incident - ĐŇĎÇŇÁÍÍÁ ÄĎĚÖÎÁ ÂŮÔŘ ĎÄÎĎĘ ÉÚ ÓĹŇ×ÉÓÎŮČ ĐŇĎÇŇÁÍÍ "
+"mandrake\n"
#: ../../standalone/drakbug_.c:64
msgid "Mandrake Bug Report Tool"
@@ -11671,8 +12408,8 @@ msgid "Synchronization tool"
msgstr "óĹŇ×ÉÓÎÁŃ ĐŇĎÇŇÁÍÍÁ ÓÉÎČŇĎÎÉÚÁĂÉÉ"
#: ../../standalone/drakbug_.c:72 ../../standalone/drakbug_.c:86
-#: ../../standalone/drakbug_.c:151 ../../standalone/drakbug_.c:153
-#: ../../standalone/drakbug_.c:157
+#: ../../standalone/drakbug_.c:156 ../../standalone/drakbug_.c:158
+#: ../../standalone/drakbug_.c:162
msgid "Standalone Tools"
msgstr "őÎÉËÁĚŘÎŮĹ ÓĹŇ×ÉÓÎŮĹ ĐŇĎÇŇÁÍÍŮ"
@@ -11737,7 +12474,7 @@ msgid ""
"\n"
"\n"
"To submit a bug report, click on the button report.\n"
-"This will open a web browser window on https://www.bugzilla.com\n"
+"This will open a web browser window on https://drakbug.mandrakesoft.com\n"
" where you'll find a form to fill in.The information displayed above will "
"be \n"
"transferred to that server\n"
@@ -11746,27 +12483,26 @@ msgstr ""
"\n"
"\n"
"ţÔĎÂŮ ĎĐŇÁ×ÉÔŘ ĎÔŢĹÔ Ď ĎŰÉÂËĹ, ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ ďÔŢĹÔ.\n"
-"üÔĎ ĎÔËŇĎĹÔ ĎËÎĎ ×ĹÂ-ÂŇĎŐÚĹŇÁ ÎÁ https://www.bugzilla.com,\n"
+"üÔĎ ĎÔËŇĎĹÔ ĎËÎĎ ×ĹÂ-ÂŇĎŐÚĹŇÁ ÎÁ https://drakbug.mandrakesoft.com,\n"
"ÇÄĹ ×Ů ÎÁĘÄĹÔĹ ĆĎŇÍŐ ÄĚŃ ÚÁĐĎĚÎĹÎÉŃ. éÎĆĎŇÍÁĂÉŃ, ĐŇĹÄÓÔÁ×ĚĹÎÎÁŃ\n"
"×ŮŰĹ, ÂŐÄĹÔ ĎÔĐŇÁ×ĚĹÎÁ ÎÁ ÜÔĎÔ ÓĹŇ×ĹŇ\n"
"\n"
-#: ../../standalone/drakbug_.c:136
+#: ../../standalone/drakbug_.c:134
msgid "Report"
msgstr "ďÔŢĹÔ"
-#: ../../standalone/drakbug_.c:166
+#: ../../standalone/drakbug_.c:171
msgid "Not installed"
msgstr "îĹ ŐÓÔÁÎĎ×ĚĹÎ"
-#: ../../standalone/drakbug_.c:183
+#: ../../standalone/drakbug_.c:189
msgid "connecting to Bugzilla wizard ..."
msgstr "×ŮĐĎĚÎŃĹÔÓŃ ĐĎÄËĚŔŢĹÎÉĹ Ë ÍÁÓÔĹŇŐ Bugzilla..."
-#: ../../standalone/drakbug_.c:190
-#, fuzzy
+#: ../../standalone/drakbug_.c:196
msgid "No browser available! Please install one"
-msgstr "÷Ů ÍĎÖĹÔĹ ×ŮÂŇÁÔŘ ÄŇŐÇÉĹ ŃÚŮËÉ, ËĎÔĎŇŮĹ ÂŐÄŐÔ ÄĎÓÔŐĐÎŮ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
+msgstr "âŇĎŐÚĹŇ ÎĹÄĎÓÔŐĐĹÎ! đĎÖÁĚŐĘÓÔÁ, ŐÓÔÁÎĎ×ÉÔĹ ĹÇĎ"
#: ../../standalone/drakconnect_.c:79
#, c-format
@@ -11794,6 +12530,7 @@ msgid ""
"Name of the profile to create (the new profile is created as a copy of the "
"current one) :"
msgstr ""
+"îÁÚ×ÁÎÉĹ ÓĎÚÄÁ×ÁĹÍĎÇĎ ĐŇĎĆÉĚŃ (ÎĎ×ŮĘ ĐŇĎĆÉĚŘ ÓĎÚÄÁĹÔÓŃ ËÁË ËĎĐÉŃ ÔĹËŐÝĹÇĎ) :"
#: ../../standalone/drakconnect_.c:160
msgid "Hostname: "
@@ -11863,10 +12600,6 @@ msgstr "íÁÓÔĹŇ..."
msgid "Apply"
msgstr "đŇÉÍĹÎÉÔŘ"
-#: ../../standalone/drakconnect_.c:301
-msgid "Please Wait... Applying the configuration"
-msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ... đŇÉÍĹÎŃŔÔÓŃ ÎÁÓÔŇĎĘËÉ"
-
#: ../../standalone/drakconnect_.c:383 ../../standalone/drakconnect_.c:406
msgid "Connected"
msgstr "đĎÄËĚŔŢĹÎ"
@@ -11988,7 +12721,7 @@ msgstr "éÍŃ ÍĎÄŐĚŃ"
msgid "Size"
msgstr "ňÁÚÍĹŇ"
-#: ../../standalone/drakfloppy_.c:73 ../../standalone/drakfloppy_.c:372
+#: ../../standalone/drakfloppy_.c:73
msgid "drakfloppy"
msgstr "drakfloppy"
@@ -12053,12 +12786,12 @@ msgstr "÷Ů×ĎÄ"
msgid "Build the disk"
msgstr "óĎÚÄÁÔŘ ÄÉÓË"
-#: ../../standalone/drakfloppy_.c:421
+#: ../../standalone/drakfloppy_.c:376
#, c-format
msgid "Be sure a media is present for the device %s"
msgstr "őÂĹÄÉÔÓŘ, ŢÔĎ ÎÁËĎĐÉÔĹĚŘ ÎÁČĎÄÉÔÓŃ × ŐÓÔŇĎĘÓÔ×Ĺ %s"
-#: ../../standalone/drakfloppy_.c:426
+#: ../../standalone/drakfloppy_.c:381
#, c-format
msgid ""
"There is no medium or it is write-protected for device %s.\n"
@@ -12067,12 +12800,12 @@ msgstr ""
"÷ ŐÓÔŇĎĘÓÔ×Ĺ %s ĎÔÓŐÔÓÔ×ŐĹÔ ÎÁËĎĐÉÔĹĚŘ ÉĚÉ ĎÎ ÚÁÝÉÝĹÎ ĎÔ ÚÁĐÉÓÉ.\n"
"đĎÖÁĚŐĘÓÔÁ, ×ÓÔÁ×ŘÔĹ ĹÇĎ."
-#: ../../standalone/drakfloppy_.c:428
+#: ../../standalone/drakfloppy_.c:383
#, c-format
msgid "Unable to fork: %s"
msgstr "îĹ×ĎÚÍĎÖÎĎ ŇÁÚ×ĹÔ×ÉÔŘ: %s"
-#: ../../standalone/drakfloppy_.c:432
+#: ../../standalone/drakfloppy_.c:387
#, c-format
msgid ""
"Unable to close properly mkbootdisk: \n"
@@ -12565,158 +13298,146 @@ msgstr ""
"\n"
"îÁÖÍÉÔĹ ÎÁ îÁÓÔŇĎÉÔŘ ÄĚŃ ÚÁĐŐÓËÁ ÍÁÓÔĹŇÁ ÎÁÓÔŇĎĘËÉ."
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "group"
-msgstr "ňÁÂĎŢÁŃ ÇŇŐĐĐÁ"
+msgstr "ÇŇŐĐĐÁ"
-#: ../../standalone/drakperm_.c:41
+#: ../../standalone/drakperm_.c:42
msgid "path"
-msgstr ""
+msgstr "ĐŐÔŘ"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "permissions"
-msgstr "ŇÁÚÄĹĚ %s"
+msgstr "ŇÁÚŇĹŰĹÎÉŃ"
-#: ../../standalone/drakperm_.c:41
-#, fuzzy
+#: ../../standalone/drakperm_.c:42
msgid "user"
-msgstr "éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
+msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ"
-#: ../../standalone/drakperm_.c:48
+#: ../../standalone/drakperm_.c:49
msgid "Up"
-msgstr ""
+msgstr "÷×ĹŇČ"
-#: ../../standalone/drakperm_.c:49
-#, fuzzy
+#: ../../standalone/drakperm_.c:50
msgid "delete"
msgstr "őÄÁĚÉÔŘ"
-#: ../../standalone/drakperm_.c:50
+#: ../../standalone/drakperm_.c:51
msgid "edit"
-msgstr ""
+msgstr "ŇĹÄÁËÔÉŇĎ×ÁÔŘ"
-#: ../../standalone/drakperm_.c:51
-#, fuzzy
+#: ../../standalone/drakperm_.c:52
msgid "Down"
-msgstr "çĎÔĎ×Ď"
+msgstr "÷ÎÉÚ"
-#: ../../standalone/drakperm_.c:52
-#, fuzzy
+#: ../../standalone/drakperm_.c:53
msgid "add a rule"
-msgstr "äĎÂÁ×ÉÔŘ ÍĎÄŐĚŘ"
+msgstr "ÄĎÂÁ×ÉÔŘ ĐŇÁ×ÉĚĎ"
-#: ../../standalone/drakperm_.c:53
+#: ../../standalone/drakperm_.c:54
msgid "select perm file to see/edit"
-msgstr ""
+msgstr "×ŮÂŇÁÔŘ ĆÁĘĚ perm ÄĚŃ ĐŇĎÓÍĎÔŇÁ/ŇĹÄÁËÔÉŇĎ×ÁÎÉŃ"
-#: ../../standalone/drakperm_.c:56
+#: ../../standalone/drakperm_.c:57
msgid ""
"Drakperm is used to see files to use in order to fix permissions, owners, "
"and groups via msec.\n"
"You can also edit your own rules which will owerwrite the default rules."
msgstr ""
+"Drakperm ÉÓĐĎĚŘÚŐĹÔÓŃ ÄĚŃ ĐŇĎÓÍĎÔŇÁ ĆÁĘĚĎ×, ÉÓĐĎĚŘÚŐĹÍŮČ ÄĚŃ ŐÓÔÁÎĎ×ËÉ\n"
+"ŇÁÚŇĹŰĹÎÉĘ, ×ĚÁÄĹĚŘĂĹ× É ÇŇŐĐĐ ĐŇÉ ĐĎÍĎÝÉ msec.\n"
+"÷Ů ÔÁËÖĹ ÍĎÖĹÔĹ ŇĹÄÁËÔÉŇĎ×ÁÔŘ Ó×ĎÉ ÓĎÂÓÔ×ĹÎÎŮĹ ĐŇÁ×ÉĚÁ, ËĎÔĎŇŮĹ\n"
+"ĐĹŇĹÚÁĐÉŰŐÔ ĐŇÁ×ÉĚÁ ĐĎ ŐÍĎĚŢÁÎÉŔ."
-#: ../../standalone/drakperm_.c:61
-#, fuzzy
+#: ../../standalone/drakperm_.c:62
msgid "Add a new rule at the end"
-msgstr "äĎÂÁ×ÉÔŘ ÎĎ×ŮĘ ĐŇÉÎÔĹŇ"
+msgstr "äĎÂÁ×ÉÔŘ × ËĎÎĂĹ ÎĎ×ĎĹ ĐŇÁ×ÉĚĎ"
-#: ../../standalone/drakperm_.c:62
+#: ../../standalone/drakperm_.c:63
msgid "Edit curent rule"
-msgstr ""
+msgstr "ňĹÄÁËÔÉŇĎ×ÁÔŘ ÔĹËŐÝĹĹ ĐŇÁ×ÉĚĎ"
-#: ../../standalone/drakperm_.c:63
-#, fuzzy
+#: ../../standalone/drakperm_.c:64
msgid "Up selected rule one level"
-msgstr "óÎŃÔŘ ×ŮÄĹĚĹÎÉĹ ÓĎ ×ÓĹČ"
+msgstr "đĹŇĹÍĹÓÔÉÔŘ ×ŮÂŇÁÎÎĎĹ ĐŇÁ×ÉĚĎ ÎÁ ĎÄÉÎ ŐŇĎ×ĹÎŘ ××ĹŇČ"
-#: ../../standalone/drakperm_.c:64
+#: ../../standalone/drakperm_.c:65
msgid "Down selected rule one level"
-msgstr ""
+msgstr "đĹŇĹÍĹÓÔÉÔŘ ×ŮÂŇÁÎÎĎĹ ĐŇÁ×ÉĚĎ ÎÁ ĎÄÉÎ ŐŇĎ×ĹÎŘ ×ÎÉÚ"
-#: ../../standalone/drakperm_.c:65
-#, fuzzy
+#: ../../standalone/drakperm_.c:66
msgid "Delete selected rule"
-msgstr "őÄÁĚÉÔŘ ĎŢĹŇĹÄŘ"
+msgstr "őÄÁĚÉÔŘ ×ŮÂŇÁÎÎĎĹ ĐŇÁ×ÉĚĎ"
-#: ../../standalone/drakperm_.c:241 ../../standalone/draksplash_.c:85
+#: ../../standalone/drakperm_.c:237
msgid "browse"
-msgstr ""
+msgstr "ĐĹŇĹĘÔÉ"
-#: ../../standalone/drakperm_.c:248
-#, fuzzy
+#: ../../standalone/drakperm_.c:244
msgid "Current user"
-msgstr "đŇÉÎŃÔŘ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
+msgstr "ôĹËŐÝÉĘ ĐĎĚŘÚĎ×ÁÔĹĚŘ"
-#: ../../standalone/drakperm_.c:253
-#, fuzzy
+#: ../../standalone/drakperm_.c:249
msgid "Permissions"
-msgstr "÷ĹŇÓÉŃ: %s\n"
+msgstr "ňÁÚŇĹŰĹÎÉŃ"
-#: ../../standalone/drakperm_.c:254
+#: ../../standalone/drakperm_.c:250
msgid "Path"
-msgstr ""
+msgstr "đŐÔŘ"
-#: ../../standalone/drakperm_.c:255
-#, fuzzy
+#: ../../standalone/drakperm_.c:251
msgid "Property"
-msgstr "đĎŇÔ"
+msgstr "óĎÂÓÔ×ĹÎÎĎÓÔŘ"
-#: ../../standalone/drakperm_.c:257
+#: ../../standalone/drakperm_.c:253
msgid "sticky-bit"
-msgstr ""
+msgstr "ÚÁËŇĹĐĚŃŔÝÉĘ ÂÉÔ"
-#: ../../standalone/drakperm_.c:258
+#: ../../standalone/drakperm_.c:254
msgid "Set-UID"
-msgstr ""
+msgstr "őÓÔÁÎÁ×ĚÉ×ÁŔÝÉĘ UID"
-#: ../../standalone/drakperm_.c:259
+#: ../../standalone/drakperm_.c:255
msgid "Set-GID"
-msgstr ""
+msgstr "őÓÔÁÎÁ×ĚÉ×ÁŔÝÉĘ GID"
-#: ../../standalone/drakperm_.c:314
+#: ../../standalone/drakperm_.c:310
msgid ""
"Used for directory:\n"
" only owner of directory or file in this directory can delete it"
msgstr ""
+"éÓĐĎĚŘÚŐĹÍŮĘ ÄĚŃ ÄÉŇĹËÔĎŇÉÉ:\n"
+" ÔĎĚŘËĎ ×ĚÁÄĹĚĹĂ ËÁÔÁĚĎÇÁ ÉĚÉ ĆÁĘĚÁ × ÜÔĎÍ ËÁÔÁĚĎÇĹ ÍĎÖĹÔ ŐÄÁĚÉÔŘ ĹÇĎ"
-#: ../../standalone/drakperm_.c:315
-#, fuzzy
+#: ../../standalone/drakperm_.c:311
msgid "Use owner id for execution"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
+msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ id ×ĚÁÄĹĚŘĂÁ ÄĚŃ ×ŮĐĎĚÎĹÎÉŃ"
-#: ../../standalone/drakperm_.c:316
-#, fuzzy
+#: ../../standalone/drakperm_.c:312
msgid "Use group id for execution"
-msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ"
+msgstr "éÓĐĎĚŘÚĎ×ÁÔŘ id ÇŇŐĐĐŮ ÄĚŃ ×ŮĐĎĚÎĹÎÉŃ"
-#: ../../standalone/drakperm_.c:317
+#: ../../standalone/drakperm_.c:313
msgid "when checked, owner and group won't be changed"
-msgstr ""
+msgstr "ĹÓĚÉ ĎÔÍĹŢĹÎ, ×ĚÁÄĹĚĹĂ É ÇŇŐĐĐÁ ÎĹ ÂŐÄŐÔ ÉÚÍĹÎĹÎŮ"
-#: ../../standalone/drakperm_.c:322
-#, fuzzy
+#: ../../standalone/drakperm_.c:318
msgid "Path selection"
-msgstr "óĎČŇÁÎÉÔŘ ×ŮÂĎŇ ĐÁËĹÔĎ×"
+msgstr "÷ŮÂĎŇ ĐŐÔÉ"
-#: ../../standalone/drakperm_.c:368
-#, fuzzy
+#: ../../standalone/drakperm_.c:364
msgid "user :"
-msgstr "éÍŃ ĐĎĚŘÚĎ×ÁÔĹĚŃ"
+msgstr "ĐĎĚŘÚĎ×ÁÔĹĚŘ :"
-#: ../../standalone/drakperm_.c:370
-#, fuzzy
+#: ../../standalone/drakperm_.c:366
msgid "group :"
-msgstr "ňÁÂĎŢÁŃ ÇŇŐĐĐÁ"
+msgstr "ÇŇŐĐĐÁ :"
-#: ../../standalone/draksound_.c:46
-#, fuzzy
+#: ../../standalone/draksound_.c:47
msgid "No Sound Card detected!"
-msgstr "îĹ ÓĎĹÄÉÎĹÎĎ"
+msgstr "ú×ŐËĎ×ÁŃ ËÁŇÔÁ ÎĹ ĎÂÎÁŇŐÖĹÎÁ!"
-#: ../../standalone/draksound_.c:47
+#: ../../standalone/draksound_.c:48
msgid ""
"No Sound Card has been detected on your machine. Please verify that a Linux-"
"supported Sound Card is correctly plugged in.\n"
@@ -12727,137 +13448,158 @@ msgid ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
msgstr ""
+"îÁ ×ÁŰĹĘ ÍÁŰÉÎĹ ÎĹ ÂŮĚÁ ĎÂÎÁŇŐÖĹÎÁ Ú×ŐËĎ×ÁŃ ËÁŇÔÁ. đĎÖÁĚŐĘÓÔÁ, ĐŇĎ×ĹŇŘÔĹ, "
+"ŢÔĎÂŮ ĐĎÄÄĹŇÖÉ×ÁĹÍÁŃ Linux'ĎÍ Ú×ŐËĎ×ÁŃ ËÁŇÔÁ ÂŮĚÁ ČĎŇĎŰĎ ×ÓÔÁ×ĚĹÎÁ × ÓĚĎÔ.\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"
+#: ../../standalone/draksound_.c:55
+msgid ""
+"\n"
+"\n"
+"\n"
+"Note: if you've an ISA PnP sound card, you'll have to use the sndconfig "
+"program. Just type \"sndconfig\" in a console."
msgstr ""
+"\n"
+"\n"
+"\n"
+"đŇÉÍĹŢÁÎÉĹ: ĹÓĚÉ Ő ×ÁÓ Ú×ŐËĎ×ÁŃ ËÁŇÔÁ ISA PnP, ×Ů ÄĎĚÖÎŮ ÉÓĐĎĚŘÚĎ×ÁÔŘ "
+"ĐŇĎÇŇÁÍÍŐ sndconfig. đŇĎÓÔĎ ××ĹÄÉÔĹ × ËĎÎÓĎĚÉ \"sndconfig\"."
-#: ../../standalone/draksplash_.c:76
+#: ../../standalone/draksplash_.c:34
#, fuzzy
+msgid ""
+"package 'ImageMagick' is required for correct working.\n"
+"Click \"Ok\" to install 'ImageMagick' or \"Cancel\" to quit"
+msgstr "ÄĚŃ ÎĎŇÍÁĚŘÎĎĘ ŇÁÂĎÔŮ ÔŇĹÂŐĹÔÓŃ ĐÁËĹÔ ImageMagick"
+
+#: ../../standalone/draksplash_.c:78
msgid "first step creation"
-msgstr "ÓĎÚÄÁÎÉĹ ÚÁÇŇŐÚĎŢÎĎÇĎ ÄÉÓËÁ"
+msgstr "ĐĹŇ×ŮĘ ŰÁÇ ÓĎÚÄÁÎÉŃ"
-#: ../../standalone/draksplash_.c:77
-#, fuzzy
+#: ../../standalone/draksplash_.c:79
msgid "final resolution"
-msgstr "ňÁÚŇĹŰĹÎÉĹ"
+msgstr "ĎËĎÎŢÁÔĹĚŘÎĎĹ ŇĹŰĹÎÉĹ"
-#: ../../standalone/draksplash_.c:78 ../../standalone/draksplash_.c:170
-#, fuzzy
+#: ../../standalone/draksplash_.c:80 ../../standalone/draksplash_.c:172
msgid "choose image file"
-msgstr "÷ŮÂĹŇÉÔĹ ÄĹĘÓÔ×ÉĹ"
-
-#: ../../standalone/draksplash_.c:79
-#, fuzzy
-msgid "Theme name"
-msgstr "éÍŃ ŇĹÓŐŇÓÁ"
+msgstr "×ŮÂĹŇÉÔĹ ĆÁĘĚ ĎÂŇÁÚÁ"
#: ../../standalone/draksplash_.c:81
-msgid "make bootsplash step 2"
-msgstr ""
-
-#: ../../standalone/draksplash_.c:82
-#, fuzzy
-msgid "go to lilosplash configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĐĎÓĚĹ ŐÓÔÁÎĎ×ËÉ"
+msgid "Theme name"
+msgstr "ÎÁÚ×ÁÎÉĹ ÔĹÍŮ"
-#: ../../standalone/draksplash_.c:83
-#, fuzzy
-msgid "quit"
-msgstr "÷ŮČĎÄ"
+#: ../../standalone/draksplash_.c:85
+msgid "Browse"
+msgstr "đĹŇĹĘÔÉ"
-#: ../../standalone/draksplash_.c:84
-#, fuzzy
-msgid "save theme"
-msgstr "őÓÔÁÎĎ×ËÁ ÓÉÓÔĹÍŮ"
-
-#: ../../standalone/draksplash_.c:98 ../../standalone/draksplash_.c:159
-#, fuzzy
+#: ../../standalone/draksplash_.c:99 ../../standalone/draksplash_.c:162
msgid "Configure bootsplash picture"
-msgstr "îÁÓÔŇĎĘËÁ ÓĹŇ×ÉÓĎ×"
-
-#: ../../standalone/draksplash_.c:99
-msgid "x coordinate of text box in number of character"
-msgstr ""
+msgstr "îÁÓÔŇĎÉÔŘ ÉÚĎÂŇÁÖĹÎÉĹ bootsplash"
#: ../../standalone/draksplash_.c:100
-msgid "y coordinate of text box in number of character"
+msgid ""
+"x coordinate of text box\n"
+"in number of character"
msgstr ""
+"ËĎĎŇÄÉÎÁÔÁ Č ÔĹËÓÔĎ×ĎÇĎ ĎËÎÁ\n"
+"× ËĎĚÉŢĹÓÔ×Ĺ ÓÉÍ×ĎĚĎ×"
#: ../../standalone/draksplash_.c:101
-msgid "text width"
+msgid ""
+"y coordinate of text box\n"
+"in number of character"
msgstr ""
+"ËĎĎŇÄÉÎÁÔÁ Ő ÔĹËÓÔĎ×ĎÇĎ ĎËÎÁ\n"
+"× ËĎĚÉŢĹÓÔ×Ĺ ÓÉÍ×ĎĚĎ×"
#: ../../standalone/draksplash_.c:102
-msgid "text box height"
-msgstr ""
+msgid "text width"
+msgstr "ŰÉŇÉÎÁ ÔĹËÓÔÁ"
#: ../../standalone/draksplash_.c:103
-msgid "the progress bar x coordinate of its upper left corner"
-msgstr ""
+msgid "text box height"
+msgstr "×ŮÓĎÔÁ ÔĹËÓÔĎ×ĎÇĎ ĎËÎÁ"
#: ../../standalone/draksplash_.c:104
-msgid "the progress bar y coordinate of its upper left corner"
+msgid ""
+"the progress bar x coordinate\n"
+"of its upper left corner"
msgstr ""
+"ËĎĎŇÄÉÎÁÔÁ Č ÉÎÄÉËÁÔĎŇÁ ×ŮĐĎĚÎĹÎÉŃ\n"
+"ĎÔ ×ĹŇČÎĹÇĎ ĚĹ×ĎÇĎ ŐÇĚÁ"
#: ../../standalone/draksplash_.c:105
-msgid "the width of the progress bar"
+msgid ""
+"the progress bar y coordinate\n"
+"of its upper left corner"
msgstr ""
+"ËĎĎŇÄÉÎÁÔÁ Ő ÉÎÄÉËÁÔĎŇÁ ×ŮĐĎĚÎĹÎÉŃ\n"
+"ĎÔ ×ĹŇČÎĹÇĎ ĚĹ×ĎÇĎ ŐÇĚÁ"
#: ../../standalone/draksplash_.c:106
-msgid "the heigth of the progress bar"
-msgstr ""
+msgid "the width 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"
+msgid "the heigth of the progress bar"
+msgstr "×ŮÓĎÔÁ ÉÎÄÉËÁÔĎŇÁ ×ŮĐĎĚÎĹÎÉŃ"
-#: ../../standalone/draksplash_.c:120
-#, fuzzy
-msgid "preview"
-msgstr "ŐÓÔŇĎĘÓÔ×Ď"
+#: ../../standalone/draksplash_.c:108
+msgid "the color of the progress bar"
+msgstr "Ă×ĹÔ ÉÎÄÉËÁÔĎŇÁ ×ŮĐĎĚÎĹÎÉŃ"
#: ../../standalone/draksplash_.c:121
-#, fuzzy
-msgid "choose color"
-msgstr "÷ŮÂĹŇÉÔĹ ÍĎÎÉÔĎŇ"
+msgid "Preview"
+msgstr "ĐŇĹÄ×ÁŇÉÔĹĚŘÎŮĘ ĐŇĎÓÍĎÔŇ"
+
+#: ../../standalone/draksplash_.c:123
+msgid "Save theme"
+msgstr "ÓĎČŇÁÎÉÔŘ ÔĹÍŐ"
#: ../../standalone/draksplash_.c:124
+msgid "Choose color"
+msgstr "×ŮÂŇÁÔŘ Ă×ĹÔ"
+
+#: ../../standalone/draksplash_.c:127
msgid "Display logo on Console"
-msgstr ""
+msgstr "đĎËÁÚŮ×ÁÔŘ ĚĎÇĎÔÉĐ × ËĎÎÓĎĚÉ"
-#: ../../standalone/draksplash_.c:125
+#: ../../standalone/draksplash_.c:128
msgid "Make kernel message quiet by default"
-msgstr ""
+msgstr "óÄĹĚÁÔŘ ×Ů×ĎÄ ÉÎĆĎŇÍÁĂÉÉ ŃÄŇĎÍ ÍĎĚŢÁĚÉ×ŮÍ ĐĎ ŐÍĎĚŢÁÎÉŔ"
-#: ../../standalone/draksplash_.c:161 ../../standalone/draksplash_.c:330
+#: ../../standalone/draksplash_.c:165 ../../standalone/draksplash_.c:329
#, c-format
msgid "This theme haven't yet any bootsplash in %s !"
-msgstr ""
+msgstr "÷ ÜÔĎĘ ÔĹÍĹ ĹÝĹ ÎĹÔ ËÁËĎÇĎ-ĚÉÂĎ bootsplash × %s!"
-#: ../../standalone/draksplash_.c:213
+#: ../../standalone/draksplash_.c:212
msgid "saving Bootsplash theme..."
-msgstr ""
+msgstr "ÓĎČŇÁÎŃĹÔÓŃ ÔĹÍÁ Bootsplash..."
-#: ../../standalone/draksplash_.c:436
-#, fuzzy
+#: ../../standalone/draksplash_.c:435
msgid "ProgressBar color selection"
-msgstr "đĎÄËĚŔŢĹÎÉĹ ĐŇÉÎÔĹŇÁ"
+msgstr "×ŮÂĎŇ Ă×ĹÔÁ ÉÎÄÉËÁÔĎŇÁ ×ŮĐĎĚÎĹÎÉŃ"
-#: ../../standalone/draksplash_.c:454
-#, fuzzy
+#: ../../standalone/draksplash_.c:456
msgid "You must choose an image file first!"
-msgstr "áÄŇĹÓ ŐÓÔŇĎĘÓÔ×Á ĐĹŢÁÔÉ"
+msgstr "÷Ů ÄĎĚÖÎŮ ÓÎÁŢÁĚÁ ×ŮÂŇÁÔŘ ĆÁĘĚ ĎÂŇÁÚÁ!"
-#: ../../standalone/draksplash_.c:463
-#, fuzzy
+#: ../../standalone/draksplash_.c:465
msgid "Generating preview ..."
-msgstr "ďĐŇĹÄĹĚĹÎÉĹ ŐÓÔŇĎĘÓÔ×..."
+msgstr "çĹÎĹŇÉŇŐĹÔÓŃ ĐŇĹÄ×ÁŇÉÔĹĚŘÎŮĘ ĐŇĎÓÍĎÔŇ..."
+
+#. -PO First %s is theme name, second %s (in parenthesis) is resolution
+#: ../../standalone/draksplash_.c:511
+#, fuzzy, c-format
+msgid "%s BootSplash (%s) preview"
+msgstr "îĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ ĐŇĹÄ×ÁŇÉÔĹĚŘÎŮĘ ĐŇĎÓÍĎÔŇ Bootsplash"
#: ../../standalone/drakxtv_.c:49
msgid ""
@@ -12873,6 +13615,16 @@ msgid ""
"\n"
"You can install it by typing \"urpmi xawtv\" as root, in a console."
msgstr ""
+"XawTV ÎĹ ŐÓÔÁÎĎ×ĚĹÎ!\n"
+"\n"
+"\n"
+"ĺÓĚÉ Ő ×ÁÓ ĹÓÔŘ ô÷-ËÁŇÔÁ, ÎĎ DrakX ÎĹ ĎÂÎÁŇŐÖÉĚ ĹĹ (ÎĹÔ bttv É × \"/etc/"
+"modules\" ÎĹÔ ÍĎÄŐĚŃ saa7134) É ÎĹ ŐÓÔÁÎĎ×ÉĚ xawtv, ĐĎÖÁĚŐĘÓÔÁ, ĎĐŇÁ×ŘÔĹ "
+"ŇĹÚŐĚŘÔÁÔŮ ×ŮĐĎĚÎĹÎÉŃ ËĎÍÁÎÄŮ \"lspcidrake -v -f\" ÎÁ \"install"
+"\\@mandrakesoft.com\" Ó ÔĹÍĎĘ \"undetected TV card\".\n"
+"\n"
+"\n"
+"÷Ů ÍĎÖĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ ĹÇĎ, ÎÁÂŇÁ× ĐĎÄ root'ĎÍ × ËĎÎÓĎĚÉ \"urpmi xawtv\"."
#: ../../standalone/drakxtv_.c:66
msgid "Canada (cable)"
@@ -12936,7 +13688,7 @@ msgstr "áŇÇĹÎÔÉÎÁ"
#: ../../standalone/drakxtv_.c:72
msgid "Australian Optus cable TV"
-msgstr ""
+msgstr "á×ÓÔŇÁĚÉĘÓËĎĹ ËÁÂĹĚŘÎĎĹ ô÷ Optus"
#: ../../standalone/drakxtv_.c:107
msgid ""
@@ -13002,6 +13754,14 @@ msgstr ""
"\n"
"http://www.linux-mandrake.com/en/hardware.php3"
+#: ../../standalone/harddrake2_.c:8
+msgid ""
+"\n"
+"Usage: harddrake [-h|--help] [--test]\n"
+msgstr ""
+"\n"
+"ÉÓĐĎĚŘÚĎ×ÁÎÉĹ: harddrake [-h|--help] [--test]\n"
+
#: ../../standalone/keyboarddrake_.c:16
msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr "ÉÓĐĎĚŘÚĎ×ÁÎÉĹ: keyboarddrake [--expert] [keyboard]\n"
@@ -13032,12 +13792,12 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "îĹ×ĎÚÍĎÖÎĎ ÎÁŢÁÔŘ ĎÂÎĎ×ĚĹÎÉĹ !!!\n"
-#: ../../standalone/localedrake_.c:32
+#: ../../standalone/localedrake_.c:33
msgid "The change is done, but to be effective you must logout"
msgstr ""
"éÚÍĹÎĹÎÉĹ ×ŮĐĎĚÎĹÎĎ, ÎĎ ŢÔĎÂŮ ĎÎĎ ×ÓÔŐĐÉĚĎ × ÓÉĚŐ, ×Ů ÄĎĚÖÎŮ ×ŮĘÔÉ ÉÚ ÓÉÓÔĹÍŮ"
-#: ../../standalone/logdrake_.c:85 ../../standalone/logdrake_.c:515
+#: ../../standalone/logdrake_.c:85 ../../ugtk.pm_.c:285
msgid "logdrake"
msgstr "logdrake"
@@ -13147,7 +13907,7 @@ msgstr "óĎÄĹŇÖÉÍĎĹ ćÁĘĚÁ"
#: ../../standalone/logdrake_.c:215 ../../standalone/logdrake_.c:391
msgid "Mail alert"
-msgstr ""
+msgstr "đĎŢÔĎ×ĎĹ Ő×ĹÄĎÍĚĹÎÉĹ"
#: ../../standalone/logdrake_.c:267
#, c-format
@@ -13155,9 +13915,8 @@ msgid "please wait, parsing file: %s"
msgstr "đĎÖÁĚŐĘÓÔÁ, ĐĎÄĎÖÄÉÔĹ, ŇÁÚÂÉŇÁĹÔÓŃ ĆÁĘĚ: %s"
#: ../../standalone/logdrake_.c:408
-#, fuzzy
msgid "Mail alert configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĚĎËÁĚŘÎĎĘ ÓĹÔÉ"
+msgstr "îÁÓÔŇĎĘËÁ Ő×ĹÄĎÍĚĹÎÉŃ ĐĎ ĐĎŢÔĹ"
#: ../../standalone/logdrake_.c:409
msgid ""
@@ -13165,6 +13924,9 @@ msgid ""
"\n"
"Here, you'll be able to set up the alert system.\n"
msgstr ""
+"äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × ŐÔÉĚÉÔŐ ÎÁÓÔŇĎĘËÉ ĐĎŢÔŮ.\n"
+"\n"
+"úÄĹÓŘ ×Ů ÓÍĎÖĹÔĹ ŐÓÔÁÎĎ×ÉÔŘ ÓÉÓÔĹÍŐ Ő×ĹÄĎÍĚĹÎÉŃ.\n"
#: ../../standalone/logdrake_.c:416
msgid "Apache World Wide Web Server"
@@ -13206,6 +13968,7 @@ msgstr "ÎÁÓÔŇĎĘËÁ ÓĹŇ×ÉÓÁ"
msgid ""
"You will receive an alert if one of the selected services is no more running"
msgstr ""
+"÷Ů ĐĎĚŐŢÉÔĹ Ő×ĹÄĎÍĚĹÎÉĹ, ĹÓĚÉ ĎÄÉÎ ÉÚ ×ŮÂŇÁÎÎŮČ ÓĹŇ×ÉÓĎ× ÂĎĚŘŰĹ ÎĹ ÚÁĐŐÝĹÎ"
#: ../../standalone/logdrake_.c:443
msgid "load setting"
@@ -13213,16 +13976,15 @@ msgstr "ÚÁÇŇŐÚËÁ ÎÁÓÔŇĎĘËÉ"
#: ../../standalone/logdrake_.c:444
msgid "You will receive an alert if the load is higher than this value"
-msgstr "÷Ů ĐĎĚŐŢÉÔĹ ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ, ĹÓĚÉ ÚÁÇŇŐÚËÁ ×ŮŰĹ ÜÔĎÇĎ ÚÎÁŢĹÎÉŃ"
+msgstr "÷Ů ĐĎĚŐŢÉÔĹ Ő×ĹÄĎÍĚĹÎÉĹ, ĹÓĚÉ ÚÁÇŇŐÚËÁ ×ŮŰĹ ÜÔĎÇĎ ÚÎÁŢĹÎÉŃ"
#: ../../standalone/logdrake_.c:457
msgid "alert configuration"
-msgstr "îÁÓÔŇĎĘËÁ ĐŇĹÄŐĐŇĹÖÄĹÎÉŃ"
+msgstr "îÁÓÔŇĎĘËÁ Ő×ĹÄĎÍĚĹÎÉŃ"
#: ../../standalone/logdrake_.c:458
-#, fuzzy
msgid "Please enter your email address below "
-msgstr "đĎĐŇĎÂŐĘÔĹ ĹÝĹ ŇÁÚ"
+msgstr "đĎÖÁĚŐĘÓÔÁ, ××ĹÄÉÔĹ ÎÉÖĹ ÁÄŇĹÓ Ó×ĎĹÇĎ email "
#: ../../standalone/logdrake_.c:497
msgid "Save as.."
@@ -13252,17 +14014,17 @@ msgstr "đŇĎ×ĹŇÉÔŘ ĐĎŇÔŮ"
#: ../../standalone/scannerdrake_.c:81
#, c-format
msgid "The %s is not supported by this version of Mandrake Linux."
-msgstr ""
+msgstr "%s ÎĹ ĐĎÄÄĹŇÖÉ×ÁĹÔÓŃ ÜÔĎĘ ×ĹŇÓÉĹĘ Mandrake Linux."
#: ../../standalone/scannerdrake_.c:56
-#, fuzzy, c-format
+#, c-format
msgid "%s found on %s, configure it?"
-msgstr "čĎÔÉÔĹ ÎÁÓÔŇĎÉÔŘ ĐŇÉÎÔĹŇ?"
+msgstr "%s ÎÁĘÄĹÎ ÎÁ %s, ÎÁÓÔŇĎÉÔŘ ĹÇĎ?"
#: ../../standalone/scannerdrake_.c:59
#, c-format
msgid "%s is not in the scanner database, configure it manually?"
-msgstr ""
+msgstr "%s ĎÔÓŐÔÓÔ×ŐĹÔ × ÂÁÚĹ ÄÁÎÎŮČ ÓËÁÎÎĹŇĎ×, ÎÁÓÔŇĎÉÔŘ ĹÇĎ ×ŇŐŢÎŐŔ?"
#: ../../standalone/scannerdrake_.c:65
msgid "Select a scanner"
@@ -13308,27 +14070,22 @@ msgstr ""
"ôĹĐĹŇŘ ×Ů ÍĎÖĹÔĹ ÓËÁÎÉŇĎ×ÁÔŘ ÄĎËŐÍĹÎÔŮ ĐŇÉ ĐĎÍĎÝÉ ``XSane'' ÉÚ ÍĹÎŔ "
"ĐŇÉĚĎÖĹÎÉĘ íŐĚŘÔÉÍĹÄÉÁ/çŇÁĆÉËÁ"
-#: ../../standalone/service_harddrake_.c:39
+#: ../../standalone/service_harddrake_.c:44
#, c-format
msgid "Some devices in the \"%s\" hardware class were removed:\n"
msgstr "âŮĚÉ ŐÄÁĚĹÎŮ ÎĹËĎÔĎŇŮĹ ŐÓÔŇĎĘÓÔ×Á ÉÚ ĎÂĎŇŐÄĎ×ÁÎÉŃ ËĚÁÓÓÁ \"%s\":\n"
-#: ../../standalone/service_harddrake_.c:43
-#, c-format
-msgid ""
-"\n"
-"Some devices in the %s class were added:\n"
-msgstr ""
-"\n"
-"âŮĚÉ ÄĎÂÁ×ĚĹÎŮ ÎĹËĎÔĎŇŮĹ ŐÓÔŇĎĘÓÔ×Á ËĚÁÓÓÁ %s:\n"
+#: ../../standalone/service_harddrake_.c:48
+msgid "Some devices were added:\n"
+msgstr "âŮĚÉ ÄĎÂÁ×ĚĹÎŮ ÎĹËĎÔĎŇŮĹ ŐÓÔŇĎĘÓÔ×Á:\n"
#: ../../steps.pm_.c:14
msgid "Choose your language"
-msgstr "÷ŮÂĹŇÉÔĹ ŃÚŮË"
+msgstr "÷ŮÂĎŇ Ó×ĎĹÇĎ ŃÚŮËÁ"
#: ../../steps.pm_.c:15
msgid "Select installation class"
-msgstr "÷ŮÂĹŇÉÔĹ ËĚÁÓÓ ŐÓÔÁÎĎ×ËÉ"
+msgstr "÷ŮÂĎŇ ËĚÁÓÓÁ ŐÓÔÁÎĎ×ËÉ"
#: ../../steps.pm_.c:16
msgid "Hard drive detection"
@@ -13340,7 +14097,7 @@ msgstr "îÁÓÔŇĎĘËÁ ÍŮŰÉ"
#: ../../steps.pm_.c:18
msgid "Choose your keyboard"
-msgstr "÷ŮÂĎŇ ×ÁŰĹĘ ËĚÁ×ÉÁÔŐŇŮ"
+msgstr "÷ŮÂĎŇ Ó×ĎĹĘ ËĚÁ×ÉÁÔŐŇŮ"
#: ../../steps.pm_.c:19
msgid "Security"
@@ -13356,7 +14113,7 @@ msgstr "ĆĎŇÍÁÔÉŇĎ×ÁÎÉĹ ŇÁÚÄĹĚĎ×"
#: ../../steps.pm_.c:22
msgid "Choose packages to install"
-msgstr "÷ŮÂĎŇ ĐÁËĹÔĎ× ÄĚŃ ŐÓÔÁÎĎ×ËÉ"
+msgstr "÷ŮÂĎŇ ŐÓÔÁÎÁ×ĚÉ×ÁĹÍŮČ ĐÁËĹÔĎ×"
#: ../../steps.pm_.c:23
msgid "Install system"
@@ -13376,7 +14133,7 @@ msgstr "îÁÓÔŇĎĘËÁ ÓĹŇ×ÉÓĎ×"
#: ../../steps.pm_.c:29
msgid "Install bootloader"
-msgstr "őÓÔÁÎĎ×ËÁ ÍĹÎĹÄÖĹŇÁ ÚÁÇŇŐÚËÉ"
+msgstr "őÓÔÁÎĎ×ËÁ ÎÁŢÁĚŘÎĎÇĎ ÚÁÇŇŐÚŢÉËÁ"
#: ../../steps.pm_.c:31
msgid "Create a bootdisk"
@@ -13384,7 +14141,7 @@ msgstr "óĎÚÄÁÎÉĹ ÚÁÇŇŐÚĎŢÎĎÇĎ ÄÉÓËÁ"
#: ../../steps.pm_.c:33
msgid "Configure X"
-msgstr "îÁÓÔŇĎĘËÁ X"
+msgstr "îÁÓÔŇĎĘËÁ éËÓĎ×"
#: ../../steps.pm_.c:34
msgid "Install system updates"
@@ -13394,7 +14151,7 @@ msgstr "őÓÔÁÎĎ×ËÁ ĎÂÎĎ×ĚĹÎÉĘ ÓÉÓÔĹÍŮ"
msgid "Exit install"
msgstr "úÁ×ĹŇŰĹÎÉĹ ŐÓÔÁÎĎ×ËÉ"
-#: ../../ugtk.pm_.c:603
+#: ../../ugtk.pm_.c:648
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-cronyx-times-bold-r-normal--17-*-100-100-p-*-koi8-r,*-r-*"
@@ -13449,7 +14206,7 @@ msgstr ""
#: ../../share/compssUsers:999
msgid "Linux Standard Base. Third party applications support"
-msgstr ""
+msgstr "óÔÁÎÄÁŇÔÎÁŃ ÂÁÚÁ Linux. đĎÄÄĹŇÖËÁ ĐŇÉĚĎÖĹÎÉĘ ÔŇĹÔŘÉČ ĚÉĂ"
#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
@@ -13610,7 +14367,7 @@ msgstr "ëĚÉĹÎÔŮ ÄĚŃ ŇÁÚĚÉŢÎŮČ ĐŇĎÔĎËĎĚĎ×, ×ËĚŔŢÁŃ ssh"
#: ../../share/compssUsers:999
msgid "LSB"
-msgstr ""
+msgstr "LSB"
#: ../../share/compssUsers:999
msgid "Internet gateway"
@@ -13644,6 +14401,426 @@ msgstr "íŐĚŘÔÉÍĹÄÉÁ - úÁĐÉÓŘ CD"
msgid "Scientific Workstation"
msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
+#~ msgid ""
+#~ "OSS (Open Source Sound) was the firt sound API. It's an OS independant "
+#~ "sound API (it's availlable on most unices systems) but it's a very basic "
+#~ "and limited API.\n"
+#~ "What's more, OSS drivers all reinvent the wheel.\n"
+#~ "\n"
+#~ "ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+#~ "which\n"
+#~ "supports quite a large range of ISA and PCI cards.\n"
+#~ "\n"
+#~ "It also provides a much higher API than OSS.\n"
+#~ "\n"
+#~ "To use alsa, one can either use:\n"
+#~ "- the old compatibility OSS api\n"
+#~ "- the new ALSA api that provides many enhanced features but requires "
+#~ "using the ALSA library.\n"
+#~ msgstr ""
+#~ "OSS (Ú×ŐË Ó ĎÔËŇŮÔŮÍÉ ÉÓČĎÄÎŮÍÉ ÔĹËÓÔÁÍÉ) ÂŮĚ ĐĹŇ×ŮÍ API ÄĚŃ Ú×ŐËÁ. ďÎ\n"
+#~ "Ń×ĚŃĹÔÓŃ ďó-ÎĹÚÁ×ÉÓÉÍŮÍ API Ú×ŐËÁ (ÄĎÓÔŐĐĹÎ ÎÁ ÂĎĚŘŰÉÎÓÔ×Ĺ ÓÉÓÔĹÍ UNIX),\n"
+#~ "ÎĎ ĎÎ ÔÁËÖĹ Ń×ĚŃĹÔÓŃ ĎŢĹÎŘ ĐŇĎÓÔŮÍ É ĎÇŇÁÎÉŢĹÎÎŮÍ API.\n"
+#~ "ëŐÄÁ ŐÖ ÂĎĚŘŰĹ, ×ÓĹ ÄŇÁĘ×ĹŇŮ OSS É ÔÁË ÚÁÎĎ×Ď ĎÔËŇŮ×ÁŔÔ ËĎĚĹÓĎ.\n"
+#~ "\n"
+#~ "ALSA (ŇÁÓŰÉŇĹÎÎÁŃ Ú×ŐËĎ×ÁŃ ÁŇČÉÔĹËÔŐŇÁ Linux) Ń×ĚŃĹÔÓŃ ÍĎÄŐĚŘÎĎĘ\n"
+#~ "ÁŇČÉÔĹËÔŐŇĎĘ, ËĎÔĎŇÁŃ ĐĎÄÄĹŇÖÉ×ÁĹÔ ÄĎ×ĎĚŘÎĎ ŰÉŇĎËÉĘ ÄÉÁĐÁÚĎÎ ISA É\n"
+#~ "PCI-ËÁŇÔ.\n"
+#~ "\n"
+#~ "ďÎÁ ÔÁËÖĹ ĎÂĹÓĐĹŢÉ×ÁĹÔ ÎÁÍÎĎÇĎ ÂĎĚĹĹ ×ŮÓĎËÉĘ API, ŢĹÍ Ő OSS.\n"
+#~ "\n"
+#~ "ţÔĎÂŮ ÉÓĐĎĚŘÚĎ×ÁÔŘ alsa, ÍĎÖÎĎ ÉÓĐĎĚŘÚĎ×ÁÔŘ:\n"
+#~ "- ÓÔÁŇŮĘ api, ÓĎ×ÍĹÓÔÉÍŮĘ Ó OSS\n"
+#~ "- ÎĎ×ŮĘ api ÄĚŃ ALSA, ĐŇĹÄĎÓÔÁ×ĚŃŔÝÉĘ ÍÎĎÇĎ ŐÓĎ×ĹŇŰĹÎÓÔ×Ď×ÁÎÎŮČ "
+#~ "×ĎÚÍĎÖÎĎÓÔĹĘ, ÎĎ ÔŇĹÂŐŔÝÉĘ ÉÓĐĎĚŘÚĎ×ÁÎÉĹ ÂÉÂĚÉĎÔĹËÉ ALSA.\n"
+
+#~ msgid ""
+#~ "Found \"$netc->{autodetect}{isdn}{description}\" interface do you want to "
+#~ "use it ?"
+#~ msgstr ""
+#~ "îÁĘÄĹÎ ÉÎÔĹŇĆĹĘÓ \"$netc->{Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ}{isdn}{ĎĐÉÓÁÎÉĹ}\", "
+#~ "ČĎÔÉÔĹ ÉÓĐĎĚŘÚĎ×ÁÔŘ ĹÇĎ?"
+
+#~ msgid ""
+#~ "\n"
+#~ "\n"
+#~ "To submit a bug report, click on the button report.\n"
+#~ "This will open a web browser window on https://www.bugzilla.com\n"
+#~ " where you'll find a form to fill in.The information displayed above will "
+#~ "be \n"
+#~ "transferred to that server\n"
+#~ "\n"
+#~ msgstr ""
+#~ "\n"
+#~ "\n"
+#~ "ţÔĎÂŮ ĎĐŇÁ×ÉÔŘ ĎÔŢĹÔ Ď ĎŰÉÂËĹ, ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ ďÔŢĹÔ.\n"
+#~ "üÔĎ ĎÔËŇĎĹÔ ĎËÎĎ ×ĹÂ-ÂŇĎŐÚĹŇÁ ÎÁ https://www.bugzilla.com,\n"
+#~ "ÇÄĹ ×Ů ÎÁĘÄĹÔĹ ĆĎŇÍŐ ÄĚŃ ÚÁĐĎĚÎĹÎÉŃ. éÎĆĎŇÍÁĂÉŃ, ĐŇĹÄÓÔÁ×ĚĹÎÎÁŃ\n"
+#~ "×ŮŰĹ, ÂŐÄĹÔ ĎÔĐŇÁ×ĚĹÎÁ ÎÁ ÜÔĎÔ ÓĹŇ×ĹŇ\n"
+#~ "\n"
+
+#~ msgid "package ImageMagick is required for correct working"
+#~ msgstr "ÄĚŃ ÎĎŇÍÁĚŘÎĎĘ ŇÁÂĎÔŮ ÔŇĹÂŐĹÔÓŃ ĐÁËĹÔ ImageMagick"
+
+#~ msgid "Make bootsplash step 2"
+#~ msgstr "ÓĎÚÄÁÔŘ bootsplash - ×ÔĎŇĎĘ ŰÁÇ"
+
+#~ msgid "Go to lilosplash configuration"
+#~ msgstr "ĐĹŇĹĘÔÉ Ë ÎÁÓÔŇĎĘËĹ lilosplash"
+
+#~ msgid "x coordinate of text box in number of character"
+#~ msgstr "ËĎĎŇÄÉÎÁÔÁ Č ÔĹËÓÔĎ×ĎÇĎ ĎËÎÁ × ËĎĚÉŢĹÓÔ×Ĺ ÓÉÍ×ĎĚĎ×"
+
+#~ msgid "y coordinate of text box in number of character"
+#~ msgstr "ËĎĎŇÄÉÎÁÔÁ Ő ÔĹËÓÔĎ×ĎÇĎ ĎËÎÁ × ËĎĚÉŢĹÓÔ×Ĺ ÓÉÍ×ĎĚĎ×"
+
+#~ msgid "the progress bar x coordinate of its upper left corner"
+#~ msgstr "ËĎĎŇÄÉÎÁÔÁ Č ÉÎÄÉËÁÔĎŇÁ ×ŮĐĎĚÎĹÎÉŃ ĎÔ ×ĹŇČÎĹÇĎ ĚĹ×ĎÇĎ ŐÇĚÁ"
+
+#~ msgid "the progress bar y coordinate of its upper left corner"
+#~ msgstr "ËĎĎŇÄÉÎÁÔÁ Ő ÉÎÄÉËÁÔĎŇÁ ×ŮĐĎĚÎĹÎÉŃ ĎÔ ×ĹŇČÎĹÇĎ ĚĹ×ĎÇĎ ŐÇĚÁ"
+
+#~ msgid "Go back"
+#~ msgstr "×ĹŇÎŐÔŘÓŃ"
+
+#~ msgid "Can't create Bootsplash preview"
+#~ msgstr "îĹ×ĎÚÍĎÖÎĎ ÓĎÚÄÁÔŘ ĐŇĹÄ×ÁŇÉÔĹĚŘÎŮĘ ĐŇĎÓÍĎÔŇ Bootsplash"
+
+#~ msgid ""
+#~ "There's no known OSS/ALSA alternative driver for your sound card (%s)"
+#~ msgstr ""
+#~ "äĚŃ ×ÁŰĹĘ Ú×ŐËĎ×ĎĘ ËÁŇÔŮ (%s) ĎÔÓŐÔÓÔ×ŐĹÔ ÁĚŘÔĹŇÎÁÔÉ×ÎŮĘ ÄŇÁĘ×ĹŇ OSS/ALSA"
+
+#~ msgid ""
+#~ "Introduction\n"
+#~ "\n"
+#~ "The operating system and the different components available in the "
+#~ "Mandrake Linux distribution \n"
+#~ "shall be called the \"Software Products\" hereafter. The Software "
+#~ "Products include, but are not \n"
+#~ "restricted to, the set of programs, methods, rules and documentation "
+#~ "related to the operating \n"
+#~ "system and the different components of the Mandrake Linux distribution.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. License Agreement\n"
+#~ "\n"
+#~ "Please read this document carefully. This document is a license agreement "
+#~ "between you and \n"
+#~ "MandrakeSoft S.A. which applies to the Software Products.\n"
+#~ "By installing, duplicating or using the Software Products in any manner, "
+#~ "you explicitly \n"
+#~ "accept and fully agree to conform to the terms and conditions of this "
+#~ "License. \n"
+#~ "If you disagree with any portion of the License, you are not allowed to "
+#~ "install, duplicate or use \n"
+#~ "the Software Products. \n"
+#~ "Any attempt to install, duplicate or use the Software Products in a "
+#~ "manner which does not comply \n"
+#~ "with the terms and conditions of this License is void and will terminate "
+#~ "your rights under this \n"
+#~ "License. Upon termination of the License, you must immediately destroy "
+#~ "all copies of the \n"
+#~ "Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. Limited Warranty\n"
+#~ "\n"
+#~ "The Software Products and attached documentation are provided \"as is\", "
+#~ "with no warranty, to the \n"
+#~ "extent permitted by law.\n"
+#~ "MandrakeSoft S.A. will, in no circumstances and to the extent permitted "
+#~ "by law, be liable for any special,\n"
+#~ "incidental, direct or indirect damages whatsoever (including without "
+#~ "limitation damages for loss of \n"
+#~ "business, interruption of business, financial loss, legal fees and "
+#~ "penalties resulting from a court \n"
+#~ "judgment, or any other consequential loss) arising out of the use or "
+#~ "inability to use the Software \n"
+#~ "Products, even if MandrakeSoft S.A. has been advised of the possibility "
+#~ "or occurance of such \n"
+#~ "damages.\n"
+#~ "\n"
+#~ "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN "
+#~ "SOME COUNTRIES\n"
+#~ "\n"
+#~ "To the extent permitted by law, MandrakeSoft S.A. or its distributors "
+#~ "will, in no circumstances, be \n"
+#~ "liable for any special, incidental, direct or indirect damages whatsoever "
+#~ "(including without \n"
+#~ "limitation damages for loss of business, interruption of business, "
+#~ "financial loss, legal fees \n"
+#~ "and penalties resulting from a court judgment, or any other consequential "
+#~ "loss) arising out \n"
+#~ "of the possession and use of software components or arising out of "
+#~ "downloading software components \n"
+#~ "from one of Mandrake Linux sites which are prohibited or restricted in "
+#~ "some countries by local laws.\n"
+#~ "This limited liability applies to, but is not restricted to, the strong "
+#~ "cryptography components \n"
+#~ "included in the Software Products.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. The GPL License and Related Licenses\n"
+#~ "\n"
+#~ "The Software Products consist of components created by different persons "
+#~ "or entities. Most \n"
+#~ "of these components are governed under the terms and conditions of the "
+#~ "GNU General Public \n"
+#~ "Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+#~ "licenses allow you to use, \n"
+#~ "duplicate, adapt or redistribute the components which they cover. Please "
+#~ "read carefully the terms \n"
+#~ "and conditions of the license agreement for each component before using "
+#~ "any component. Any question \n"
+#~ "on a component license should be addressed to the component author and "
+#~ "not to MandrakeSoft.\n"
+#~ "The programs developed by MandrakeSoft S.A. are governed by the GPL "
+#~ "License. Documentation written \n"
+#~ "by MandrakeSoft S.A. is governed by a specific license. Please refer to "
+#~ "the documentation for \n"
+#~ "further details.\n"
+#~ "\n"
+#~ "\n"
+#~ "4. Intellectual Property Rights\n"
+#~ "\n"
+#~ "All rights to the components of the Software Products belong to their "
+#~ "respective authors and are \n"
+#~ "protected by intellectual property and copyright laws applicable to "
+#~ "software programs.\n"
+#~ "MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+#~ "Products, as a whole or in \n"
+#~ "parts, by all means and for all purposes.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
+#~ "MandrakeSoft S.A. \n"
+#~ "\n"
+#~ "\n"
+#~ "5. Governing Laws \n"
+#~ "\n"
+#~ "If any portion of this agreement is held void, illegal or inapplicable by "
+#~ "a court judgment, this \n"
+#~ "portion is excluded from this contract. You remain bound by the other "
+#~ "applicable sections of the \n"
+#~ "agreement.\n"
+#~ "The terms and conditions of this License are governed by the Laws of "
+#~ "France.\n"
+#~ "All disputes on the terms of this license will preferably be settled out "
+#~ "of court. As a last \n"
+#~ "resort, the dispute will be referred to the appropriate Courts of Law of "
+#~ "Paris - France.\n"
+#~ "For any question on this document, please contact MandrakeSoft S.A. \n"
+#~ msgstr ""
+#~ "÷×ĹÄĹÎÉĹ\n"
+#~ "\n"
+#~ "ďĐĹŇÁĂÉĎÎÎÁŃ ÓÉÓÔĹÍÁ É ŇÁÚĚÉŢÎŮĹ ËĎÍĐĎÎĹÎÔŮ, ÄĎÓÔŐĐÎŮĹ ÎÁ ÄÉÓÔŇÉÂŐÔÉ×Ĺ\n"
+#~ "Mandrake Linux ÄÁĚĹĹ ÂŐÄŐÔ ÎÁÚŮ×ÁÔŘÓŃ \"đŇĎÇŇÁÍÍÎŮÍÉ đŇĎÄŐËÔÁÍÉ\".\n"
+#~ "đŇĎÇŇÁÍÍÎŮĹ đŇĎÄŐËÔŮ ×ËĚŔŢÁŔÔ, ÎĎ ÎĹ ĎŇÇÁÎÉŢÉ×ÁŔÔÓŃ, ÎÁÂĎŇ ĐŇĎÇŇÁÍÍ, \n"
+#~ "ÍĹÔĎÄŮ, ĐŇÁ×ÉĚÁ É ÄĎËŐÍĹÎÔÁĂÉŔ, Ó×ŃÚÁÎÎŐŔ Ó ĎĐĹŇÁĂÉĎÎÎĎĘ ÓÉÓÔĹÍĎĘ\n"
+#~ "É ŇÁÚĚÉŢÎŮÍÉ ËĎÍĐĎÎĹÎÔÁÍÉ ÄÉÓÔŇÉÂŐÔÉ×Á Mandrake Linux.\n"
+#~ "\n"
+#~ "\n"
+#~ "1. ěÉĂĹÎÚÉĎÎÎĎĹ ÓĎÇĚÁŰĹÎÉĹ\n"
+#~ "\n"
+#~ "đĎÖÁĚŐĘÓÔÁ, ×ÎÉÍÁÔĹĚŘÎĎ ĐŇĎŢÔÉÔĹ ÜÔĎÔ ÄĎËŐÍĹÎÔ. üÔĎÔ ÄĎËŐÍĹÎÔ Ń×ĚŃĹÔÓŃ\n"
+#~ "ĚÉĂĹÎÚÉĎÎÎŮÍ ÓĎÇĚÁŰĹÎÉĹÍ, ÚÁËĚŔŢÁĹÍŮÍ ÍĹÖÄŐ ×ÁÍÉ É MandrakeSoft S.A.,\n"
+#~ "ĐŇÉÍĹÎŃĹÍŮÍ Ë đŇĎÇŇÁÍÍÎŮÍ đŇĎÄŐËÔÁÍ. őÓÔÁÎÁ×ĚÉ×ÁŃ, ŇÁÚÍÎĎÖÁŃ ÉĚÉ\n"
+#~ "ÉÓĐĎĚŘÚŐŃ đŇĎÇŇÁÍÍÎŮĹ đŇĎÄŐËÔŮ Ó ĚŔÂĎĘ ĂĹĚŘŔ, ×Ů ÔĹÍ ÓÁÍŮÍ ×ÓĹĂĹĚĎ\n"
+#~ "ĐŇÉÎÉÍÁĹÔĹ É ĐĎĚÎĎÓÔŘŔ ÓĎÇĚÁŰÁĹÔĹÓŘ Ó ŐÓĚĎ×ÉŃÍÉ É ĐĎĚĎÖĹÎÉŃÍÉ ÜÔĎĘ\n"
+#~ "ěÉĂĹÎÚÉÉ. ĺÓĚÉ ×Ů ÎĹ ÓĎÇĚÁÓÎŮ Ó ËÁËĎĘ-ĚÉÂĎ ŢÁÓÔŘŔ ÜÔĎĘ ěÉĂĹÎÚÉÉ, ×ÁÍ\n"
+#~ "ÎĹ ŇÁÚŇĹŰÁĹÔÓŃ ŐÓÔÁÎÁ×ĚÉ×ÁÔŘ, ŇÁÚÍÎĎÖÁÔŘ ÉĚÉ ÉÓĐĎĚŘÚĎ×ÁÔŘ đŇĎÇŇÁÍÍÎŮĹ\n"
+#~ "đŇĎÄŐËÔŮ.\n"
+#~ "ěŔÂŮĹ ĐĎĐŮÔËÉ ÉÓĐĎĚŘÚĎ×ÁÔŘ, ŇÁÚÍÎĎÖÁÔŘ ÉĚÉ ÉÓĐĎĚŘÚĎ×ÁÔŘ đŇĎÇŇÁÍÍÎŮĹ\n"
+#~ "đŇĎÄŐËÔŮ Ó ĂĹĚŘŔ, ĐŇĎÔÉ×ĎŇĹŢÁÝÉĹ ŐÓĚĎ×ÉŃÍ ÜÔĎĘ ěÉĂĹÎÚÉÉ, ÁÎÎŐĚÉŇŐŔÔ É\n"
+#~ "ĎÓ×ĎÂĎÖÄÁŔÔ ×ÁÓ ĎÔ ×ÓĹČ ĐŇÁ×, ĐŇĹÄĎÓÔÁ×ĚŃĹÍŮČ ÜÔĎĘ ěÉĂĹÎÚÉĹĘ.\n"
+#~ "đŇÉ ĎËĎÎŢÁÎÉÉ ÄĹĘÓÔ×ÉŃ ěÉĂĹÎÚÉÉ ×Ů ÄĎĚÖÎŮ ÎĹÍĹÄĚĹÎÎĎ ŐÄÁĚÉÔŘ ×ÓĹ ËĎĐÉÉ\n"
+#~ "đŇĎÇŇÁÍÍÎŮČ đŇĎÄŐËÔĎ×.\n"
+#~ "\n"
+#~ "\n"
+#~ "2. ďÇŇÁÎÉŢĹÎÎŮĹ ÇÁŇÁÎÔÉĘÎŮĹ ĎÂŃÚÁÔĹĚŘÓÔ×Á\n"
+#~ "\n"
+#~ "đŇĎÇŇÁÍÍÎŮĹ đŇĎÄŐËÔŮ É ĐŇÉĚÁÇÁĹÍÁŃ ÄĎËŐÍĹÎÔÁĂÉŃ ĐŇĹÄĎÓÔÁ×ĚŃŔÔÓŃ \"ËÁË ĹÓÔŘ"
+#~ "\",ÂĹÚĎ ×ÓŃËĎĘ ÇÁŇÁÎÔÉÉ × ĐŇĹÄĹĚÁČ, ÄĎÚ×ĎĚĹÎÎŮČ ÚÁËĎÎĎÍ.\n"
+#~ "MandrakeSoft S.A. ÎÉ ĐŇÉ ËÁËÉČ ŐÓĚĎ×ÉŃČ É × ĐŇĹÄĹĚÁČ, ÄĎÚ×ĎĚĹÎÎŮČ\n"
+#~ "ÚÁËĎÎĎÍ, ÎĹÓĹÔ ĎÔ×ĹÔÓÔ×ĹÎÎĎÓÔŘ ÚÁ ĚŔÂĎĘ ËÁËĎĘ ÂŮ ÔĎ ÎÉ ÂŮĚĎ "
+#~ "ĎĐŇĹÄĹĚĹÎÎŮĘ,\n"
+#~ "ÓĚŐŢÁĘÎŮĘ, ĐŇŃÍĎĘ ÉĚÉ ËĎÓ×ĹÎÎŮĘ ŐÝĹŇ (×ËĚŔŢÁŃ ÎĹĎÇŇÁÎÉŢĹÎÎŮĘ ŐÝĹŇ ĎÔ\n"
+#~ "ËŇŐŰĹÎÉŃ ÂÉÚÎĹÓÁ, ĐĹŇĹŇŮ×Ď× × ËĎÍÍĹŇŢĹÓËĎĘ ÄĹŃÔĹĚŘÎĎÓÔÉ, ĆÉÎÁÎÓĎ×ŮČ "
+#~ "ŐÂŮÔËĎ×,\n"
+#~ "ÓŐÄĹÂÎŮČ ÉÚÄĹŇÖĹË É ŰÔŇÁĆĎ×, Ń×ĚŃŔÝÉČÓŃ ŇĹÚŐĚŘÔÁÔĎÍ ÓŐÄĹÂÎŮČ "
+#~ "ŇÁÚÂÉŇÁÔĹĚŘÓÔ×,\n"
+#~ "ÉĚÉ ĚŔÂŮČ ÄŇŐÇÉČ ËĎÓ×ĹÎÎŮČ ĐĎÔĹŇŘ), Ń×ĚŃŔÝÉĘÓŃ ŇĹÚŐĚŘÔÁÔĎÍ ÉÓĐĎĚŘÚĎ×ÁÎÉŃ\n"
+#~ "đŇĎÇŇÁÍÍÎŮČ đŇĎÄŐËÔĎ×, ÄÁÖĹ, ĹÓĚÉ MandrakeSoft S.A. ÂŮĚĎ ÉÚ×ĹÓÔÎĎ\n"
+#~ "Ď ×ĎÚÍĎÖÎĎÓÔÉ ÉĚÉ ÓĚŐŢÁŃČ ÔÁËĎÇĎ ŐÝĹŇÂÁ.\n"
+#~ "\n"
+#~ "ďçňáîéţĺîîáń ďô÷ĺôóô÷ĺîîďóôř, ó÷ńúáîîáń ó ÷ěáäĺîéĺí éěé éóđďěřúď÷áîéĺí "
+#~ "úáđňĺýĺîîďçď đňďçňáííîďçď ďâĺóđĺţĺîéń ÷ îĺëďôďňůč óôňáîáč\n"
+#~ "\n"
+#~ "÷ ĐŇĹÄĹĚÁČ, ÄĎÚ×ĎĚĹÎÎŮČ ÚÁËĎÎĎÍ, MandrakeSoft S.A. ÉĚÉ ĹĹ "
+#~ "ŇÁÓĐŇĎÓÔŇÁÎÉÔĹĚÉ\n"
+#~ "ÎÉ ĐŇÉ ËÁËÉČ ŐÓĚĎ×ÉŃČ ÎĹÓŐÔ ĎÔ×ĹÔÓÔ×ĹÎÎĎÓÔŘ ÚÁ ĚŔÂĎĘ, ËÁËĎĘ ÂŮ ÔĎ ÎÉ "
+#~ "ÂŮĚĎ\n"
+#~ "ĎĐŇĹÄĹĚĹÎÎŮĘ, ÓĚŐŢÁĘÎŮĘ, ĐŇŃÍĎĘ ÉĚÉ ËĎÓ×ĹÎÎŮĘ ŐÝĹŇ (×ËĚŔŢÁŃ "
+#~ "ÎĹĎÇŇÁÎÉŢĹÎÎŮĘ\n"
+#~ "ŐÝĹŇ ĎÔ ËŇŐŰĹÎÉŃ ÂÉÚÎĹÓÁ, ĐĹŇĹŇŮ×Ď× × ËĎÍÍĹŇŢĹÓËĎĘ ÄĹŃÔĹĚŘÎĎÓÔÉ, "
+#~ "ĆÉÎÁÎÓĎ×ŮČ\n"
+#~ "ŐÂŮÔËĎ×, ÓŐÄĹÂÎŮČ ÉÚÄĹŇÖĹË É ŰÔŇÁĆĎ×, Ń×ĚŃŔÝÉČÓŃ ŇĹÚŐĚŘÔÁÔĎÍ ÓŐÄĹÂÎŮČ\n"
+#~ "ŇÁÚÂÉŇÁÔĹĚŘÓÔ×, ÉĚÉ ĚŔÂŮČ ÄŇŐÇÉČ ËĎÓ×ĹÎÎŮČ ĐĎÔĹŇŘ), Ń×ĚŃŔÝÉČÓŃ "
+#~ "ŇĹÚŐĚŘÔÁÔĎÍ\n"
+#~ "×ĚÁÄĹÎÉŃ É ÉÓĐĎĚŘÚĎ×ÁÎÉŃ ËĎÍĐĎÎĹÎÔĎ× ĐŇĎÇŇÁÍÍÎĎÇĎ ĎÂĹÓĐĹŢĹÎÉŃ,\n"
+#~ "ÉĚÉ Ń×ĚŃŔÝÉČÓŃ ŇĹÚŐĚŘÔÁÔĎÍ ÓËÁŢÉ×ÁÎÉŃ ËĎÍĐĎÎĹÎÔĎ× ĐŇĎÇŇÁÍÍÎĎÇĎ "
+#~ "ĎÂĹÓĐĹŢĹÎÉŃ\n"
+#~ "Ó ĎÄÎĎÇĎ ÉÚ ÓÁĘÔĎ× Mandrake Linux, ÚÁĐŇĹÝĹÎÎŮČ ÉĚÉ ĎÇŇÁÎÉŢĹÎÎŮČ × "
+#~ "ÎĹËĎÔĎŇŮČ\n"
+#~ "ÓÔŇÁÎÁČ ÍĹÓÔÎŮÍÉ ÚÁËĎÎÁÍÉ.\n"
+#~ "ďÇŇÁÎÉŢĹÎÎÁŃ ĎÔ×ĹÔÓÔ×ĹÎÎĎÓÔŘ ĐŇÉÍĹÎŃĹÔÓŃ, ÎĎ ÎĹ ĎÇŇÁÎÉŢÉ×ÁĹÔÓŃ,\n"
+#~ "Ë ËĎÍĐĎÎĹÎÔÁÍ ÓÉĚŘÎĎĘ ËŇÉĐÔĎÇŇÁĆÉÉ, ×ËĚŔŢÁĹÍŮČ × đŇĎÇŇÁÍÍÎŮĹ đŇĎÄŐËÔŮ.\n"
+#~ "\n"
+#~ "\n"
+#~ "3. ěÉĂĹÎÚÉŃ GPL É Ó×ŃÚÁÎÎŮĹ ĚÉĂĹÎÚÉÉ\n"
+#~ "\n"
+#~ "đŇĎÇŇÁÍÍÎŮĹ đŇĎÄŐËÔŮ ÓĎÓÔĎŃÔ ÉÚ ËĎÍĐĎÎĹÎÔĎ×, ÓĎÚÄÁÎÎŮČ ŇÁÚĚÉŢÎŮÍÉ ĚŔÄŘÍÉ\n"
+#~ "ÉĚÉ ĎŇÇÁÎÉÚÁĂÉŃÍÉ. âĎĚŘŰÉÎÓÔ×Ď ÜÔÉČ ËĎÍĐĎÎĹÎÔĎ× ÎÁČĎÄŃÔÓŃ ĐĎÄ ÄĹĘÓÔ×ÉĹÍ\n"
+#~ "ŐÓĚĎ×ÉĘ É ĐĎĚĎÖĹÎÉĘ GNU General Public Licence, ÄÁĚĹĹ ÎÁÚŮ×ÁĹÍĎĘ \"GPL"
+#~ "\",\n"
+#~ "ÉĚÉ ĐĎČĎÖÉČ ĚÉĂĹÎÚÉĘ. âĎĚŘŰÉÎÓÔ×Ď ÜÔÉČ ĚÉĂĹÎÚÉĘ ĐĎÚ×ĎĚŃŔÔ ×ÁÍ "
+#~ "ÉÓĐĎĚŘÚĎ×ÁÔŘ,\n"
+#~ "ŇÁÚÍÎĎÖÁÔŘ, ÁÄÁĐÔÉŇĎ×ÁÔŘ ÉĚÉ ŇÁÓĐŇĎÓÔŇÁÎŃÔŘ ÄÁĚĹĹ ËĎÍĐĎÎĹÎÔŮ, ÎÁ ËĎÔĎŇŮĹ\n"
+#~ "ĎÎÉ ŇÁÓĐŇĎÓÔŇÁÎŃŔÔÓŃ. đĎÖÁĚŐĘÓÔÁ, ×ÎÉÍÁÔĹĚŘÎĎ ŢÉÔÁĘÔĹ ŐÓĚĎ×ÉŃ É "
+#~ "ĐĎĚĎÖĹÎÉŃ\n"
+#~ "ĚÉĂĹÎÚÉĎÎÎĎÇĎ ÓĎÇĚÁŰĹÎÉŃ ÄĚŃ ËÁÖÄĎÇĎ ÉÚ ËĎÍĐĎÎĹÎÔ ĐĹŇĹÄ ÉÓĐĎĚŘÚĎ×ÁÎÉĹÍ\n"
+#~ "ĚŔÂĎÇĎ ËĎÍĐĎÎĹÎÔÁ. ěŔÂŮĹ ×ĎĐŇĎÓŮ ĐĎ ĚÉĂĹÎÚÉÉ ËĎÍĐĎÎĹÎÔÁ ÄĎĚÖÎŮ ÂŮÔŘ\n"
+#~ "ÁÄŇĹÓĎ×ÁÎŮ Á×ÔĎŇŐ ËĎÍĐĎÎĹÎÔÁ, Á ÎĹ MandrakeSoft'Ő\n"
+#~ "đŇĎÇŇÁÍÍŮ, ŇÁÚŇÁÂĎÔÁÎÎŮĹ MandrakeSoft S.A., ÎÁČĎÄŃÔÓŃ ĐĎÄ ÄĹĘÓÔ×ÉĹÍ "
+#~ "ĚÉĂĹÎÚÉÉ\n"
+#~ "GPL. äĎËŐÍĹÎÔÁĂÉŃ, ÎÁĐÉÓÁÎÎÁŃ MandrakeSoft S.A., ÎÁČĎÄÉÔÓŃ ĐĎÄ ÄĹĘÓÔ×ÉĹÍ\n"
+#~ "ĎÓĎÂĎĘ ĚÉĂĹÎÚÉÉ. đĎÖÁĚŐĘÓÔÁ, ĎÂŇÁÔÉÔĹÓŘ Ë ÄĎËŐÍĹÎÔÁĂÉÉ ÚÁ ÄĎĐĎĚÎÉÔĹĚŘÎĎĘ\n"
+#~ "ÉÎĆĎŇÍÁĂÉĹĘ.\n"
+#~ "\n"
+#~ "4. đŇÁ×Á ÎÁ ÉÎÔĹĚĚĹËÔŐÁĚŘÎŐŔ ÓĎÂÓÔ×ĹÎÎĎÓÔŘ\n"
+#~ "\n"
+#~ "÷ÓĹ ĐŇÁ×Á ÎÁ ËĎÍĐĎÎĹÎÔŮ đŇĎÇŇÁÍÍÎŮČ đŇĎÄŐËÔĎ× ĐŇÉÎÁÄĚĹÖÁÔ ÉČ "
+#~ "ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉÍ\n"
+#~ "Á×ÔĎŇÁÍ É ÚÁÝÉÝĹÎŮ ÚÁËĎÎÁÍÉ Ď ÉÎÔĹĚĚĹËÔŐÁĚŘÎĎĘ ÓĎÂÓÔ×ĹÎÎĎÓÔÉ É "
+#~ "Á×ÔĎŇÓËĎÍ\n"
+#~ "ĐŇÁ×Ĺ, ĐŇÉÍĹÎÉÔĹĚŘÎĎ Ë ĐŇĎÇŇÁÍÍÎĎÍŐ ĎÂĹÓĐĹŢĹÎÉŔ.\n"
+#~ "MandrakeSoft S.A. ÓĎČŇÁÎŃĹÔ ÚÁ ÓĎÂĎĘ ĐŇÁ×Ď ÉÚÍĹÎŃÔŘ ÉĚÉ ÁÄÁĐÔÉŇĎ×ÁÔŘ\n"
+#~ "đŇĎÇŇÁÍÍÎŮĹ đŇĎÄŐËÔŮ, ËÁË ĂĹĚÉËĎÍ, ÔÁË É ĐĎ ŢÁÓÔŃÍ, ĚŔÂŮÍ ÓĐĎÓĎÂĎÍ É ÄĚŃ\n"
+#~ "ĚŔÂŮČ ĂĹĚĹĘ.\n"
+#~ "\"Mandrake\", \"Mandrake Linux\" É ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĹ ĚĎÇĎÔÉĐŮ Ń×ĚŃŔÔÓŃ "
+#~ "ÔĎŇÇĎ×ŮÍÉ ÍÁŇËÁÍÉ MandrakeSoft S.A.\n"
+#~ "\n"
+#~ "\n"
+#~ "5. ďÓÎĎ×ÎŮĹ ÚÁËĎÎŮ\n"
+#~ "\n"
+#~ "ĺÓĚÉ ËÁËÁŃ-ĚÉÂĎ ŢÁÓÔŘ ÜÔĎÇĎ ÓĎÇĚÁŰĹÎÉŃ Ń×ĚŃĹÔÓŃ ÎĹÄĹĘÓÔ×ÉÔĹĚŘÎĎĘ,\n"
+#~ "ĐŇĎÔÉ×ĎÚÁËĎÎÎĎĘ ÉĚÉ ĐŇĎÔÉ×ĎŇĹŢÁÝĹĘ ÄĹĘÓÔ×ŐŔÝĹÍŐ ÚÁËĎÎĎÄÁÔĹĚŘÓÔ×Ő, ÜÔÁ\n"
+#~ "ŢÁÓÔŘ ÉÓËĚŔŢÁĹÔÓŃ ÉÚ ÜÔĎÇĎ ËĎÎÔŇÁËÔÁ. ÷Ů ĎÓÔÁĹÔĹÓŘ ĎÇŇÁÎÉŢĹÎÎŮÍÉ\n"
+#~ "ÄŇŐÇÉÍÉ ĐŇÉÇĎÄÎŮÍÉ ŇÁÚÄĹĚÁÍÉ ÓĎÇĚÁŰĹÎÉŃ.\n"
+#~ "őÓĚĎ×ÉŃ É ĐĎĚĎÖĹÎÉŃ ÜÔĎĘ ěÉĂĹÎÚÉÉ ÎÁČĎÄŃÔÓŃ ĐĎÄ ÄĹĘÓÔ×ÉĹÍ ĆŇÁÎĂŐÚÓËĎÇĎ\n"
+#~ "ÚÁËĎÎĎÄÁÔĹĚŘÓÔ×Á.\n"
+#~ "÷ÓĹ ŇÁÚÎĎÇĚÁÓÉŃ ĐĎ ĐĎ×ĎÄŐ ŐÓĚĎ×ÉĘ É ĐĎĚĎÖĹÎÉĘ ÜÔĎĘ ĚÉĂĹÎÚÉÉ, ÓËĎŇĹĹ "
+#~ "×ÓĹÇĎ, ÂŐÄŐÔ ĎÓĐÁŇÉ×ÁÔŘÓŃ × ÓŐÄĹ. ÷ ĐĎÓĚĹÄÎŔŔ ĎŢĹŇĹÄŘ ĎÓĐÁŇÉ×ÁÎÉĹ ×ĎĐŇĎÓÁ "
+#~ "ÂŐÄĹÔ ĐĹŇĹÄÁÎĎ × ÓĎĎÔ×ĹÔÓÔ×ŐŔÝÉĘ úÁËĎÎĎÄÁÔĹĚŘÎŮĘ óŐÄ đÁŇÉÖÁ - ćŇÁÎĂÉŃ.đĎ "
+#~ "ĚŔÂŮÍ ×ĎĐŇĎÓÁÍ, ËÁÓÁŔÝÉÍÓŃ ÜÔĎÇĎ ÄĎËŐÍĹÎÔÁ, ĐĎÖÁĚŐĘÓÔÁ, Ó×ŃÖÉÔĹÓŘ\n"
+#~ "Ó MandrakeSoft S.A.\n"
+
+#~ msgid "ECI Hi-Focus"
+#~ msgstr "ECI Hi-Focus"
+
+#~ msgid "Proxy should be ftp://..."
+#~ msgstr "đŇĎËÓÉ ÄĎĚÖĹÎ ÂŮÔŘ ftp://..."
+
+#~ msgid ""
+#~ "To share your own knowledge and help build Linux tools, join the "
+#~ "discussions forum you'll find on our \"Community\" webpages"
+#~ msgstr ""
+#~ "ţÔĎÂŮ ĐĎÄĹĚÉÔŘÓŃ Ó×ĎÉÍÉ ÚÎÁÎÉŃÍÉ É ĐĎÍĎŢŘ × ÓĎÚÄÁÎÉÉ ÓĹŇ×ÉÓÎŮČ ĐŇĎÇŇÁÍÍ "
+#~ "ĐĎÄ Linux, ĐŇÉÓĎĹÄÉÎŃĘÔĹÓŘ Ë ĎÂÓŐÖÄĹÎÉŃÍ ÎÁ ĆĎŇŐÍÁČ, ËĎÔĎŇŮĹ ×Ů ÎÁĘÄĹÔĹ "
+#~ "ÎÁ ÎÁŰÉČ ×ĹÂ-ÓÔŇÁÎÉĂÁČ \"Community\"."
+
+#~ msgid "Discover the most up-to-date graphics and multimedia tools!"
+#~ msgstr ""
+#~ "ďÔËŇĎĘÔĹ ÓÁÍŮĹ ÓĎ×ŇĹÍĹÎÎŮĹ ÇŇÁĆÉŢĹÓËÉĹ É ÍŐĚŘÔÉÍĹÄÉĘÎŮĹ ÓĹŇ×ÉÓÎŮĹ "
+#~ "ĐŇĎÇŇÁÍÍŮ!"
+
+#~ msgid ""
+#~ "Mandrake Linux 9.0 provides the best Open Source games - arcade, action, "
+#~ "cards, sports, strategy..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.0 ĐŇĹÄĎÓÔÁ×ĚŃĹÔ ÓÁÍŮĹ ĚŐŢŰÉĹ ÉÇŇŮ Ó ďÔËŇŮÔŮÍ ÉÓČĎÄÎŮÍ "
+#~ "ÔĹËÓÔĎÍ - ÁŇËÁÄŮ, ËÁŇÔŮ, ÓĐĎŇÔ, ÓÔŇÁÔĹÇÉÉ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 9.0 provides 11 user interfaces that can be fully "
+#~ "modified: KDE 3, Gnome 2, WindowMaker..."
+#~ msgstr ""
+#~ "Mandrake Linux 9.0 ĐŇĹÄĎÓÔÁ×ĚŃĹÔ 11 ÉÎÔĹŇĆĹĘÓĎ× ĐĎĚŘÚĎ×ÁÔĹĚŃ, ËĎÔĎŇŮĹ "
+#~ "ÍĎÇŐÔ ÂŮÔŘ ĐĎĚÎĎÓÔŘŔ ÉÚÍĹÎĹÎŮ: KDE 3, Gnome 2, WindowMaker..."
+
+#~ msgid ""
+#~ "Transform your machine into a powerful server with a few clicks of your "
+#~ "mouse: Web server, mail, firewall, router, file and print server..."
+#~ msgstr ""
+#~ "đŇĹ×ŇÁÔÉÔĹ Ó×ĎŔ ÍÁŰÉÎŐ × ÍĎÝÎŮĘ ÓĹŇ×ĹŇ ÎĹÓËĎĚŘËÉÍÉ ÝĹĚŢËÁÍÉ ÍŮŰÉ: ×ĹÂ-"
+#~ "ÓĹŇ×ĹŇ, ÓĹŇ×ĹŇ ĐĹŢÁÔÉ, ĆÁĘĹŇ×ĎĚ, ÍÁŇŰŇŐÔÉÚÁÔĎŇ, ĐĎŢÔĎ×ŮĘ É ĆÁĘĚĎ×ŮĘ "
+#~ "ÓĹŇ×ĹŇ..."
+
+#~ msgid ""
+#~ "Our full range of Linux solutions, as well as special offers on products "
+#~ "and 'goodies', are available online at our e-store"
+#~ msgstr ""
+#~ "đĎĚÎŮĘ ÎÁÂĎŇ Linux-ŇĹŰĹÎÉĘ, Á ÔÁËÖĹ ÓĐĹĂÉÁĚŘÎŮĹ ĐŇĹÄĚĎÖĹÎÉŃ ĐĎ ĐŇĎÄŐËÔÁÍ "
+#~ "É '×ÓŃËĎĹ ÄĎÂŇĎ' ÄĎÓÔŐĐÎŮ × ÎÁŰĹÍ ĎÎĚÁĘÎĎ×ĎÍ ÜĚĹËÔŇĎÎÎĎÍ ÍÁÇÁÚÉÎĹ"
+
+#~ 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 ""
+#~ "MandrakeSoft ŇÁÂĎÔÁĹÔ ÂĎË Ď ÂĎË Ó ŇŃÄĎÍ ËĎÍĐÁÎÉĘ, ĐŇĹÄĚÁÇÁŔÝÉČ "
+#~ "ĐŇĎĆĹÓÓÉĎÎÁĚŘÎŮĹ ŇĹŰĹÎÉŃ, ÓĎ×ÍĹÓÔÉÍŮĹ Ó Mandrake Linux; ÓĐÉÓĎË ÜÔÉČ "
+#~ "ĐÁŇÔÎĹŇĎ× ÄĎÓÔŐĐĹÎ × MandrakeStore"
+
+#~ msgid ""
+#~ "The training program has been create to respond to the needs of both "
+#~ "users and experts (Network and System administrations)"
+#~ msgstr ""
+#~ "đŇĎÇŇÁÍÍÁ ĎÂŐŢĹÎÉŃ ÂŮĚÁ ÓĎÚÄÁÎÁ ÄĚŃ ŐÄĎ×ĚĹÔ×ĎŇĹÎÉŃ ĐĎÔŇĹÂÎĎÓÔĹĘ "
+#~ "ĐĎĚŘÚĎ×ÁÔĹĚĹĘ É ÜËÓĐĹŇÔĎ× (ÓĹÔĹ×ŮČ É ÓÉÓÔĹÍÎŮČ ÁÄÍÉÎÉÓÔŇÁÔĎŇĎ×)"
+
+#~ msgid ""
+#~ "Find the solutions to your problems via MandrakeSoft's online support "
+#~ "platform"
+#~ msgstr ""
+#~ "îÁĘÄÉÔĹ ŇĹŰĹÎÉĹ ÄĚŃ Ó×ĎÉČ ÚÁÄÁŢ ĐŇÉ ĐĎÍĎÝÉ ËĎÍĐĚĹËÓÁ ĎÎĚÁĘÎĎ×ĎĘ ĐĎÄÄĹŇÖËÉ "
+#~ "MandrakeSoft"
+
+#~ msgid "Total progress"
+#~ msgstr "óŐÍÍÁŇÎŮĘ ĐŇĎĂĹÓÓ"
+
+#~ 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 ""
+#~ "éÚ×ÉÎÉÔĹ, perl-Expect ÎĹ ŐÓÔÁÎĎ×ĚĹÎ/×ËĚŔŢĹÎ. ţÔĎÂŮ\n"
+#~ "ÉÓĐĎĚŘÚĎ×ÁÔŘ ÜÔŐ ×ĎÚÍĎÖÎĎÓÔŘ, ŐÓÔÁÎĎ×ÉÔĹ perl-Expect\n"
+#~ "É ÚÁËĎÍÍĹÎÔÉŇŐĘÔĹ ÓÔŇĎËÉ 772-774, Á ÔÁËÖĹ 788, 789.\n"
+#~ "úÁÔĹÍ ŇÁÓËĎÍÍĹÎÔÉŇŐĘÔĹ ÓÔŇĎËŐ 787."
+
+#~ msgid "Keys in place already"
+#~ msgstr "ëĚŔŢÉ ŐÖĹ ÎÁ ÍĹÓÔĹ"
+
+#~ msgid "quit"
+#~ msgstr "×ŮČĎÄ"
+
+#~ msgid ""
+#~ "\n"
+#~ "Some devices in the %s class were added:\n"
+#~ msgstr ""
+#~ "\n"
+#~ "âŮĚÉ ÄĎÂÁ×ĚĹÎŮ ÎĹËĎÔĎŇŮĹ ŐÓÔŇĎĘÓÔ×Á ËĚÁÓÓÁ %s:\n"
+
#~ msgid "LBA (doesn't work on old BIOSes)"
#~ msgstr "LBA (ÎĹ ŇÁÂĎÔÁĹÔ ÎÁ ÓÔÁŇŮČ BIOS'ÁČ)"
@@ -13989,15 +15166,13 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ "If you wish to configure the network later after installation, or if you\n"
#~ "are finished configuring your network connection, click \"Cancel\"."
#~ msgstr ""
-#~ "ôĹĐĹŇŘ ×ÁÍ ĐŇĹÄĚÁÇÁĹÔÓŃ ÎÁÓÔŇĎÉÔŘ ×ÁŰĹ ÓĎĹÄÉÎĹÎÉĹ Ó éÎÔĹŇÎĹÔĎÍ/ÓĹÔŘŔ. "
-#~ "ĺÓĚÉ\n"
-#~ "×Ů ČĎÔÉÔĹ ĐĎÄËĚŔŢÉÔŘ Ó×ĎĘ ËĎÍĐŘŔÔĹŇ Ë éÎÔĹŇÎĹÔŐ ÉĚÉ Ë ĚĎËÁĚŘÎĎĘ ÓĹÔÉ,\n"
-#~ "ÝĹĚËÎÉÔĹ \"ďë\". âŐÄĹÔ ÚÁĐŐÝĹÎĎ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ ÓĹÔĹ×ŮČ ŐÓÔŇĎĘÓÔ× É "
-#~ "ÍĎÄĹÍÁ.\n"
-#~ "ĺÓĚÉ ÜÔĎ ĎĐŇĹÄĹĚĹÎÉĹ ÚÁ×ĹŇŰÉÔÓŃ ÎĹŐÄÁŢÎĎ, × ÓĚĹÄŐŔÝÉĘ ŇÁÚ ÓÎÉÍÉÔĹ\n"
-#~ "ÇÁĚĎŢËŐ \"éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎĎĐŇĹÄĹĚĹÎÉĹ\". ÷Ů ÍĎÖĹÔĹ ÔÁËÖĹ ÎĹ ÎÁÓÔŇÁÉ×ÁÔŘ\n"
-#~ "ÓĹÔŘ ÉĚÉ ÓÄĹĚÁÔŘ ÜÔĎ ĐĎÚÖĹ; × ÜÔĎÍ ÓĚŐŢÁĹ, ĐŇĎÓÔĎ ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ\n"
-#~ "\"ďÔÍĹÎÁ\".\n"
+#~ "ôĹĐĹŇŘ ×ÁÍ ĐŇĹÄĚÁÇÁĹÔÓŃ ÎÁÓÔŇĎÉÔŘ Ó×ĎĹ ĐĎÄËĚŔŢĹÎÉĹ Ë éÎÔĹŇÎĹÔŐ/ÓĹÔÉ.\n"
+#~ "ĺÓĚÉ ×Ů ČĎÔÉÔĹ ĐĎÄËĚŔŢÉÔŘ Ó×ĎĘ ËĎÍĐŘŔÔĹŇ Ë éÎÔĹŇÎĹÔŐ ÉĚÉ Ë ĚĎËÁĚŘÎĎĘ\n"
+#~ "ÓĹÔÉ, ÎÁÖÍÉÔĹ \"ďë\". âŐÄĹÔ ÚÁĐŐÝĹÎĎ Á×ÔĎÍÁÔÉŢĹÓËĎĹ ĎĐŇĹÄĹĚĹÎÉĹ ÓĹÔĹ×ŮČ\n"
+#~ "ŐÓÔŇĎĘÓÔ× É ÍĎÄĹÍÁ. ĺÓĚÉ ÜÔĎ ĎĐŇĹÄĹĚĹÎÉĹ ÚÁ×ĹŇŰÉÔÓŃ ÎĹŐÄÁŢÎĎ, ×\n"
+#~ "ÓĚĹÄŐŔÝÉĘ ŇÁÚ ÓÎÉÍÉÔĹ ÇÁĚĎŢËŐ \"éÓĐĎĚŘÚĎ×ÁÔŘ Á×ÔĎÍÁÔÉŢĹÓËĎĹ\n"
+#~ "ĎĐŇĹÄĹĚĹÎÉĹ\". ÷Ů ÔÁËÖĹ ÍĎÖĹÔĹ ÎĹ ÎÁÓÔŇÁÉ×ÁÔŘ ÓĹÔŘ ÉĚÉ ÓÄĹĚÁÔŘ ÜÔĎ\n"
+#~ "ĐĎÚÖĹ; × ÜÔĎÍ ÓĚŐŢÁĹ, ĐŇĎÓÔĎ ÎÁÖÍÉÔĹ ÎÁ ËÎĎĐËŐ \"ďÔÍĹÎÁ\".\n"
#~ "\n"
#~ "äĎÓÔŐĐÎŮĹ ÓĎĹÄÉÎĹÎÉŃ: ÔŇÁÄÉĂÉĎÎÎŮĘ ÍĎÄĹÍ, ISDN-ÍĎÄĹÍ, ADSL-ÓĎĹÄÉÎĹÎÉĹ,\n"
#~ "ËÁÂĹĚŘÎŮĘ ÍĎÄĹÍ É, ÎÁËĎÎĹĂ, ĐŇĎÓÔĎĹ ĐĎÄËĚŔŢĹÎÉĹ Ë ě÷ó (Ethernet).\n"
@@ -14078,6 +15253,7 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ "AfterStep,\n"
#~ "WindowMaker É ÄŇ.) ÚÁ×ŃÚÁÎŮ Ó Mandrake Linux. ÷ ÜÔĎÍ ŇÁÚÄĹĚĹ DrakX\n"
#~ "ĐĎĐŮÔÁĹÔÓŃ ÎÁÓÔŇĎÉÔŘ éËÓŮ Á×ÔĎÍÁÔÉŢĹÓËÉ.\n"
+#~ "\n"
#~ "ďÎ ÄĎ×ĎĚŘÎĎ ŇĹÄËĎ ÚÁ×ĹŇŰÁĹÔÓŃ ÎĹŐÄÁŢĹĘ, ÚÁ ÉÓËĚŔŢĹÎÉĹÍ ÓĚŐŢÁĹ× Ó ĎŢĹÎŘ\n"
#~ "ÓÔÁŇŮÍ ĎÂĎŇŐÄĎ×ÁÎÉĹÍ (ÉĚÉ ĎŢĹÎŘ ÎĎ×ŮÍ). ĺÓĚÉ ×ÓĹ ĐŇĎĘÄĹÔ ŐÄÁŢÎĎ, ĎÎ\n"
#~ "Á×ÔĎÍÁÔÉŢĹÓËÉ ÚÁĐŐÓÔÉÔ éËÓŮ Ó ÎÁÉĚŐŢŰÉÍ ŇÁÚŇĹŰĹÎÉĹÍ ÉÚ ×ĎÚÍĎÖÎŮČ\n"
@@ -15579,6 +16755,18 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ msgid "Internet and Messaging"
#~ msgstr "éÎÔĹŇÎĹÔ É ďÂÍĹÎ ÓĎĎÂÝĹÎÉŃÍÉ"
+#~ 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"
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 ĐŇĹÄĚÁÇÁĹÔ ÎÁÉĚŐŢŰĹĹ ĐŇĎÇŇÁÍÍÎĎĹ ĎÂĹÓĐĹŢĹÎÉĹ ÄĚŃ "
+#~ "ÄĎÓÔŐĐÁ ËĎ ×ÓĹÍŐ, ŢÔĎ ÍĎÖĹÔ ĐŇĹÄĚĎÖÉÔŘ ×ÁÍ éÎÔĹŇÎĹÔ: ÓĹŇĆÉÎÇ ĐĎ ĐÁŐÔÉÎĹ É "
+#~ "ĐŇĎÓÍĎÔŇ ÁÎÉÍÁĂÉÉ ĐŇÉ ĐĎÍĎÝÉ Mozilla É Konqueror, ĎÂÍĹÎ ÜĚĹËÔŇĎÎÎĎĘ "
+#~ "ĐĎŢÔĎĘ É ĎŇÇÁÎÉÚÁĂÉŃ ×ÁŰĹĘ ĚÉŢÎĎĘ ÉÎĆĎŇÍÁĂÉÉ ĐŇÉ ĐĎÍĎÝÉ Evolution É Kmail "
+#~ "É ÍÎĎÇĎĹ ÄŇŐÇĎĹ"
+
#~ msgid "Multimedia and Graphics"
#~ msgstr "íŐĚŘÔÉÍĹÄÉÁ É çŇÁĆÉËÁ"
@@ -15621,6 +16809,21 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ msgid "Server Software"
#~ msgstr "óĹŇ×ĹŇ ĐŇĎÇŇÁÍÍÎĎÇĎ ĎÂĹÓĐĹŢĹÎÉŃ"
+#~ 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, ..."
+#~ msgstr ""
+#~ "đŇĹ×ŇÁÔÉÔĹ Ó×ĎŔ ÍÁŰÉÎŐ × ÍĎÝÎŮĘ ÓĹŇ×ĹŇ ×ÓĹÇĎ ĚÉŰŘ ÎĹÓËĎĚŘËÉÍÉ ÝĹĚŢËÁÍÉ "
+#~ "ÍŮŰÉ: ×ĹÂ-ÓĹŇ×ĹŇ, ÜĚĹËÔŇĎÎÎÁŃ ĐĎŢÔÁ, ĆÁĘĹŇ×ĎĚ, ÍÁŇŰŇŐÔÉÚÁÔĎŇ, ĆÁĘĚĎ×ŮĘ "
+#~ "ÓĹŇ×ĹŇ É ÓĹŇ×ĹŇ ĐĹŢÁÔÉ, ..."
+
+#~ msgid ""
+#~ "Mandrake Linux 8.2 provides the best Open Source games - arcade, action, "
+#~ "cards, sports, strategy, ..."
+#~ msgstr ""
+#~ "Mandrake Linux 8.2 ĐŇĹÄĚÁÇÁĹÔ ÎÁÉĚŐŢŰÉĹ ÉÇŇŮ Ó ďÔËŇŮÔŮÍÉ ÉÓČĎÄÎŮÍÉ "
+#~ "ÔĹÓÔÁÍÉ - ÁŇËÁÄŮ, ÜËŰĹÎŮ, ËÁŇÔŮ, ÓĐĎŇÔÉ×ÎŮĹ, ÓÔŇÁÔĹÇÉÉ, ..."
+
#~ msgid "MandrakeCampus"
#~ msgstr "MandrakeCampus"
@@ -15663,6 +16866,13 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ msgstr "MandrakeStore"
#~ msgid ""
+#~ "A full range of Linux solutions, as well as special offers on products "
+#~ "and 'goodies', are available online at our e-store"
+#~ msgstr ""
+#~ "đĎĚÎŮĘ ÄÉÁĐÁÚĎÎ ŇĹŰĹÎÉĘ Linux, Á ÔÁËÖĹ ÓĐĹĂÉÁĚŘÎŮĹ ĐŇĹÄĚĎÖĹÎÉŃ ĐĎ "
+#~ "ĐŇĎÄŐËÔÁÍ É 'goodies' ÄĎÓÔŐĐÎŮ × ÎÁŰĹÍ ĎÎĚÁĘÎĎ×ĎÍ ÜĚĹËÔŇĎÎÎĎÍ ÍÁÇÁÚÉÎĹ"
+
+#~ msgid ""
#~ "For more information on MandrakeSoft's Professional Services and "
#~ "commercial offerings, please see the following web page:"
#~ msgstr ""
@@ -15952,10 +17162,10 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ "Ó ÔĹÍĎĘ \"undetected TV card\"."
#~ msgid "Mail/SMS alert"
-#~ msgstr "đŇĹÄŐĐŇĹÖÄĹÎÉĹ ÎÁ Mail/SMS"
+#~ msgstr "ő×ĹÄĎÍĚĹÎÉĹ ÎÁ Mail/SMS"
#~ msgid "Mail/SMS alert configuration"
-#~ msgstr "îÁÓÔŇĎĘËÁ ĐŇĹÄŐĐŇĹÖÄĹÎÉŃ ÎÁ Mail/SMS"
+#~ msgstr "îÁÓÔŇĎĘËÁ Ő×ĹÄĎÍĚĹÎÉŃ ÎÁ Mail/SMS"
#~ msgid ""
#~ "Welcome to the mail/SMS configuration utility.\n"
@@ -15964,17 +17174,17 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ msgstr ""
#~ "äĎÂŇĎ ĐĎÖÁĚĎ×ÁÔŘ × ŐÔÉĚÉÔŐ ÎÁÓÔŇĎĘËÉ mail/SMS.\n"
#~ "\n"
-#~ "úÄĹÓŘ ×Ů ÓÍĎÖĹÔĹ ÎÁÓÔŇĎÉÔŘ ÓÉÓÔĹÍŐ ĐŇĹÄŐĐŇĹÖÄĹÎÉŃ.\n"
+#~ "úÄĹÓŘ ×Ů ÓÍĎÖĹÔĹ ÎÁÓÔŇĎÉÔŘ ÓÉÓÔĹÍŐ Ő×ĹÄĎÍĚĹÎÉŃ.\n"
#~ msgid ""
#~ "You will receive an alert if one of the selected service is no more "
#~ "running"
#~ msgstr ""
-#~ "÷Ů ĐĎĚŐŢÉÔĹ ĐŇĹÄŐĐŇĹÖÄĹÎÉĹ, ĹÓĚÉ ËÁËĎĘ-ĚÉÂĎ ÉÚ ×ŮÂŇÁÎÎŮČ ÓĹŇ×ÉÓĎ× ÂĎĚŘŰĹ "
-#~ "ÎĹ ×ŮĐĎĚÎŃĹÔÓŃ"
+#~ "÷Ů ĐĎĚŐŢÉÔĹ Ő×ĹÄĎÍĚĹÎÉĹ, ĹÓĚÉ ËÁËĎĘ-ĚÉÂĎ ÉÚ ×ŮÂŇÁÎÎŮČ ÓĹŇ×ÉÓĎ× ÂĎĚŘŰĹ ÎĹ "
+#~ "×ŮĐĎĚÎŃĹÔÓŃ"
#~ msgid "Configure the way the system will alert you"
-#~ msgstr "îÁÓÔŇĎÉÔŘ ÍĹÔĎÄ, ËĎÔĎŇŮÍ ÓÉÓÔĹÍÁ ÂŐÄĹÔ ĐŇĹÄŐĐŇĹÖÄÁÔŘ ×ÁÓ"
+#~ msgstr "îÁÓÔŇĎÉÔŘ ÍĹÔĎÄ, ËĎÔĎŇŮÍ ÓÉÓÔĹÍÁ ÂŐÄĹÔ Ő×ĹÄĎÍĚŃÔŘ ×ÁÓ"
#~ msgid "no serial_usb found\n"
#~ msgstr "serial_usb ÎĹ ÎÁĘÄĹÎ\n"
@@ -15983,10 +17193,10 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ msgstr "%s ÎÁĘÄĹÎ ÎÁ %s, ÎÁÓÔŇĎÉÔŘ ĹÇĎ?"
#~ msgid "Firewalling Configuration"
-#~ msgstr "îÁÓÔŇĎĘËÁ ÂŇÁÎÄÍÁŐÜŇÁ"
+#~ msgstr "îÁÓÔŇĎĘËÁ ĆÁĘĹŇ×ĎĚÁ"
#~ msgid "Firewalling configuration"
-#~ msgstr "îÁÓÔŇĎĘËÁ ÂŇÁÎÄÍÁŐÜŇÁ"
+#~ msgstr "îÁÓÔŇĎĘËÁ ĆÁĘĹŇ×ĎĚÁ"
#~ msgid ""
#~ "Firewalling\n"
@@ -15994,19 +17204,19 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ "You already have set up a firewall.\n"
#~ "Click on Configure to change or remove the firewall"
#~ msgstr ""
-#~ "âŇÁÎÄÍÁŐÜŇ\n"
+#~ "ćÁĘĹŇ×ĎĚ\n"
#~ "\n"
-#~ "÷Ů ŐÖĹ ÎÁÓÔŇĎÉĚÉ ÂŇÁÎÄÍÁŐÜŇ.\n"
-#~ "îÁÖÍÉÔĹ ÎÁ \"îÁÓÔŇĎÉÔŘ\", ŢÔĎÂŮ ÉÚÍĹÎÉÔŘ ÉĚÉ ŐÄÁĚÉÔŘ ÂŇÁÎÄÍÁŐÜŇ"
+#~ "÷Ů ŐÖĹ ÎÁÓÔŇĎÉĚÉ ĆÁĘĹŇ×ĎĚ.\n"
+#~ "îÁÖÍÉÔĹ ÎÁ \"îÁÓÔŇĎÉÔŘ\", ŢÔĎÂŮ ÉÚÍĹÎÉÔŘ ÉĚÉ ŐÄÁĚÉÔŘ ĆÁĘĹŇ×ĎĚ"
#~ msgid ""
#~ "Firewalling\n"
#~ "\n"
#~ "Click on Configure to set up a standard firewall"
#~ msgstr ""
-#~ "âŇÁÎÄÍÁŐÜŇ\n"
+#~ "ćÁĘĹŇ×ĎĚ\n"
#~ "\n"
-#~ "îÁÖÍÉÔĹ ÎÁ \"îÁÓÔŇĎÉÔŘ\", ŢÔĎÂŮ ÎÁÓÔŇĎÉÔŘ ÂŇÁÎÄÍÁŐÜŇ"
+#~ "îÁÖÍÉÔĹ ÎÁ \"îÁÓÔŇĎÉÔŘ\", ŢÔĎÂŮ ÎÁÓÔŇĎÉÔŘ ĆÁĘĹŇ×ĎĚ"
#~ msgid ""
#~ "We'll now ask you questions about which services you'd like to allow\n"
@@ -16023,7 +17233,7 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ "Ń×ĚŃĹÔÓŃ ×ÁÖÎŮÍ ÍĎÍĹÎÔĎÍ.\n"
#~ "\n"
#~ "đĎÖÁĚŐĘÓÔÁ, ĹÓĚÉ × ÄÁÎÎŮĘ ÍĎÍĹÎÔ ×Ů ÎĹ ÉÓĐĎĚŘÚŐĹÔĹ ËÁËĎĘ-ĚÉÂĎ ÉÚ ÜÔÉČ\n"
-#~ "ÓĹŇ×ÉÓĎ×, ÚÁËŇĎĘÔĹ ĹÇĎ ÂŇÁÎÄÍÁŐÜŇĎÍ. ÷Ů ÍĎÖĹÔĹ ÉÚÍĹÎÉÔŘ ÜÔŐ ÎÁÓÔŇĎĘËŐ\n"
+#~ "ÓĹŇ×ÉÓĎ×, ÚÁËŇĎĘÔĹ ĹÇĎ ĆÁĘĹŇ×ĎĚĎÍ. ÷Ů ÍĎÖĹÔĹ ÉÚÍĹÎÉÔŘ ÜÔŐ ÎÁÓÔŇĎĘËŐ\n"
#~ "× ĚŔÂĎĹ ŐÄĎÂÎĎĹ ÄĚŃ ×ÁÓ ×ŇĹÍŃ, ĐĹŇĹÚÁĐŐÓÔÉ× ÜÔĎ ĐŇÉĚĎÖĹÎÉĹ!"
#~ msgid ""
@@ -16100,7 +17310,7 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ "Ó×ĎÉ\n"
#~ "ÓĎĎÂÝĹÎÉŃ ŢĹŇĹÚ pine, mutt ÉĚÉ ĚŔÂĎÇĎ ÄŇŐÇĎÇĎ ÔĹËÓÔĎ×ĎÇĎ ĐĎŢÔĎ×ĎÇĎ "
#~ "ËĚÉĹÎÔÁ,\n"
-#~ "ÓËĎŇĹĹ ×ÓĹÇĎ, ÔÁË É ĹÓÔŘ. éÎÁŢĹ, ×Ů ÄĎĚÖÎŮ ÚÁËŇŮÔŘ ĹÇĎ ÂŇÁÎÄÍÁŐÜŇĎÍ.\n"
+#~ "ÓËĎŇĹĹ ×ÓĹÇĎ, ÔÁË É ĹÓÔŘ. éÎÁŢĹ, ×Ů ÄĎĚÖÎŮ ÚÁËŇŮÔŘ ĹÇĎ ĆÁĘĹŇ×ĎĚĎÍ.\n"
#~ "\n"
#~ msgid ""
@@ -16175,13 +17385,13 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ msgstr "óĎČŇÁÎÉÔŘ & ÷ŮĘÔÉ"
#~ msgid "Firewall Configuration Wizard"
-#~ msgstr "íÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ ÂŇÁÎÄÍÁŐÜŇÁ"
+#~ msgstr "íÁÓÔĹŇ ÎÁÓÔŇĎĘËÉ ĆÁĘĹŇ×ĎĚÁ"
#~ msgid "No (firewall this off from the internet)"
-#~ msgstr "îĹÔ (ÂŇÁÎÄÍÁŐÜŇ ÚÁ ĐŇĹÄĹĚÁÍÉ éÎÔĹŇÎĹÔÁ)"
+#~ msgstr "îĹÔ (ĆÁĘĹŇ×ĎĚ ÚÁ ĐŇĹÄĹĚÁÍÉ éÎÔĹŇÎĹÔÁ)"
#~ msgid "Yes (allow this through the firewall)"
-#~ msgstr "äÁ (ŇÁÚŇĹŰÉÔŘ ŢĹŇĹÚ ÂŇÁÎÄÍÁŐÜŇ)"
+#~ msgstr "äÁ (ŇÁÚŇĹŰÉÔŘ ŢĹŇĹÚ ĆÁĘĹŇ×ĎĚ)"
#~ msgid "Please Wait... Verifying installed packages"
#~ msgstr "đĎÄĎÖÄÉÔĹ, ĐĎÖÁĚŐĘÓÔÁ... đŇĎ×ĹŇŃŔÔÓŃ ŐÓÔÁÎĎ×ĚĹÎÎŮĹ ĐÁËĹÔŮ"
@@ -16272,9 +17482,6 @@ msgstr "îÁŐŢÎÁŃ ŇÁÂĎŢÁŃ ÓÔÁÎĂÉŃ"
#~ msgid "xinetd"
#~ msgstr "xinetd"
-#~ msgid "Setting security level"
-#~ msgstr "îÁÓÔŇĎĘËÁ ŐŇĎ×ĹÎŃ ÂĹÚĎĐÁÓÎĎÓÔÉ"
-
#~ msgid "Graphics card"
#~ msgstr "÷ÉÄĹĎËÁŇÔÁ"
diff --git a/perl-install/share/po/sk.po b/perl-install/share/po/sk.po
index f9a208e0a..7ea3986e3 100644
--- a/perl-install/share/po/sk.po
+++ b/perl-install/share/po/sk.po
@@ -7,8 +7,8 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2002-09-04 20:31+0200\n"
-"PO-Revision-Date: 2002-09-06 03:38+0100\n"
+"POT-Creation-Date: 2002-09-11 13:59+0200\n"
+"PO-Revision-Date: 2002-09-11 16:27+0100\n"
"Last-Translator: Tibor Pittich <Tibor.Pittich@phuture.sk>\n"
"Language-Team: sk <i18n@hq.alert.sk>\n"
"MIME-Version: 1.0\n"
@@ -53,7 +53,7 @@ msgstr "64 MB a viac"
#: ../../Xconfig/card.pm_.c:203
msgid "Choose a X server"
-msgstr "Zvoľte X server"
+msgstr "Zvoľte si X server"
#: ../../Xconfig/card.pm_.c:203
msgid "X server"
@@ -61,14 +61,14 @@ msgstr "X server"
#: ../../Xconfig/card.pm_.c:230
msgid "Multi-head configuration"
-msgstr "Nastavenie \"viac-hláv\""
+msgstr "Nastavenie pre viac-monitorov"
#: ../../Xconfig/card.pm_.c:231
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-"Váš systém podporuje nastavenie pre \"viac hláv\".\n"
+"Váš systém podporuje nastavenie pre viac-monitorov.\n"
"Čo chcete spraviť?"
#: ../../Xconfig/card.pm_.c:286
@@ -91,24 +91,24 @@ msgstr "Nastaviť všetky hlavy osobitne"
msgid "Use Xinerama extension"
msgstr "Použiť Xinerama rozšírenie"
-#: ../../Xconfig/card.pm_.c:386
+#: ../../Xconfig/card.pm_.c:387
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Nastaviť iba kartu \"%s\"%s"
-#: ../../Xconfig/card.pm_.c:398 ../../Xconfig/card.pm_.c:399
+#: ../../Xconfig/card.pm_.c:399 ../../Xconfig/card.pm_.c:400
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s"
msgstr "XFree86 %s"
-#: ../../Xconfig/card.pm_.c:410 ../../Xconfig/card.pm_.c:436
+#: ../../Xconfig/card.pm_.c:411 ../../Xconfig/card.pm_.c:437
#: ../../Xconfig/various.pm_.c:23
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s s 3D hardvérovou akceleráciou"
-#: ../../Xconfig/card.pm_.c:413
+#: ../../Xconfig/card.pm_.c:414
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -117,17 +117,17 @@ msgstr ""
"Vaša karta má podporu hardvérovej 3D akcelerácie ale iba v XFree %s.\n"
"Vaša karta je podporovaná XFree %s, ktoré majú lepšiu podporuj v 2D."
-#: ../../Xconfig/card.pm_.c:415 ../../Xconfig/card.pm_.c:438
+#: ../../Xconfig/card.pm_.c:416 ../../Xconfig/card.pm_.c:439
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Vaša karta má podporu hardvérovej 3D akcelerácie v XFree %s."
-#: ../../Xconfig/card.pm_.c:423 ../../Xconfig/card.pm_.c:444
+#: ../../Xconfig/card.pm_.c:424 ../../Xconfig/card.pm_.c:445
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s s EXPERIMENTÁLNOU 3D akceleráciou"
-#: ../../Xconfig/card.pm_.c:426
+#: ../../Xconfig/card.pm_.c:427
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -139,7 +139,7 @@ msgstr ""
"POČÍTAČA.\n"
"Vaša karta je podporovaná XFree %s, ktoré majú lepšiu podporuj v 2D."
-#: ../../Xconfig/card.pm_.c:429 ../../Xconfig/card.pm_.c:446
+#: ../../Xconfig/card.pm_.c:430 ../../Xconfig/card.pm_.c:447
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -149,12 +149,12 @@ msgstr ""
"POZOR, TÁTO PODPORA JE IBA EXPERIMENTÁLNA A MÔŽE SPÔSOBIŤ ZAMRZNUTIE "
"POČÍTAČA."
-#: ../../Xconfig/card.pm_.c:452
+#: ../../Xconfig/card.pm_.c:453
msgid "Xpmac (installation display driver)"
msgstr "Xpmac (ovládač obrazovky pre beh inštalácie)"
#: ../../Xconfig/main.pm_.c:76 ../../Xconfig/main.pm_.c:77
-#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:977
+#: ../../Xconfig/monitor.pm_.c:96 ../../any.pm_.c:978
msgid "Custom"
msgstr "Vlastný výber"
@@ -174,32 +174,32 @@ msgstr "Rozlíšenie"
msgid "Test"
msgstr "Test"
-#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:63
+#: ../../Xconfig/main.pm_.c:118 ../../diskdrake/dav.pm_.c:67
#: ../../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 "Parametre"
-#: ../../Xconfig/main.pm_.c:121 ../../Xconfig/resolution_and_depth.pm_.c:268
+#: ../../Xconfig/main.pm_.c:122 ../../Xconfig/resolution_and_depth.pm_.c:268
#: ../../install_gtk.pm_.c:79 ../../install_steps_gtk.pm_.c:275
#: ../../interactive.pm_.c:127 ../../interactive.pm_.c:142
#: ../../interactive.pm_.c:354 ../../interactive/http.pm_.c:104
-#: ../../interactive/newt.pm_.c:174 ../../interactive/newt.pm_.c:176
+#: ../../interactive/newt.pm_.c:195 ../../interactive/newt.pm_.c:197
#: ../../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:3970 ../../standalone/drakbackup_.c:4065
-#: ../../standalone/drakbackup_.c:4084
+#: ../../my_gtk.pm_.c:287 ../../my_gtk.pm_.c:310 ../../security/main.pm_.c:246
+#: ../../standalone/drakbackup_.c:3974 ../../standalone/drakbackup_.c:4069
+#: ../../standalone/drakbackup_.c:4088
msgid "Ok"
msgstr "Ok"
-#: ../../Xconfig/main.pm_.c:121 ../../diskdrake/dav.pm_.c:24
-#: ../../harddrake/ui.pm_.c:94 ../../printerdrake.pm_.c:3155
-#: ../../standalone/logdrake_.c:224
+#: ../../Xconfig/main.pm_.c:122 ../../diskdrake/dav.pm_.c:28
+#: ../../harddrake/ui.pm_.c:96 ../../printerdrake.pm_.c:3155
+#: ../../standalone/draksplash_.c:122 ../../standalone/logdrake_.c:224
msgid "Quit"
msgstr "Koniec"
-#: ../../Xconfig/main.pm_.c:144
+#: ../../Xconfig/main.pm_.c:145
#, c-format
msgid ""
"Keep the changes?\n"
@@ -214,7 +214,7 @@ msgstr ""
#: ../../Xconfig/monitor.pm_.c:93
msgid "Choose a monitor"
-msgstr "Zvoľte monitor"
+msgstr "Zvoľte si monitor"
#: ../../Xconfig/monitor.pm_.c:97
msgid "Plug'n Play"
@@ -222,7 +222,7 @@ msgstr "Plug'n Play"
#: ../../Xconfig/monitor.pm_.c:98 ../../mouse.pm_.c:46
msgid "Generic"
-msgstr "Všeobecná"
+msgstr "Všeobecné"
#: ../../Xconfig/monitor.pm_.c:99 ../../harddrake/ui.pm_.c:37
msgid "Vendor"
@@ -250,7 +250,7 @@ msgstr ""
"zobrazované jednotlivé riadky).\n"
"Je veľmi dôležité, aby ste nenastavili frekvencie, ktoré prevyšujú "
"schopnosti Vášho monitora. Mohol by sa poškodiť.\n"
-"Ak ste si nie celkom istý, zvoľte radšej slabšie nastavenie."
+"Ak ste si nie celkom istý, zvoľte si radšej slabšie nastavenie."
#: ../../Xconfig/monitor.pm_.c:121
msgid "Horizontal refresh rate"
@@ -286,32 +286,32 @@ msgstr "Rozlíšenia"
#: ../../Xconfig/resolution_and_depth.pm_.c:254
msgid "Choose the resolution and the color depth"
-msgstr "Zvoľte rozlíšenie a farebnú hĺbku"
+msgstr "Zvoľte si rozlíšenie a farebnú hĺbku"
#: ../../Xconfig/resolution_and_depth.pm_.c:255
#, c-format
msgid "Graphics card: %s"
msgstr "Grafická karta: %s"
-#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1018
-#: ../../bootlook.pm_.c:345 ../../diskdrake/smbnfs_gtk.pm_.c:87
+#: ../../Xconfig/resolution_and_depth.pm_.c:268 ../../any.pm_.c:1019
+#: ../../bootlook.pm_.c:343 ../../diskdrake/smbnfs_gtk.pm_.c:87
#: ../../install_steps_gtk.pm_.c:406 ../../install_steps_gtk.pm_.c:464
#: ../../interactive.pm_.c:142 ../../interactive.pm_.c:354
-#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:174
+#: ../../interactive/http.pm_.c:105 ../../interactive/newt.pm_.c:195
#: ../../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:2124
-#: ../../standalone/drakautoinst_.c:203 ../../standalone/drakbackup_.c:3924
-#: ../../standalone/drakbackup_.c:3957 ../../standalone/drakbackup_.c:3983
-#: ../../standalone/drakbackup_.c:4010 ../../standalone/drakbackup_.c:4037
-#: ../../standalone/drakbackup_.c:4097 ../../standalone/drakbackup_.c:4124
-#: ../../standalone/drakbackup_.c:4154 ../../standalone/drakbackup_.c:4180
-#: ../../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
+#: ../../network/netconnect.pm_.c:42 ../../printerdrake.pm_.c:2124
+#: ../../security/main.pm_.c:295 ../../standalone/drakautoinst_.c:203
+#: ../../standalone/drakbackup_.c:3928 ../../standalone/drakbackup_.c:3961
+#: ../../standalone/drakbackup_.c:3987 ../../standalone/drakbackup_.c:4014
+#: ../../standalone/drakbackup_.c:4041 ../../standalone/drakbackup_.c:4101
+#: ../../standalone/drakbackup_.c:4128 ../../standalone/drakbackup_.c:4158
+#: ../../standalone/drakbackup_.c:4184 ../../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/drakfont_.c:970
#: ../../standalone/drakgw_.c:536 ../../standalone/logdrake_.c:224
-#: ../../standalone/logdrake_.c:526
+#: ../../ugtk.pm_.c:296
msgid "Cancel"
msgstr "Zruš"
@@ -387,11 +387,11 @@ msgstr "XFree86 server: %s\n"
msgid "XFree86 driver: %s\n"
msgstr "XFree86 ovládač: %s\n"
-#: ../../Xconfig/various.pm_.c:60
+#: ../../Xconfig/various.pm_.c:61
msgid "Graphical interface at startup"
msgstr "X pri štarte"
-#: ../../Xconfig/various.pm_.c:61
+#: ../../Xconfig/various.pm_.c:62
msgid ""
"I can setup your computer to automatically start the graphical interface "
"(XFree) upon booting.\n"
@@ -401,7 +401,7 @@ msgstr ""
"rozhranie (XFree) po nabootovaní.\n"
"Chcete mať spustené XFree po štarte počítača?"
-#: ../../Xconfig/various.pm_.c:72
+#: ../../Xconfig/various.pm_.c:73
msgid ""
"Your graphic card seems to have a TV-OUT connector.\n"
"It can be configured to work using frame-buffer.\n"
@@ -417,11 +417,11 @@ msgstr ""
"\n"
"Ak si to želáte, pripojte Vašu grafickú kartu do TV prijímača pred spustením "
"počítača.\n"
-"Potom zvoľte \"TV výstup\" položku v zavádzači.\n"
+"Potom si zvoľte \"TV výstup\" položku v zavádzači.\n"
"\n"
"Máte túto funkciu?"
-#: ../../Xconfig/various.pm_.c:84
+#: ../../Xconfig/various.pm_.c:85
msgid "What norm is your TV using?"
msgstr "Akú normu používa vaša TV?"
@@ -493,7 +493,7 @@ msgstr "Kompaktná"
msgid "compact"
msgstr "kompaktná"
-#: ../../any.pm_.c:166 ../../any.pm_.c:290
+#: ../../any.pm_.c:166 ../../any.pm_.c:291
msgid "Video mode"
msgstr "Video mód"
@@ -501,17 +501,17 @@ msgstr "Video mód"
msgid "Delay before booting default image"
msgstr "Pauza pred štartom predvoleného jadra"
-#: ../../any.pm_.c:170 ../../any.pm_.c:788
+#: ../../any.pm_.c:170 ../../any.pm_.c:789
#: ../../diskdrake/smbnfs_gtk.pm_.c:179
-#: ../../install_steps_interactive.pm_.c:1093 ../../network/modem.pm_.c:48
+#: ../../install_steps_interactive.pm_.c:1094 ../../network/modem.pm_.c:48
#: ../../printerdrake.pm_.c:850 ../../printerdrake.pm_.c:965
-#: ../../standalone/drakbackup_.c:3526 ../../standalone/drakconnect_.c:624
+#: ../../standalone/drakbackup_.c:3530 ../../standalone/drakconnect_.c:624
#: ../../standalone/drakconnect_.c:649
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:171 ../../any.pm_.c:789
-#: ../../install_steps_interactive.pm_.c:1094
+#: ../../any.pm_.c:171 ../../any.pm_.c:790
+#: ../../install_steps_interactive.pm_.c:1095
msgid "Password (again)"
msgstr "Heslo (znova)"
@@ -546,14 +546,14 @@ msgid ""
msgstr ""
"Parameter ``Obmedz voľby príkazového riadku'' je bez použitia hesla vypnutý"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
#: ../../diskdrake/interactive.pm_.c:1191
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../install_steps_interactive.pm_.c:1089
msgid "Please try again"
msgstr "Prosím skúste znovu"
-#: ../../any.pm_.c:184 ../../any.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:1088
+#: ../../any.pm_.c:184 ../../any.pm_.c:765
+#: ../../install_steps_interactive.pm_.c:1089
msgid "The passwords do not match"
msgstr "Heslo nesúhlasí"
@@ -594,7 +594,7 @@ msgstr ""
"\n"
"Z akého disku chcete štartovať?"
-#: ../../any.pm_.c:247
+#: ../../any.pm_.c:248
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can add some more or change the existing ones."
@@ -602,148 +602,148 @@ msgstr ""
"Momentálne sa tu nachádzajú tieto záznamy.\n"
"Môžete pridávať ďalšie, alebo meniť existujúce."
-#: ../../any.pm_.c:257 ../../standalone/drakbackup_.c:1556
-#: ../../standalone/drakbackup_.c:1669 ../../standalone/drakfont_.c:1011
+#: ../../any.pm_.c:258 ../../standalone/drakbackup_.c:1560
+#: ../../standalone/drakbackup_.c:1673 ../../standalone/drakfont_.c:1011
#: ../../standalone/drakfont_.c:1054
msgid "Add"
msgstr "Pridaj"
-#: ../../any.pm_.c:257 ../../any.pm_.c:776 ../../diskdrake/dav.pm_.c:64
+#: ../../any.pm_.c:258 ../../any.pm_.c:777 ../../diskdrake/dav.pm_.c:68
#: ../../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:3155 ../../standalone/drakbackup_.c:2770
+#: ../../printerdrake.pm_.c:3155 ../../standalone/drakbackup_.c:2774
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:257
+#: ../../any.pm_.c:258
msgid "Modify"
msgstr "Modifikovať"
-#: ../../any.pm_.c:265
+#: ../../any.pm_.c:266
msgid "Which type of entry do you want to add?"
msgstr "Aký typ záznamu chcete pridať"
-#: ../../any.pm_.c:266 ../../standalone/drakbackup_.c:1703
+#: ../../any.pm_.c:267 ../../standalone/drakbackup_.c:1707
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:266
+#: ../../any.pm_.c:267
msgid "Other OS (SunOS...)"
msgstr "Iný OS (SunOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (MacOS...)"
msgstr "Iný OS (MacOS...)"
-#: ../../any.pm_.c:267
+#: ../../any.pm_.c:268
msgid "Other OS (windows...)"
msgstr "Iný OS (windows...)"
-#: ../../any.pm_.c:286
+#: ../../any.pm_.c:287
msgid "Image"
msgstr "Obraz"
-#: ../../any.pm_.c:287 ../../any.pm_.c:298
+#: ../../any.pm_.c:288 ../../any.pm_.c:299
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:288 ../../any.pm_.c:316
+#: ../../any.pm_.c:289 ../../any.pm_.c:317
msgid "Append"
msgstr "Pridaj"
-#: ../../any.pm_.c:292
+#: ../../any.pm_.c:293
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:293
+#: ../../any.pm_.c:294
msgid "Read-write"
msgstr "Čítanie/Zápis"
-#: ../../any.pm_.c:300
+#: ../../any.pm_.c:301
msgid "Table"
msgstr "Tabuľka"
-#: ../../any.pm_.c:301
+#: ../../any.pm_.c:302
msgid "Unsafe"
msgstr "Nie celkom bezpečný"
-#: ../../any.pm_.c:308 ../../any.pm_.c:313 ../../any.pm_.c:315
+#: ../../any.pm_.c:309 ../../any.pm_.c:314 ../../any.pm_.c:316
msgid "Label"
msgstr "Záznam"
-#: ../../any.pm_.c:310 ../../any.pm_.c:320 ../../harddrake/v4l.pm_.c:201
+#: ../../any.pm_.c:311 ../../any.pm_.c:321 ../../harddrake/v4l.pm_.c:201
msgid "Default"
msgstr "Predvoľba"
-#: ../../any.pm_.c:317
+#: ../../any.pm_.c:318
msgid "Initrd-size"
msgstr "Initrd-veľkosť"
-#: ../../any.pm_.c:319
+#: ../../any.pm_.c:320
msgid "NoVideo"
msgstr "Bez videa"
-#: ../../any.pm_.c:327
+#: ../../any.pm_.c:328
msgid "Remove entry"
msgstr "Odstráň záznam"
-#: ../../any.pm_.c:330
+#: ../../any.pm_.c:331
msgid "Empty label not allowed"
msgstr "Prázdny záznam nie je dovolený"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a kernel image"
msgstr "Musíte zadať súbor s jadrom"
-#: ../../any.pm_.c:331
+#: ../../any.pm_.c:332
msgid "You must specify a root partition"
msgstr "Musíte nastaviť koreňový oddiel"
-#: ../../any.pm_.c:332
+#: ../../any.pm_.c:333
msgid "This label is already used"
msgstr "Tento záznam je už použitý"
-#: ../../any.pm_.c:656
+#: ../../any.pm_.c:657
#, c-format
msgid "Found %s %s interfaces"
msgstr "Našiel som %s %s rozhranie"
-#: ../../any.pm_.c:657
+#: ../../any.pm_.c:658
msgid "Do you have another one?"
msgstr "Máte ešte nejaké ďalšie?"
-#: ../../any.pm_.c:658
+#: ../../any.pm_.c:659
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Máte nejaké %s rozhranie?"
-#: ../../any.pm_.c:660 ../../any.pm_.c:823 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:824 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "No"
msgstr "Nie"
-#: ../../any.pm_.c:660 ../../any.pm_.c:822 ../../interactive.pm_.c:132
+#: ../../any.pm_.c:661 ../../any.pm_.c:823 ../../interactive.pm_.c:132
#: ../../my_gtk.pm_.c:286
msgid "Yes"
msgstr "Áno"
-#: ../../any.pm_.c:661
+#: ../../any.pm_.c:662
msgid "See hardware info"
msgstr "Prezrieť si informácie o technických prostriedkoch"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:677
+#: ../../any.pm_.c:678
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Inštalujem ovládač pre %s kartu %s"
-#: ../../any.pm_.c:678
+#: ../../any.pm_.c:679
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
-#: ../../any.pm_.c:689
+#: ../../any.pm_.c:690
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -752,7 +752,7 @@ msgstr ""
"Teraz môžete zadať nastavenie pre modul %s.\n"
"Adresa by vždy mala začínať prefixom 0x, napríklad '0x123'"
-#: ../../any.pm_.c:695
+#: ../../any.pm_.c:696
#, c-format
msgid ""
"You may now provide options to module %s.\n"
@@ -763,17 +763,17 @@ msgstr ""
"Parametre sú vo formáte ``meno=hodnota meno2=hodnota2 ...''.\n"
"Napríklad: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:697
+#: ../../any.pm_.c:698
msgid "Module options:"
msgstr "Parametre modulu:"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:709
+#: ../../any.pm_.c:710
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ktorý %s ovládač mám skúsiť?"
-#: ../../any.pm_.c:718
+#: ../../any.pm_.c:719
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -790,15 +790,15 @@ msgstr ""
"stane, že toto testovanie počítač zablokuje, ale nemalo by spôsobiť žiadnu "
"škodu."
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Autoprobe"
msgstr "Automatické zistenie"
-#: ../../any.pm_.c:722
+#: ../../any.pm_.c:723
msgid "Specify options"
msgstr "Zadajte voľby"
-#: ../../any.pm_.c:734
+#: ../../any.pm_.c:735
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -807,61 +807,61 @@ msgstr ""
"Nahrávanie modulu %s zlyhalo.\n"
"Chcete sa o to pokúsiť znova s inými parametrami?"
-#: ../../any.pm_.c:750
+#: ../../any.pm_.c:751
msgid "access to X programs"
msgstr "prístup ku X programom"
-#: ../../any.pm_.c:751
+#: ../../any.pm_.c:752
msgid "access to rpm tools"
msgstr "prístup k rpm nástrojom"
-#: ../../any.pm_.c:752
+#: ../../any.pm_.c:753
msgid "allow \"su\""
msgstr "dovoliť \"su\""
-#: ../../any.pm_.c:753
+#: ../../any.pm_.c:754
msgid "access to administrative files"
msgstr "prístup ku konfiguračným súborom"
-#: ../../any.pm_.c:754
+#: ../../any.pm_.c:755
msgid "access to network tools"
msgstr "prístup k sieťovým nástrojom"
-#: ../../any.pm_.c:755
+#: ../../any.pm_.c:756
msgid "access to compilation tools"
msgstr "prístup ku kompilačným nástrojom"
-#: ../../any.pm_.c:760
+#: ../../any.pm_.c:761
#, c-format
msgid "(already added %s)"
msgstr "(už pridaný %s)"
-#: ../../any.pm_.c:765
+#: ../../any.pm_.c:766
msgid "This password is too simple"
msgstr "Toto heslo je príliš jednoduché"
-#: ../../any.pm_.c:766
+#: ../../any.pm_.c:767
msgid "Please give a user name"
-msgstr "Prosím zadajte užívateľské meno"
+msgstr "Prosím zadajte používateľské meno"
-#: ../../any.pm_.c:767
+#: ../../any.pm_.c:768
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "Užívateľské meno môže obsahovať len malé písmená, číslice, `-' a `_'"
-#: ../../any.pm_.c:768
+#: ../../any.pm_.c:769
msgid "The user name is too long"
msgstr "Užívateľské meno je príliš dlhé"
-#: ../../any.pm_.c:769
+#: ../../any.pm_.c:770
msgid "This user name is already added"
-msgstr "Takýto užívateľ je už pridaný"
+msgstr "Takýto používateľ je už pridaný"
-#: ../../any.pm_.c:773
+#: ../../any.pm_.c:774
msgid "Add user"
-msgstr "Pridaj užívateľa"
+msgstr "Pridaj používateľa"
-#: ../../any.pm_.c:774
+#: ../../any.pm_.c:775
#, c-format
msgid ""
"Enter a user\n"
@@ -870,32 +870,32 @@ msgstr ""
"Pridajte používateľa\n"
"%s"
-#: ../../any.pm_.c:775
+#: ../../any.pm_.c:776
msgid "Accept user"
msgstr "Akceptuj používateľa"
-#: ../../any.pm_.c:786
+#: ../../any.pm_.c:787
msgid "Real name"
msgstr "Reálne meno"
-#: ../../any.pm_.c:787 ../../printerdrake.pm_.c:849
+#: ../../any.pm_.c:788 ../../printerdrake.pm_.c:849
#: ../../printerdrake.pm_.c:964
msgid "User name"
msgstr "Používateľské meno"
-#: ../../any.pm_.c:790
+#: ../../any.pm_.c:791
msgid "Shell"
msgstr "Interpreter"
-#: ../../any.pm_.c:792
+#: ../../any.pm_.c:793
msgid "Icon"
msgstr "Ikona"
-#: ../../any.pm_.c:819
+#: ../../any.pm_.c:820
msgid "Autologin"
msgstr "Autologin"
-#: ../../any.pm_.c:820
+#: ../../any.pm_.c:821
msgid ""
"I can set up your computer to automatically log on one user.\n"
"Do you want to use this feature?"
@@ -903,55 +903,55 @@ msgstr ""
"Môžem nastaviť Váš počítač, aby sa po reštarte automaticky prihlásil\n"
"niektorý používateľ. Želáte si túto možnosť?"
-#: ../../any.pm_.c:824
+#: ../../any.pm_.c:825
msgid "Choose the default user:"
-msgstr "Zvoľte predvoleného užívateľa:"
+msgstr "Zvoľte si predvoleného používateľa:"
-#: ../../any.pm_.c:825
+#: ../../any.pm_.c:826
msgid "Choose the window manager to run:"
msgstr "Vyberte si window manažéra:"
-#: ../../any.pm_.c:840
+#: ../../any.pm_.c:841
msgid "Please choose a language to use."
-msgstr "Prosím, zvoľte jazyk, ktorý chcete používať."
+msgstr "Prosím, zvoľte si jazyk, ktorý chcete používať."
-#: ../../any.pm_.c:842
+#: ../../any.pm_.c:843
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 "Môžete zvoliť ďalšie jazyky použiteľné po inštalácii"
-#: ../../any.pm_.c:856 ../../install_steps_interactive.pm_.c:689
+#: ../../any.pm_.c:857 ../../install_steps_interactive.pm_.c:690
#: ../../standalone/drakxtv_.c:73
msgid "All"
msgstr "Všetko"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "Allow all users"
-msgstr "Dovoľ všetkým užívateľom"
+msgstr "Povoliť všetkým používateľom"
-#: ../../any.pm_.c:977
+#: ../../any.pm_.c:978
msgid "No sharing"
msgstr "Bez zdieľania"
-#: ../../any.pm_.c:987 ../../install_any.pm_.c:1183 ../../standalone.pm_.c:58
+#: ../../any.pm_.c:988 ../../install_any.pm_.c:1198 ../../standalone.pm_.c:58
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Je potrebné inštalovať balík %s. Súhlasíte ?"
-#: ../../any.pm_.c:990
+#: ../../any.pm_.c:991
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"Zdieľanie môže byť cez NFS alebo Sambu. Vyberte si ktoré chcete použiť."
-#: ../../any.pm_.c:998 ../../install_any.pm_.c:1188 ../../standalone.pm_.c:63
+#: ../../any.pm_.c:999 ../../install_any.pm_.c:1203 ../../standalone.pm_.c:63
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Chýba povinný balík %s"
-#: ../../any.pm_.c:1004
+#: ../../any.pm_.c:1005
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 +965,11 @@ msgstr ""
"\n"
"\"Vlastný výber\" povolí granularitu podľa používateľa.\n"
-#: ../../any.pm_.c:1018
+#: ../../any.pm_.c:1019
msgid "Launch userdrake"
msgstr "Spusť userdrake"
-#: ../../any.pm_.c:1020
+#: ../../any.pm_.c:1021
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user in this group."
@@ -977,31 +977,31 @@ msgstr ""
"Zdieľanie podľa používateľov používa skupinu \"fileshare\".\n"
"Môžete použiť userdrake na pridanie používateľa do tejto skupiny."
-#: ../../any.pm_.c:1071
+#: ../../any.pm_.c:1072
msgid "Welcome To Crackers"
msgstr "Žiadna"
-#: ../../any.pm_.c:1072
+#: ../../any.pm_.c:1073
msgid "Poor"
msgstr "Veľmi slabá"
-#: ../../any.pm_.c:1073 ../../mouse.pm_.c:31
+#: ../../any.pm_.c:1074 ../../mouse.pm_.c:31
msgid "Standard"
msgstr "Štandardná"
-#: ../../any.pm_.c:1074
+#: ../../any.pm_.c:1075
msgid "High"
msgstr "Vysoká"
-#: ../../any.pm_.c:1075
+#: ../../any.pm_.c:1076
msgid "Higher"
msgstr "Vyššia"
-#: ../../any.pm_.c:1076
+#: ../../any.pm_.c:1077
msgid "Paranoid"
msgstr "Paranoidná"
-#: ../../any.pm_.c:1079
+#: ../../any.pm_.c:1080
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"
@@ -1011,7 +1011,7 @@ msgstr ""
"ale nemal by byť pripojený k iným počítačom, alebo k internetu. Nie sú\n"
"totiž používané žiadne heslá."
-#: ../../any.pm_.c:1082
+#: ../../any.pm_.c:1083
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -1019,7 +1019,7 @@ msgstr ""
"Je nastavené používanie hesiel, ale použitie tohoto počítača v sieti nemôžem "
"odporučiť."
-#: ../../any.pm_.c:1083
+#: ../../any.pm_.c:1084
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
@@ -1027,7 +1027,7 @@ msgstr ""
"Toto je štandardná úroveň bezpečnosti pre počítač, ktorý je používaný pre "
"pripojenie k Internetu ako klient."
-#: ../../any.pm_.c:1084
+#: ../../any.pm_.c:1085
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
@@ -1035,7 +1035,7 @@ msgstr ""
"Sú tu už niektoré obmedzenia a viaceré automatické kontroly vykonávajúce sa "
"každú noc."
-#: ../../any.pm_.c:1085
+#: ../../any.pm_.c:1086
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -1050,7 +1050,7 @@ msgstr ""
"spojenia z viacerých klientov. Všimnite si: ak je Váš stroj iba klient v "
"Internete, môžete zvoliť nižšiu úroveň."
-#: ../../any.pm_.c:1088
+#: ../../any.pm_.c:1089
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
@@ -1058,33 +1058,33 @@ msgstr ""
"Podobné ako v predchádzajúcej úrovni, ale systém je úplne uzavretý a "
"bezpečnostné nastavenia sú najvyššie možné."
-#: ../../any.pm_.c:1094
+#: ../../any.pm_.c:1095
msgid "DrakSec Basic Options"
msgstr "DrakSec základné nastavenia"
-#: ../../any.pm_.c:1095
+#: ../../any.pm_.c:1096
msgid "Please choose the desired security level"
msgstr "Prosím, zvoľte si zodpovedajúcu bezpečnostnú úroveň"
-#: ../../any.pm_.c:1098
+#: ../../any.pm_.c:1099
msgid "Security level"
msgstr "Úroveň bezpečnosti"
-#: ../../any.pm_.c:1100
+#: ../../any.pm_.c:1101
msgid "Use libsafe for servers"
msgstr "Použiť libsafe pre server"
-#: ../../any.pm_.c:1101
+#: ../../any.pm_.c:1102
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr ""
"Knižnica, ktorá bráni proti útokom typu buffer overflow a format string."
-#: ../../any.pm_.c:1102
+#: ../../any.pm_.c:1103
msgid "Security Administrator (login or email)"
msgstr "Bezpečnostný administrátor (prihlasovacie meno alebo email)"
-#: ../../any.pm_.c:1189
+#: ../../any.pm_.c:1192
msgid ""
"Here you can choose the key or key combination that will \n"
"allow switching between the different keyboard layouts\n"
@@ -1095,7 +1095,7 @@ msgstr ""
"(napr. us a sk)"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: ../../bootloader.pm_.c:381
+#: ../../bootloader.pm_.c:429
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -1112,58 +1112,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:938
+#: ../../bootloader.pm_.c:989
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Vitajte v zavádzači operačného systému 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:941
+#: ../../bootloader.pm_.c:992
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Použité klávesy %c a %c pre označenie záznamu zvýraznením"
#. -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:995
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stlačte enter pre zavedenie označeného OS, 'e' pre úpravu"
#. -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:998
msgid "commands before booting, or 'c' for a command-line."
msgstr "príkazov pred zavedením, alebo 'c' pre príkazový riadok"
#. -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:950
+#: ../../bootloader.pm_.c:1001
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Označený OS bude zavedený za %d sekúnd."
-#: ../../bootloader.pm_.c:954
+#: ../../bootloader.pm_.c:1005
msgid "not enough room in /boot"
msgstr "nie je dosť miesta v /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:1054
+#: ../../bootloader.pm_.c:1105
msgid "Desktop"
msgstr "Desktop"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:1056
+#: ../../bootloader.pm_.c:1107
msgid "Start Menu"
msgstr "Štart menu"
-#: ../../bootloader.pm_.c:1075
+#: ../../bootloader.pm_.c:1126
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr "Na oddiel %s nemôžete nainštalovať zavádzač\n"
-#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:16
-#: ../../standalone/draksplash_.c:25
+#: ../../bootlook.pm_.c:46 ../../standalone/drakperm_.c:15
+#: ../../standalone/draksplash_.c:26
msgid "no help implemented yet.\n"
msgstr "pomoc zatiaľ nebola implementovaná.\n"
@@ -1215,63 +1215,63 @@ msgstr "Lilo/Grub mód"
msgid "Yaboot mode"
msgstr "Yaboot mód"
-#: ../../bootlook.pm_.c:148
+#: ../../bootlook.pm_.c:146
msgid "Install themes"
msgstr "Inštalácia tém"
-#: ../../bootlook.pm_.c:149
+#: ../../bootlook.pm_.c:147
msgid "Display theme under console"
msgstr "Zobraziť tému pod konzolou"
-#: ../../bootlook.pm_.c:150
+#: ../../bootlook.pm_.c:148
msgid "Create new theme"
msgstr "Vytvor novú tému"
-#: ../../bootlook.pm_.c:193
+#: ../../bootlook.pm_.c:192
#, c-format
msgid "Backup %s to %s.old"
msgstr "Zálohuj %s ako %s.old"
-#: ../../bootlook.pm_.c:194 ../../bootlook.pm_.c:197 ../../bootlook.pm_.c:200
-#: ../../bootlook.pm_.c:230 ../../bootlook.pm_.c:232 ../../bootlook.pm_.c:242
-#: ../../bootlook.pm_.c:251 ../../bootlook.pm_.c:258
-#: ../../diskdrake/dav.pm_.c:73 ../../diskdrake/hd_gtk.pm_.c:116
+#: ../../bootlook.pm_.c:193 ../../bootlook.pm_.c:196 ../../bootlook.pm_.c:199
+#: ../../bootlook.pm_.c:229 ../../bootlook.pm_.c:231 ../../bootlook.pm_.c:241
+#: ../../bootlook.pm_.c:250 ../../bootlook.pm_.c:257
+#: ../../diskdrake/dav.pm_.c:77 ../../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
#: ../../interactive/http.pm_.c:119 ../../interactive/http.pm_.c:120
-#: ../../standalone/draksplash_.c:32
+#: ../../standalone/draksplash_.c:34
msgid "Error"
msgstr "Chyba"
-#: ../../bootlook.pm_.c:194
+#: ../../bootlook.pm_.c:193
msgid "unable to backup lilo message"
msgstr "nie je možné odzálohovať správy Lilo"
-#: ../../bootlook.pm_.c:196
+#: ../../bootlook.pm_.c:195
#, c-format
msgid "Copy %s to %s"
msgstr "Kopírujem %s do %s"
-#: ../../bootlook.pm_.c:197
+#: ../../bootlook.pm_.c:196
msgid "can't change lilo message"
msgstr "nemôžem zmeniť správy Lilo"
-#: ../../bootlook.pm_.c:200
+#: ../../bootlook.pm_.c:199
msgid "Lilo message not found"
msgstr "Nenašiel som správy Lilo"
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Nemôžem zapísať /etc/sysconfig/bootsplash."
-#: ../../bootlook.pm_.c:230
+#: ../../bootlook.pm_.c:229
#, c-format
msgid "Write %s"
msgstr "Zapisujem %s"
-#: ../../bootlook.pm_.c:232
+#: ../../bootlook.pm_.c:231
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
@@ -1279,17 +1279,17 @@ msgstr ""
"Nemôžem zapísať /etc/sysconfig/bootsplash\n"
"Súbor nebol nájdený"
-#: ../../bootlook.pm_.c:243
+#: ../../bootlook.pm_.c:242
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "Nemôžem spustiť mkinitrd -f /boot/initrd-%s.img %s."
-#: ../../bootlook.pm_.c:246
+#: ../../bootlook.pm_.c:245
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Vytváranie initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
-#: ../../bootlook.pm_.c:252
+#: ../../bootlook.pm_.c:251
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
@@ -1298,24 +1298,24 @@ msgstr ""
"Spustite \"lilo\" ako root v príkazovom riadku pre dokončenie inštalácie "
"témy."
-#: ../../bootlook.pm_.c:256
+#: ../../bootlook.pm_.c:255
msgid "Relaunch 'lilo'"
msgstr "Znovu spustite 'lilo'"
-#: ../../bootlook.pm_.c:258 ../../standalone/draksplash_.c:161
-#: ../../standalone/draksplash_.c:330 ../../standalone/draksplash_.c:454
+#: ../../bootlook.pm_.c:257 ../../standalone/draksplash_.c:165
+#: ../../standalone/draksplash_.c:329 ../../standalone/draksplash_.c:456
msgid "Notice"
msgstr "Poznámka"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "LiLo and Bootsplash themes installation successfull"
msgstr "Inštalácia Lilo a úvodnej obrazovky bola úspešne dokončená"
-#: ../../bootlook.pm_.c:259
+#: ../../bootlook.pm_.c:258
msgid "Theme installation failed!"
msgstr "Inštalácia témy zlyhala!"
-#: ../../bootlook.pm_.c:268
+#: ../../bootlook.pm_.c:266
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
@@ -1324,21 +1324,21 @@ msgstr ""
"Momentálne používate %s ako štartovací manažér.\n"
"Kliknite na Konfigurácia pre spustenie sprievodcu nastavením."
-#: ../../bootlook.pm_.c:270 ../../standalone/drakbackup_.c:2425
-#: ../../standalone/drakbackup_.c:2435 ../../standalone/drakbackup_.c:2445
-#: ../../standalone/drakbackup_.c:2453 ../../standalone/drakgw_.c:530
+#: ../../bootlook.pm_.c:268 ../../standalone/drakbackup_.c:2429
+#: ../../standalone/drakbackup_.c:2439 ../../standalone/drakbackup_.c:2449
+#: ../../standalone/drakbackup_.c:2457 ../../standalone/drakgw_.c:530
msgid "Configure"
msgstr "Konfigurácia"
-#: ../../bootlook.pm_.c:277
+#: ../../bootlook.pm_.c:275
msgid "Splash selection"
msgstr "Voľba úvodnej obrazovky"
-#: ../../bootlook.pm_.c:280
+#: ../../bootlook.pm_.c:278
msgid "Themes"
msgstr "Témy"
-#: ../../bootlook.pm_.c:282
+#: ../../bootlook.pm_.c:280
msgid ""
"\n"
"Select a theme for\n"
@@ -1352,44 +1352,44 @@ msgstr ""
"môžete si vybrať\n"
"každú zvlášť"
-#: ../../bootlook.pm_.c:285
+#: ../../bootlook.pm_.c:283
msgid "Lilo screen"
msgstr "Obrazovka Lilo"
-#: ../../bootlook.pm_.c:290
+#: ../../bootlook.pm_.c:288
msgid "Bootsplash"
msgstr "Úvodná obrazovka"
-#: ../../bootlook.pm_.c:325
+#: ../../bootlook.pm_.c:323
msgid "System mode"
msgstr "Mód systému"
-#: ../../bootlook.pm_.c:327
+#: ../../bootlook.pm_.c:325
msgid "Launch the graphical environment when your system starts"
msgstr "Spustiť grafické rozhranie po štarte systému"
-#: ../../bootlook.pm_.c:332
+#: ../../bootlook.pm_.c:330
msgid "No, I don't want autologin"
msgstr "Nie, nechcem automatické prihlásenie"
-#: ../../bootlook.pm_.c:334
+#: ../../bootlook.pm_.c:332
msgid "Yes, I want autologin with this (user, desktop)"
msgstr "Áno, chcem automatické prihlásenie (používateľ, desktop)"
-#: ../../bootlook.pm_.c:344 ../../network/netconnect.pm_.c:101
+#: ../../bootlook.pm_.c:342 ../../network/netconnect.pm_.c:97
#: ../../standalone/drakTermServ_.c:173 ../../standalone/drakTermServ_.c:300
-#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4189
-#: ../../standalone/drakbackup_.c:4950 ../../standalone/drakconnect_.c:108
+#: ../../standalone/drakTermServ_.c:405 ../../standalone/drakbackup_.c:4193
+#: ../../standalone/drakbackup_.c:4956 ../../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:519
+#: ../../standalone/drakfont_.c:612 ../../standalone/drakfont_.c:799
+#: ../../standalone/drakfont_.c:876 ../../standalone/drakfont_.c:963
+#: ../../ugtk.pm_.c:289
msgid "OK"
msgstr "OK"
-#: ../../bootlook.pm_.c:414
+#: ../../bootlook.pm_.c:402
#, c-format
msgid "can not open /etc/inittab for reading: %s"
msgstr "nemôžem otvoriť /etc/inittab na čítanie: %s"
@@ -1486,50 +1486,62 @@ msgstr "Rakúsko"
msgid "United States"
msgstr "Spojené štáty"
-#: ../../diskdrake/dav.pm_.c:23
+#: ../../diskdrake/dav.pm_.c:19
+msgid ""
+"WebDAV is a protocol that allows you to mount a web server's directory\n"
+"locally, and treat it like a local filesystem (provided the web server is\n"
+"configured as a WebDAV server). If you would like to add WebDAV mount\n"
+"points, select \"New\"."
+msgstr ""
+"WebDAV je protokol, ktorý umožňuje pripojiť lokálne adresár web servera\n"
+"a používať ho ako lokálny súborový systém (iba za podmienky, že web server\n"
+"je nakonfigurovaný ako WebDAV server). Ak chcete pridať WebDAV prípojný\n"
+"bod, vyberte si \"Nový\"."
+
+#: ../../diskdrake/dav.pm_.c:27
msgid "New"
msgstr "Nový"
-#: ../../diskdrake/dav.pm_.c:59 ../../diskdrake/interactive.pm_.c:388
+#: ../../diskdrake/dav.pm_.c:63 ../../diskdrake/interactive.pm_.c:388
#: ../../diskdrake/smbnfs_gtk.pm_.c:81
msgid "Unmount"
msgstr "Odpoj"
-#: ../../diskdrake/dav.pm_.c:60 ../../diskdrake/interactive.pm_.c:385
+#: ../../diskdrake/dav.pm_.c:64 ../../diskdrake/interactive.pm_.c:385
#: ../../diskdrake/smbnfs_gtk.pm_.c:82
msgid "Mount"
msgstr "Pripoj"
-#: ../../diskdrake/dav.pm_.c:61
+#: ../../diskdrake/dav.pm_.c:65
msgid "Server"
msgstr "Server"
-#: ../../diskdrake/dav.pm_.c:62 ../../diskdrake/interactive.pm_.c:379
+#: ../../diskdrake/dav.pm_.c:66 ../../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 "Bod pripojenia"
-#: ../../diskdrake/dav.pm_.c:81
+#: ../../diskdrake/dav.pm_.c:85
msgid "Please enter the WebDAV server URL"
msgstr "Prosím, zadajte adresu WebDAV servera"
-#: ../../diskdrake/dav.pm_.c:84
+#: ../../diskdrake/dav.pm_.c:88
msgid "The URL must begin with http:// or https://"
msgstr "URL musí začínať http://, alebo https://"
-#: ../../diskdrake/dav.pm_.c:105
+#: ../../diskdrake/dav.pm_.c:109
msgid "Server: "
msgstr "Server:"
-#: ../../diskdrake/dav.pm_.c:106 ../../diskdrake/interactive.pm_.c:440
+#: ../../diskdrake/dav.pm_.c:110 ../../diskdrake/interactive.pm_.c:440
#: ../../diskdrake/interactive.pm_.c:1089
#: ../../diskdrake/interactive.pm_.c:1164
msgid "Mount point: "
msgstr "Bod pripojenia: "
-#: ../../diskdrake/dav.pm_.c:107 ../../diskdrake/interactive.pm_.c:1170
+#: ../../diskdrake/dav.pm_.c:111 ../../diskdrake/interactive.pm_.c:1170
#, c-format
msgid "Options: %s"
msgstr "Možnosti: %s"
@@ -1617,7 +1629,7 @@ msgstr "Prázdna"
#: ../../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:1752
+#: ../../services.pm_.c:157 ../../standalone/drakbackup_.c:1756
msgid "Other"
msgstr "Iná"
@@ -1761,7 +1773,7 @@ msgstr ""
"Záložná tabuľka rozdelenia disku nemá rovnakú veľkosť\n"
"Naozaj pokračovať?"
-#: ../../diskdrake/interactive.pm_.c:349
+#: ../../diskdrake/interactive.pm_.c:349 ../../harddrake/sound.pm_.c:200
msgid "Warning"
msgstr "Varovanie"
@@ -2308,7 +2320,7 @@ msgstr "Iný"
#: ../../diskdrake/smbnfs_gtk.pm_.c:167
msgid "Which username"
-msgstr "Ktoré užívateľské meno"
+msgstr "Ktoré používateľské meno"
#: ../../diskdrake/smbnfs_gtk.pm_.c:176
msgid ""
@@ -2317,7 +2329,7 @@ msgstr ""
"Zadajte prosím Vaše prihlasovacie meno, heslo a doménu do ktorej máte "
"prístup."
-#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3525
+#: ../../diskdrake/smbnfs_gtk.pm_.c:178 ../../standalone/drakbackup_.c:3529
msgid "Username"
msgstr "Užívateľské meno"
@@ -2329,23 +2341,23 @@ msgstr "Doména"
msgid "Search servers"
msgstr "Vyhľadaj servre"
-#: ../../fs.pm_.c:544 ../../fs.pm_.c:554 ../../fs.pm_.c:558 ../../fs.pm_.c:562
-#: ../../fs.pm_.c:566 ../../fs.pm_.c:570
+#: ../../fs.pm_.c:545 ../../fs.pm_.c:555 ../../fs.pm_.c:559 ../../fs.pm_.c:563
+#: ../../fs.pm_.c:567 ../../fs.pm_.c:571
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formátovanie %s zlyhalo"
-#: ../../fs.pm_.c:607
+#: ../../fs.pm_.c:608
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Nedokážem formátovať %s na typ %s"
-#: ../../fs.pm_.c:681 ../../fs.pm_.c:724
+#: ../../fs.pm_.c:682 ../../fs.pm_.c:725
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "pripojenie diskovej oblasti %s k adresáru %s zlyhalo"
-#: ../../fs.pm_.c:739 ../../partition_table.pm_.c:598
+#: ../../fs.pm_.c:740 ../../partition_table.pm_.c:598
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojenia %s: %s"
@@ -2432,46 +2444,133 @@ msgstr "Nerobiť nič"
msgid "Error opening %s for writing: %s"
msgstr "Chyba otvárania %s pre zápis: %s"
-#: ../../harddrake/sound.pm_.c:155
+#: ../../harddrake/sound.pm_.c:168
msgid "No alternative driver"
msgstr "Žiaden alternatívny ovládač"
-#: ../../harddrake/sound.pm_.c:156
+#: ../../harddrake/sound.pm_.c:169
#, c-format
-msgid "There's no known OSS/ALSA alternative driver for your sound card (%s)"
-msgstr "Nie je žiaden známy OSS/ALSA ovládač pre Vašu zvukovú kartu (%s)"
+msgid ""
+"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
+"currently uses \"%s\""
+msgstr ""
+"Nie je žiaden známy OSS/ALSA alternatívny ovládač pre Vašu zvukovú kartu (%"
+"s), ktorá v súčastnosti používa \"%s\""
-#: ../../harddrake/sound.pm_.c:158
+#: ../../harddrake/sound.pm_.c:171
msgid "Sound configuration"
msgstr "Konfigurácia zvuku"
-#: ../../harddrake/sound.pm_.c:159
+#: ../../harddrake/sound.pm_.c:172
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
-"sound card (%s)"
+"sound card (%s)."
msgstr ""
"Môžete si vybrať z alternatívnych ovládačov (OSS, alebo ALSA) pre Vašu "
"zvukovú kartu (%s)"
-#: ../../harddrake/sound.pm_.c:162
+#: ../../harddrake/sound.pm_.c:174
+#, c-format
+msgid ""
+"\n"
+"\n"
+"Your card currently use the %s\"%s\" driver (default driver for your card is "
+"\"%s\")"
+msgstr ""
+"\n"
+"\n"
+"Vaša karta momentálne používa %s\"%s\" ovládač (štandardný ovládač pre Vašu "
+"kartu je \"%s\")"
+
+#: ../../harddrake/sound.pm_.c:176
msgid "Driver:"
msgstr "Ovládač:"
-#: ../../harddrake/sound.pm_.c:173
+#: ../../harddrake/sound.pm_.c:181 ../../standalone/drakTermServ_.c:246
+#: ../../standalone/drakbackup_.c:3932 ../../standalone/drakbackup_.c:3965
+#: ../../standalone/drakbackup_.c:3991 ../../standalone/drakbackup_.c:4018
+#: ../../standalone/drakbackup_.c:4045 ../../standalone/drakbackup_.c:4084
+#: ../../standalone/drakbackup_.c:4105 ../../standalone/drakbackup_.c:4132
+#: ../../standalone/drakbackup_.c:4162 ../../standalone/drakbackup_.c:4188
+#: ../../standalone/drakbackup_.c:4213 ../../standalone/drakfont_.c:700
+msgid "Help"
+msgstr "Pomoc"
+
+#: ../../harddrake/sound.pm_.c:183
+msgid "Switching between ALSA and OSS help"
+msgstr "Pomoc pri zmenách medzi ALSA a OSS"
+
+#: ../../harddrake/sound.pm_.c:184
+msgid ""
+"OSS (Open Sound System) was the first sound API. It's an OS independant "
+"sound API (it's available on most unices systems) but it's a very basic and "
+"limited API.\n"
+"What's more, OSS drivers all reinvent the wheel.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
+"which\n"
+"supports quite a large range of ISA, USB and PCI cards.\n"
+"\n"
+"It also provides a much higher API than OSS.\n"
+"\n"
+"To use alsa, one can either use:\n"
+"- the old compatibility OSS api\n"
+"- the new ALSA api that provides many enhanced features but requires using "
+"the ALSA library.\n"
+msgstr ""
+"OSS (Open Source Sound) bolo prvé zvukové API. Je to na systéme nezávislé "
+"API (dostupné na mnohých unixových systémoch), ale je to veľmi jednoduché a "
+"obmedzené API.\n"
+"Navyše, všetky OSS ovládače ešte raz vynachádzajú koleso.\n"
+"\n"
+"ALSA (Advanced Linux Sound Architecture) je modularizovaná architektúra\n"
+"podporujúca veľkú väčšinu ISA, USB a PCI kariet.\n"
+"\n"
+"Poskytuje tiež oveľa širšie API ako OSS.\n"
+"\n"
+"Alsa je možné použiť nasledovne:- staré kompatibilné OSS api\n"
+"- nové ALSA api, ktoré poskytuje mohé rozšírené možnosti, ale je vyžadované "
+"použitie ALSA knižníc.\n"
+
+#: ../../harddrake/sound.pm_.c:200
+#, c-format
+msgid ""
+"The old \"%s\" driver is blacklisted.\n"
+"\n"
+"It has been reported to oopses the kernel on unloading.\n"
+"\n"
+"The new \"%s\" driver'll only be used on next bootstrap."
+msgstr ""
+"Starý ovládač \"%s\" nie je odporúčaný.\n"
+"\n"
+"Boli oznámené havárie jadra pri jeho odstraňovaní.\n"
+"\n"
+"Nový ovládač \"%s\" bude použitý iba po nasledovnom štarte systému."
+
+#: ../../harddrake/sound.pm_.c:203 ../../standalone/drakconnect_.c:301
+msgid "Please Wait... Applying the configuration"
+msgstr "Prosím čakajte... Aplikujem konfiguráciu"
+
+#: ../../harddrake/sound.pm_.c:203 ../../harddrake/ui.pm_.c:111
+#: ../../interactive.pm_.c:391
+msgid "Please wait"
+msgstr "Prosím čakajte"
+
+#: ../../harddrake/sound.pm_.c:208
msgid "No known driver"
msgstr "Žiaden známy ovládač"
-#: ../../harddrake/sound.pm_.c:174
+#: ../../harddrake/sound.pm_.c:209
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nie je žiaden známy ovládač pre Vašu zvukovú kartu (%s)"
-#: ../../harddrake/sound.pm_.c:177
+#: ../../harddrake/sound.pm_.c:212
msgid "Unkown driver"
msgstr "Neznámy ovládač"
-#: ../../harddrake/sound.pm_.c:178
+#: ../../harddrake/sound.pm_.c:213
#, c-format
msgid ""
"The \"%s\" driver for your sound card is unlisted\n"
@@ -2599,7 +2698,8 @@ msgid "/_Quit"
msgstr "/_Koniec"
#: ../../harddrake/ui.pm_.c:64 ../../harddrake/ui.pm_.c:65
-#: ../../harddrake/ui.pm_.c:71 ../../standalone/logdrake_.c:110
+#: ../../harddrake/ui.pm_.c:71 ../../harddrake/ui.pm_.c:73
+#: ../../standalone/logdrake_.c:110
msgid "/_Help"
msgstr "/_Pomoc"
@@ -2620,14 +2720,18 @@ msgstr ""
"\n"
#: ../../harddrake/ui.pm_.c:71
+msgid "/_Report Bug"
+msgstr "/_Ohlásiť chybu"
+
+#: ../../harddrake/ui.pm_.c:73
msgid "/_About..."
msgstr "/_O aplikácii..."
-#: ../../harddrake/ui.pm_.c:72
+#: ../../harddrake/ui.pm_.c:74
msgid "About Harddrake"
msgstr "O Harddrake"
-#: ../../harddrake/ui.pm_.c:73
+#: ../../harddrake/ui.pm_.c:75
msgid ""
"This is HardDrake, a Mandrake hardware configuration tool.\n"
"Version:"
@@ -2635,56 +2739,53 @@ msgstr ""
"Toto je HardDrake, konfiguračný nástroj pre hardvér od Mandrake.\n"
"Verzia:"
-#: ../../harddrake/ui.pm_.c:74
+#: ../../harddrake/ui.pm_.c:76
msgid "Author:"
msgstr "Autor:"
-#: ../../harddrake/ui.pm_.c:84
+#: ../../harddrake/ui.pm_.c:86
msgid "Harddrake2 version "
msgstr "Harddrake2 verzia"
-#: ../../harddrake/ui.pm_.c:99
+#: ../../harddrake/ui.pm_.c:101
msgid "Detected hardware"
msgstr "Nájdený hardvér"
-#: ../../harddrake/ui.pm_.c:101
+#: ../../harddrake/ui.pm_.c:103
msgid "Information"
msgstr "Informácie"
-#: ../../harddrake/ui.pm_.c:104
+#: ../../harddrake/ui.pm_.c:106
msgid "Configure module"
msgstr "Konfigurácia modulu"
-#: ../../harddrake/ui.pm_.c:105
+#: ../../harddrake/ui.pm_.c:107
msgid "Run config tool"
msgstr "Spustiť konfiguráciu"
-#: ../../harddrake/ui.pm_.c:109
+#: ../../harddrake/ui.pm_.c:111
msgid "Detection in progress"
msgstr "Prebieha detekcia"
-#: ../../harddrake/ui.pm_.c:109 ../../interactive.pm_.c:391
-msgid "Please wait"
-msgstr "Prosím čakajte"
-
-#: ../../harddrake/ui.pm_.c:143
+#: ../../harddrake/ui.pm_.c:148
msgid "You can configure each parameter of the module here."
msgstr "Tu môžete nakonfigurovať každý parameter modulu."
-#: ../../harddrake/ui.pm_.c:161
+#: ../../harddrake/ui.pm_.c:166
#, c-format
msgid "Running \"%s\" ..."
msgstr "Spúšťam \"%s\" ..."
-#: ../../harddrake/ui.pm_.c:176
-msgid "Probing $Ident class\n"
-msgstr "Skúšam $Ident triedu\n"
+#: ../../harddrake/ui.pm_.c:180
+#, c-format
+msgid "Probing %s class\n"
+msgstr "Skúšam %s triedu\n"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "primary"
msgstr "primárne"
-#: ../../harddrake/ui.pm_.c:198
+#: ../../harddrake/ui.pm_.c:201
msgid "secondary"
msgstr "sekundárny"
@@ -3132,7 +3233,7 @@ msgid ""
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
-"Teraz by ste mali zvoliť služby, ktoré chcete spúšťať pri štarte.\n"
+"Teraz by ste si mali zvoliť služby, ktoré chcete spúšťať pri štarte.\n"
"\n"
"Sú tu zobrazené všetky služby dostupné pre aktuálnu inštaláciu.\n"
"Pozorne si ich prezrite a zrušte tie, ktoré nikdy nebudete potrebovať\n"
@@ -3146,7 +3247,8 @@ msgstr ""
"server:\n"
"zrejme nebudete chcieť štartovať všetky služby, napríklad tie, ktoré nebude\n"
"Váš systém poskytovať. Nezabudnite, že mnohé služby môžu byť\n"
-" nebezpečné na servery. Zvoľte naozaj iba služby, ktoré naozaj potrebujete.\n"
+" nebezpečné na servery. Zvoľte si skutočne iba služby, ktoré naozaj "
+"potrebujete.\n"
"!!"
#: ../../help.pm_.c:203
@@ -3560,8 +3662,8 @@ msgstr ""
"\n"
"Teraz si môžete zvoliť, či si želáte formátovať existujúce oddiely aby ste "
"odstránili\n"
-"údaje, ktoré sa na nich nachádzajú. Ak si to želáte, zvoľte prosím oddiely, "
-"ktoré\n"
+"údaje, ktoré sa na nich nachádzajú. Ak si to želáte, zvoľte si prosím "
+"oddiely, ktoré\n"
"si želáte formátovať.\n"
"\n"
"Uvedomte si, že nie je nutné opätovne formátovať všetky existujúce oddiely.\n"
@@ -3597,7 +3699,7 @@ msgstr ""
"V závislosti na množstve balíčkov a rýchlosti Vášho počítača\n"
"môže táto operácia trvať od niekoľkých minút až po rádovo hodiny.\n"
"\n"
-"Prosím buďte trpezlivý."
+"Prosím, buďte trpezliví..."
#: ../../help.pm_.c:406
msgid ""
@@ -3924,7 +4026,7 @@ msgid ""
msgstr ""
"DrakX teraz potrebuje vedieť či chcete uskutočniť predvolenú (\"Odporúčaná"
"\")\n"
-"inštaláciu, ale chcete mať väčšiu kontrolu (\"Expertná\"). Môžete si tiež "
+"inštaláciu, alebo chcete mať väčšiu kontrolu (\"Expertná\"). Môžete si tiež "
"vybrať\n"
"medzi novou inštaláciou, aktualizáciou už nainštalovaného Mandrake Linux\n"
"systému, alebo iba aktualizáciou balíčkov:\n"
@@ -3948,7 +4050,7 @@ msgstr ""
"existujúci Mandrake Linux systém tak, že sa zachovajú všetky nastavenia\n"
"systému. Je taktiež možné pridávanie nových balíkov do systému.\n"
"\n"
-"Upgrade by malo fungovať s Mandrake Linux systémami od verzie\n"
+"Aktualizácia by mala fungovať s Mandrake Linux systémami od verzie\n"
"\"8.1\"\n"
"\n"
"Na základe vašich skúseností s GNU/Linux systémom si vyberte z "
@@ -4065,7 +4167,7 @@ msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
-"Prosím zvoľte správny port. Napríklad COM1 pod MS Windows sa v\n"
+"Prosím zvoľte si správny port. Napríklad COM1 pod MS Windows sa v\n"
"GNU/Linux nazýva ttyS0."
#: ../../help.pm_.c:634
@@ -4119,7 +4221,7 @@ msgstr ""
"operačné\n"
"systémy sú chránené pred omylmi len preto, že máte spustený operačný systém\n"
"GNU/Linux. Pretože na \"root\"-a sa nevzťahujú žiadne obmedzenia a je mu\n"
-"umožnené dokonca vymazať všetky údaje na všetkých dostupných oblastiach\n"
+"umožnené dokonca vymazať všetky údaje na všetkých dostupných oblastiach,\n"
"je veľmi dôležité aby nebolo príliš jednoduché sa stať \"root\"-om.\n"
"\n"
"Toto heslo by malo byť kombináciou alfanumerických znakov a byť aspoň 8\n"
@@ -4199,7 +4301,7 @@ msgstr ""
"čo Vám umožní štartovať GNU/Linux, alebo iný operačný systém,\n"
"namiesto pôvodného zavádzača.;\n"
"\n"
-" * ak bude nájdený Grub, alebo LILO v zavádzacom sektore, bude nahradený\n"
+" * ak bude nájdený Grub, alebo LILO, v zavádzacom sektore, budú nahradené\n"
"novou verziou.\n"
"\n"
"Ak sa DrakX nevie rozhodnúť, zobrazí dialóg s rôznymi možnosťami.\n"
@@ -4211,7 +4313,7 @@ msgstr ""
" * \"LILO s grafickým menu\": ak preferujete LILO s grafickým\n"
"rozhraním.\n"
"\n"
-" * \"LILO textovým menu\": ak preferujete LILO s textovým\n"
+" * \"LILO s textovým menu\": ak preferujete LILO s textovým\n"
"rozhraním.\n"
"\n"
" * \"Boot zariadenie\": v mnohých prípadoch nepotrebujete meniť "
@@ -4285,7 +4387,7 @@ msgid ""
msgstr ""
"Musíte sa rozhodnúť, kam umiestniť informácie potrebné pre spustenie\n"
"systému.\n"
-"Pokiaľ presne neviete čo robiť zvoľte \"Prvý sektor disku (MBR)\"."
+"Pokiaľ presne neviete čo robiť zvoľte si \"Prvý sektor disku (MBR)\"."
#: ../../help.pm_.c:731
msgid ""
@@ -4699,7 +4801,7 @@ msgstr ""
msgid "You must also format %s"
msgstr "Taktiež musíte naformátovať %s"
-#: ../../install_any.pm_.c:423
+#: ../../install_any.pm_.c:424
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
@@ -4725,7 +4827,7 @@ msgstr ""
"\n"
"Naozaj si želáte inštalovať tieto služby?\n"
-#: ../../install_any.pm_.c:441
+#: ../../install_any.pm_.c:442
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
@@ -4739,20 +4841,20 @@ msgstr ""
"\n"
"Chcete naozaj tieto balíky odinštalovať?\n"
-#: ../../install_any.pm_.c:471
+#: ../../install_any.pm_.c:472
msgid "Can't use broadcast with no NIS domain"
msgstr "Nemôžem použiť broadcast bez NIS domény"
-#: ../../install_any.pm_.c:862
+#: ../../install_any.pm_.c:869
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Vložte disketu s FAT formátom do mechaniky %s"
-#: ../../install_any.pm_.c:866
+#: ../../install_any.pm_.c:873
msgid "This floppy is not FAT formatted"
msgstr "Táto disketa nemá FAT formát"
-#: ../../install_any.pm_.c:878
+#: ../../install_any.pm_.c:885
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
@@ -4760,12 +4862,12 @@ msgstr ""
"Pre použitie tohto uloženého výberu balíčkov, naštartujte inštaláciu s "
"``linux defcfg=floppy''"
-#: ../../install_any.pm_.c:901 ../../partition_table.pm_.c:767
+#: ../../install_any.pm_.c:908 ../../partition_table.pm_.c:767
#, c-format
msgid "Error reading file %s"
msgstr "chyba pri čítaní zo súboru %s"
-#: ../../install_any.pm_.c:1023
+#: ../../install_any.pm_.c:1030
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"
@@ -4791,7 +4893,7 @@ msgid ""
msgstr ""
"Musíte mať koreňový oddiel.\n"
"Vytvorte oddiel (alebo kliknite na existujúcu).\n"
-"Potom zvoľte akciu ``Bod pripojenia`` a nastavte na `/'"
+"Potom si zvoľte akciu ``Bod pripojenia`` a nastavte na `/'"
#: ../../install_interactive.pm_.c:63
msgid "You must have a swap partition"
@@ -5006,7 +5108,7 @@ msgstr ""
msgid "Welcome to %s"
msgstr "Vitajte v %s"
-#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:772
+#: ../../install_steps.pm_.c:531 ../../install_steps.pm_.c:770
msgid "No floppy drive available"
msgstr "Nie je dostupná žiadna disketová mechanika"
@@ -5036,11 +5138,11 @@ msgstr "Trieda inštalácie"
msgid "Please choose one of the following classes of installation:"
msgstr "Prosím, zvoľte si jednu z nasledujúcich tried inštalácie: "
-#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:675
+#: ../../install_steps_gtk.pm_.c:237 ../../install_steps_interactive.pm_.c:676
msgid "Package Group Selection"
msgstr "Výber skupín balíkov"
-#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:690
+#: ../../install_steps_gtk.pm_.c:270 ../../install_steps_interactive.pm_.c:691
msgid "Individual package selection"
msgstr "Osobitná voľba balíkov"
@@ -5117,7 +5219,7 @@ msgstr "Zobraz automaticky zvolené balíčky"
#: ../../install_steps_gtk.pm_.c:405 ../../install_steps_interactive.pm_.c:255
#: ../../install_steps_interactive.pm_.c:259
-#: ../../standalone/drakbackup_.c:4255
+#: ../../standalone/drakbackup_.c:4259
msgid "Install"
msgstr "Inštalácia"
@@ -5137,7 +5239,7 @@ msgstr "Minimálna inštalácia"
msgid "Choose the packages you want to install"
msgstr "Zvoľte balíky, ktoré chcete nainštalovať"
-#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_gtk.pm_.c:445 ../../install_steps_interactive.pm_.c:760
msgid "Installing"
msgstr "Inštalujem"
@@ -5164,17 +5266,17 @@ msgid "Installing package %s"
msgstr "Inštalujem balík %s"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
#: ../../standalone/drakautoinst_.c:202
msgid "Accept"
msgstr "Akceptuj"
#: ../../install_steps_gtk.pm_.c:596 ../../install_steps_interactive.pm_.c:189
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:784
msgid "Refuse"
msgstr "Odmietam"
-#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_gtk.pm_.c:597 ../../install_steps_interactive.pm_.c:785
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -5190,16 +5292,16 @@ msgstr ""
"ROM disku."
#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_gtk.pm_.c:615
-#: ../../install_steps_interactive.pm_.c:796
-#: ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_interactive.pm_.c:797
+#: ../../install_steps_interactive.pm_.c:801
msgid "Go on anyway?"
msgstr "Napriek tomu pokračovať?"
-#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:796
+#: ../../install_steps_gtk.pm_.c:611 ../../install_steps_interactive.pm_.c:797
msgid "There was an error ordering packages:"
msgstr "Chyba pri zoraďovaní zoznamu balíkov:"
-#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:800
+#: ../../install_steps_gtk.pm_.c:615 ../../install_steps_interactive.pm_.c:801
msgid "There was an error installing packages:"
msgstr "Počas inštalácie balíkov sa vyskytla chyba:"
@@ -5325,7 +5427,7 @@ msgid ""
"judgment, or any other consequential loss) arising out of the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
-"occurance of such \n"
+"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
@@ -5519,7 +5621,7 @@ msgid "Are you sure you refuse the licence?"
msgstr "Ste si istý že nesúhlasíte s licenciou?"
#: ../../install_steps_interactive.pm_.c:211
-#: ../../install_steps_interactive.pm_.c:1020
+#: ../../install_steps_interactive.pm_.c:1021
#: ../../standalone/keyboarddrake_.c:31
msgid "Keyboard"
msgstr "Klávesnica"
@@ -5565,7 +5667,7 @@ msgstr "Iba aktualizácia balíčkov"
#: ../../install_steps_interactive.pm_.c:275
msgid "Please choose the type of your mouse."
-msgstr "Prosím, zvoľte typ vašej myši."
+msgstr "Prosím, zvoľte si typ vašej myši."
#: ../../install_steps_interactive.pm_.c:281 ../../standalone/mousedrake_.c:60
msgid "Mouse Port"
@@ -5573,7 +5675,7 @@ msgstr "Port myši"
#: ../../install_steps_interactive.pm_.c:282 ../../standalone/mousedrake_.c:61
msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Prosím zvoľte, ktorému sériovému portu je vaša myš pripojená."
+msgstr "Prosím vyberte si, ku ktorému sériovému portu je vaša myš pripojená."
#: ../../install_steps_interactive.pm_.c:290
msgid "Buttons emulation"
@@ -5727,11 +5829,11 @@ msgstr "Vložte do mechaniky disketu s zoznamom balíčkov"
msgid "Selected size is larger than available space"
msgstr "Zvolená veľkosť je väčšia ako dostupné miesto"
-#: ../../install_steps_interactive.pm_.c:641
+#: ../../install_steps_interactive.pm_.c:642
msgid "Type of install"
msgstr "Typ inštalácie"
-#: ../../install_steps_interactive.pm_.c:642
+#: ../../install_steps_interactive.pm_.c:643
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
@@ -5739,19 +5841,19 @@ msgstr ""
"Nebola vybraná žiadna skupina balíčkov\n"
"Prosím, zvoľte minimálnu inštaláciu, ktorú si želáte:"
-#: ../../install_steps_interactive.pm_.c:645
+#: ../../install_steps_interactive.pm_.c:646
msgid "With X"
msgstr "S X-window"
-#: ../../install_steps_interactive.pm_.c:647
+#: ../../install_steps_interactive.pm_.c:648
msgid "With basic documentation (recommended!)"
msgstr "So základnou dokumentáciou (doporučené!)"
-#: ../../install_steps_interactive.pm_.c:648
+#: ../../install_steps_interactive.pm_.c:649
msgid "Truly minimal install (especially no urpmi)"
msgstr "Naozaj minimálna inštalácia (bez urpmi)"
-#: ../../install_steps_interactive.pm_.c:733
+#: ../../install_steps_interactive.pm_.c:734
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -5761,16 +5863,16 @@ msgstr ""
"Ak nemáte žiadne, stlačte Zruš.\n"
"Ak vám chýbajú iba niektoré, odznačte ich a potom stlačte OK."
-#: ../../install_steps_interactive.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:739
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom označené \"%s\""
-#: ../../install_steps_interactive.pm_.c:759
+#: ../../install_steps_interactive.pm_.c:760
msgid "Preparing installation"
msgstr "Pripravujem inštaláciu"
-#: ../../install_steps_interactive.pm_.c:768
+#: ../../install_steps_interactive.pm_.c:769
#, c-format
msgid ""
"Installing package %s\n"
@@ -5779,21 +5881,21 @@ msgstr ""
"Inštalujem balík %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:814
+#: ../../install_steps_interactive.pm_.c:815
msgid "Post-install configuration"
msgstr "Poinštalačná konfigurácia"
-#: ../../install_steps_interactive.pm_.c:820
+#: ../../install_steps_interactive.pm_.c:821
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr "Vložte štartovaciu disketu do mechaniky %s"
-#: ../../install_steps_interactive.pm_.c:826
+#: ../../install_steps_interactive.pm_.c:827
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Vložte do mechaniky %s disketu \"Update Modules\""
-#: ../../install_steps_interactive.pm_.c:846
+#: ../../install_steps_interactive.pm_.c:847
msgid ""
"You now have the opportunity to download encryption software.\n"
"\n"
@@ -5852,7 +5954,7 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:885
+#: ../../install_steps_interactive.pm_.c:886
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been released after the distribution was released. They may\n"
@@ -5871,155 +5973,155 @@ msgstr ""
"pripojenie.\n"
"Želáte si nainštalovať aktualizácie balíčkov ?"
-#: ../../install_steps_interactive.pm_.c:900
+#: ../../install_steps_interactive.pm_.c:901
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Pripájam sa k web sajtu Mandrake Linux pre stiahnutie zoznamu zrkadiel..."
-#: ../../install_steps_interactive.pm_.c:905
+#: ../../install_steps_interactive.pm_.c:906
msgid "Choose a mirror from which to get the packages"
msgstr "Vyberte miror, z ktorého si chcete stiahnuť balíky"
-#: ../../install_steps_interactive.pm_.c:914
+#: ../../install_steps_interactive.pm_.c:915
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Pripájam sa k miroru a sťahujem zoznam možných balíkov..."
-#: ../../install_steps_interactive.pm_.c:942
+#: ../../install_steps_interactive.pm_.c:943
msgid "Which is your timezone?"
msgstr "Ktoré je vaše časové pásmo?"
-#: ../../install_steps_interactive.pm_.c:947
+#: ../../install_steps_interactive.pm_.c:948
msgid "Hardware clock set to GMT"
msgstr "Hardvérové hodiny nastavené na GMT"
-#: ../../install_steps_interactive.pm_.c:948
+#: ../../install_steps_interactive.pm_.c:949
msgid "Automatic time synchronization (using NTP)"
msgstr "Automatická synchronizácia času (pomocou NTP)"
-#: ../../install_steps_interactive.pm_.c:955
+#: ../../install_steps_interactive.pm_.c:956
msgid "NTP Server"
msgstr "NTP server"
-#: ../../install_steps_interactive.pm_.c:989
-#: ../../install_steps_interactive.pm_.c:997
+#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:998
msgid "Remote CUPS server"
msgstr "Vzdialený CUPS server"
-#: ../../install_steps_interactive.pm_.c:990
+#: ../../install_steps_interactive.pm_.c:991
msgid "No printer"
msgstr "Bez tlačiarne"
-#: ../../install_steps_interactive.pm_.c:1007
+#: ../../install_steps_interactive.pm_.c:1008
msgid "Do you have an ISA sound card?"
msgstr "Máte nejakú ISA zvukovú kartu?"
-#: ../../install_steps_interactive.pm_.c:1009
+#: ../../install_steps_interactive.pm_.c:1010
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Po inštalácii spustite \"sndconfig\" ak chcete nastaviť zvukovú kartu"
-#: ../../install_steps_interactive.pm_.c:1011
+#: ../../install_steps_interactive.pm_.c:1012
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Zvuková karta nebola nájdená. Skúste \"harddrake\" po inštalácii"
-#: ../../install_steps_interactive.pm_.c:1016 ../../steps.pm_.c:27
+#: ../../install_steps_interactive.pm_.c:1017 ../../steps.pm_.c:27
msgid "Summary"
msgstr "Zhrnutie"
-#: ../../install_steps_interactive.pm_.c:1019
+#: ../../install_steps_interactive.pm_.c:1020
msgid "Mouse"
msgstr "Myš"
-#: ../../install_steps_interactive.pm_.c:1021
+#: ../../install_steps_interactive.pm_.c:1022
msgid "Timezone"
msgstr "Časová zóna"
-#: ../../install_steps_interactive.pm_.c:1022 ../../printerdrake.pm_.c:2937
+#: ../../install_steps_interactive.pm_.c:1023 ../../printerdrake.pm_.c:2937
#: ../../printerdrake.pm_.c:3026
msgid "Printer"
-msgstr "Tlačiarne"
+msgstr "Tlačiareň"
-#: ../../install_steps_interactive.pm_.c:1024
+#: ../../install_steps_interactive.pm_.c:1025
msgid "ISDN card"
msgstr "ISDN karta"
-#: ../../install_steps_interactive.pm_.c:1027
-#: ../../install_steps_interactive.pm_.c:1029
+#: ../../install_steps_interactive.pm_.c:1028
+#: ../../install_steps_interactive.pm_.c:1030
msgid "Sound card"
msgstr "Zvuková karta"
-#: ../../install_steps_interactive.pm_.c:1031
+#: ../../install_steps_interactive.pm_.c:1032
msgid "TV card"
msgstr "TV karta"
-#: ../../install_steps_interactive.pm_.c:1071
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1100
+#: ../../install_steps_interactive.pm_.c:1072
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1101
msgid "LDAP"
msgstr "LDAP"
-#: ../../install_steps_interactive.pm_.c:1072
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1109
+#: ../../install_steps_interactive.pm_.c:1073
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1110
msgid "NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:1073
-#: ../../install_steps_interactive.pm_.c:1096
-#: ../../install_steps_interactive.pm_.c:1117
-#: ../../install_steps_interactive.pm_.c:1123
+#: ../../install_steps_interactive.pm_.c:1074
+#: ../../install_steps_interactive.pm_.c:1097
+#: ../../install_steps_interactive.pm_.c:1118
+#: ../../install_steps_interactive.pm_.c:1124
msgid "Windows Domain"
msgstr "Windows doména"
-#: ../../install_steps_interactive.pm_.c:1074
-#: ../../install_steps_interactive.pm_.c:1096
+#: ../../install_steps_interactive.pm_.c:1075
+#: ../../install_steps_interactive.pm_.c:1097
msgid "Local files"
msgstr "Lokálne súbory"
-#: ../../install_steps_interactive.pm_.c:1083
-#: ../../install_steps_interactive.pm_.c:1084 ../../steps.pm_.c:24
+#: ../../install_steps_interactive.pm_.c:1084
+#: ../../install_steps_interactive.pm_.c:1085 ../../steps.pm_.c:24
msgid "Set root password"
msgstr "Nastavenie root hesla"
-#: ../../install_steps_interactive.pm_.c:1085
+#: ../../install_steps_interactive.pm_.c:1086
msgid "No password"
msgstr "Bez hesla"
-#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1091
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "Toto heslo je príliš jednoduché(musí byť minimálne %d znakov dlhé)"
-#: ../../install_steps_interactive.pm_.c:1096 ../../network/modem.pm_.c:49
+#: ../../install_steps_interactive.pm_.c:1097 ../../network/modem.pm_.c:49
#: ../../standalone/drakconnect_.c:625 ../../standalone/logdrake_.c:172
msgid "Authentication"
msgstr "Autentifikácia"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1105
msgid "Authentication LDAP"
msgstr "Autentifikácia LDAP"
-#: ../../install_steps_interactive.pm_.c:1105
+#: ../../install_steps_interactive.pm_.c:1106
msgid "LDAP Base dn"
msgstr "LDAP Base dn"